diff --git a/generator.js b/generator.js index 24de114ab..e1547f27e 100644 --- a/generator.js +++ b/generator.js @@ -54,15 +54,18 @@ async function generateComponentsForAllFamilies(icon) { const families = getIncludedFamilies(icon.unsupported_families) for (let i = 0; i < families.length; i++) { - await generateComponent(icon, families[i]) + await Promise.all([ + generateComponent(icon, families[i]), + generateComponent(icon, families[i], true), + ]) } } -async function generateComponent(icon, family) { +async function generateComponent(icon, family, filled = false) { try { - const name = formatName(icon.name, family.postfix) + const name = formatName(icon.name, family.postfix, filled) - const svg = await downloadSVG(icon.name, family.id) + const svg = await downloadSVG(icon.name, family.id, filled) console.log(`Downloading ${name}`) @@ -76,7 +79,7 @@ async function generateComponent(icon, family) { } } -function formatName(string, familyPostfix) { +function formatName(string, familyPostfix, filled) { const formattedString = string .replace(/_/g, ' ') .replace(/\w\S*/g, (txt) => { @@ -84,13 +87,14 @@ function formatName(string, familyPostfix) { }) .replace(/ /g, '') - return 'Icon' + formattedString + familyPostfix + return 'Icon' + formattedString + familyPostfix + (filled ? 'Filled' : '') } -async function downloadSVG(icon, familyId) { +async function downloadSVG(icon, familyId, filled) { + const filledConfig = filled ? 'fill1' : 'default' const svg = await axios .get( - `https://fonts.gstatic.com/s/i/short-term/release/${familyId}/${icon}/default/24px.svg`, + `https://fonts.gstatic.com/s/i/short-term/release/${familyId}/${icon}/${filledConfig}/24px.svg`, ) .catch((err) => console.log(err)) diff --git a/src/Icon10kOutlinedFilled.tsx b/src/Icon10kOutlinedFilled.tsx new file mode 100644 index 000000000..3611eda1c --- /dev/null +++ b/src/Icon10kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon10kOutlinedFilled as default } diff --git a/src/Icon10kRoundedFilled.tsx b/src/Icon10kRoundedFilled.tsx new file mode 100644 index 000000000..8598dd348 --- /dev/null +++ b/src/Icon10kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon10kRoundedFilled as default } diff --git a/src/Icon10kSharpFilled.tsx b/src/Icon10kSharpFilled.tsx new file mode 100644 index 000000000..829f28c53 --- /dev/null +++ b/src/Icon10kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon10kSharpFilled as default } diff --git a/src/Icon10mpOutlinedFilled.tsx b/src/Icon10mpOutlinedFilled.tsx new file mode 100644 index 000000000..e79ed9ca0 --- /dev/null +++ b/src/Icon10mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon10mpOutlinedFilled as default } diff --git a/src/Icon10mpRoundedFilled.tsx b/src/Icon10mpRoundedFilled.tsx new file mode 100644 index 000000000..c878aa0a2 --- /dev/null +++ b/src/Icon10mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon10mpRoundedFilled as default } diff --git a/src/Icon10mpSharpFilled.tsx b/src/Icon10mpSharpFilled.tsx new file mode 100644 index 000000000..1f4f09d78 --- /dev/null +++ b/src/Icon10mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon10mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon10mpSharpFilled as default } diff --git a/src/Icon11mpOutlinedFilled.tsx b/src/Icon11mpOutlinedFilled.tsx new file mode 100644 index 000000000..79dbd7a18 --- /dev/null +++ b/src/Icon11mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon11mpOutlinedFilled as default } diff --git a/src/Icon11mpRoundedFilled.tsx b/src/Icon11mpRoundedFilled.tsx new file mode 100644 index 000000000..c79dd4206 --- /dev/null +++ b/src/Icon11mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon11mpRoundedFilled as default } diff --git a/src/Icon11mpSharpFilled.tsx b/src/Icon11mpSharpFilled.tsx new file mode 100644 index 000000000..be7bd1f0c --- /dev/null +++ b/src/Icon11mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon11mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon11mpSharpFilled as default } diff --git a/src/Icon123OutlinedFilled.tsx b/src/Icon123OutlinedFilled.tsx new file mode 100644 index 000000000..989347c8d --- /dev/null +++ b/src/Icon123OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon123OutlinedFilled as default } diff --git a/src/Icon123RoundedFilled.tsx b/src/Icon123RoundedFilled.tsx new file mode 100644 index 000000000..855c48ded --- /dev/null +++ b/src/Icon123RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon123RoundedFilled as default } diff --git a/src/Icon123SharpFilled.tsx b/src/Icon123SharpFilled.tsx new file mode 100644 index 000000000..61091aec0 --- /dev/null +++ b/src/Icon123SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon123SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon123SharpFilled as default } diff --git a/src/Icon12mpOutlinedFilled.tsx b/src/Icon12mpOutlinedFilled.tsx new file mode 100644 index 000000000..667e8b93f --- /dev/null +++ b/src/Icon12mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon12mpOutlinedFilled as default } diff --git a/src/Icon12mpRoundedFilled.tsx b/src/Icon12mpRoundedFilled.tsx new file mode 100644 index 000000000..4770b4731 --- /dev/null +++ b/src/Icon12mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon12mpRoundedFilled as default } diff --git a/src/Icon12mpSharpFilled.tsx b/src/Icon12mpSharpFilled.tsx new file mode 100644 index 000000000..72e32267a --- /dev/null +++ b/src/Icon12mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon12mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon12mpSharpFilled as default } diff --git a/src/Icon13mpOutlinedFilled.tsx b/src/Icon13mpOutlinedFilled.tsx new file mode 100644 index 000000000..b2bcbc24f --- /dev/null +++ b/src/Icon13mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon13mpOutlinedFilled as default } diff --git a/src/Icon13mpRoundedFilled.tsx b/src/Icon13mpRoundedFilled.tsx new file mode 100644 index 000000000..b160b9b38 --- /dev/null +++ b/src/Icon13mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon13mpRoundedFilled as default } diff --git a/src/Icon13mpSharpFilled.tsx b/src/Icon13mpSharpFilled.tsx new file mode 100644 index 000000000..c9024d16b --- /dev/null +++ b/src/Icon13mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon13mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon13mpSharpFilled as default } diff --git a/src/Icon14mpOutlinedFilled.tsx b/src/Icon14mpOutlinedFilled.tsx new file mode 100644 index 000000000..8f037f831 --- /dev/null +++ b/src/Icon14mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon14mpOutlinedFilled as default } diff --git a/src/Icon14mpRoundedFilled.tsx b/src/Icon14mpRoundedFilled.tsx new file mode 100644 index 000000000..61c167f0c --- /dev/null +++ b/src/Icon14mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon14mpRoundedFilled as default } diff --git a/src/Icon14mpSharpFilled.tsx b/src/Icon14mpSharpFilled.tsx new file mode 100644 index 000000000..72b9c2030 --- /dev/null +++ b/src/Icon14mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon14mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon14mpSharpFilled as default } diff --git a/src/Icon15mpOutlinedFilled.tsx b/src/Icon15mpOutlinedFilled.tsx new file mode 100644 index 000000000..ef83fc56c --- /dev/null +++ b/src/Icon15mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon15mpOutlinedFilled as default } diff --git a/src/Icon15mpRoundedFilled.tsx b/src/Icon15mpRoundedFilled.tsx new file mode 100644 index 000000000..fd89a85c0 --- /dev/null +++ b/src/Icon15mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon15mpRoundedFilled as default } diff --git a/src/Icon15mpSharpFilled.tsx b/src/Icon15mpSharpFilled.tsx new file mode 100644 index 000000000..4e9686a4d --- /dev/null +++ b/src/Icon15mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon15mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon15mpSharpFilled as default } diff --git a/src/Icon16mpOutlinedFilled.tsx b/src/Icon16mpOutlinedFilled.tsx new file mode 100644 index 000000000..d7e6abbdc --- /dev/null +++ b/src/Icon16mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon16mpOutlinedFilled as default } diff --git a/src/Icon16mpRoundedFilled.tsx b/src/Icon16mpRoundedFilled.tsx new file mode 100644 index 000000000..7dcaaa505 --- /dev/null +++ b/src/Icon16mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon16mpRoundedFilled as default } diff --git a/src/Icon16mpSharpFilled.tsx b/src/Icon16mpSharpFilled.tsx new file mode 100644 index 000000000..8696ae88b --- /dev/null +++ b/src/Icon16mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon16mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon16mpSharpFilled as default } diff --git a/src/Icon17mpOutlinedFilled.tsx b/src/Icon17mpOutlinedFilled.tsx new file mode 100644 index 000000000..79f47698c --- /dev/null +++ b/src/Icon17mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon17mpOutlinedFilled as default } diff --git a/src/Icon17mpRoundedFilled.tsx b/src/Icon17mpRoundedFilled.tsx new file mode 100644 index 000000000..ad2672a68 --- /dev/null +++ b/src/Icon17mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon17mpRoundedFilled as default } diff --git a/src/Icon17mpSharpFilled.tsx b/src/Icon17mpSharpFilled.tsx new file mode 100644 index 000000000..73351b30f --- /dev/null +++ b/src/Icon17mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon17mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon17mpSharpFilled as default } diff --git a/src/Icon18UpRatingOutlinedFilled.tsx b/src/Icon18UpRatingOutlinedFilled.tsx new file mode 100644 index 000000000..4bf272481 --- /dev/null +++ b/src/Icon18UpRatingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon18UpRatingOutlinedFilled as default } diff --git a/src/Icon18UpRatingRoundedFilled.tsx b/src/Icon18UpRatingRoundedFilled.tsx new file mode 100644 index 000000000..149479f3b --- /dev/null +++ b/src/Icon18UpRatingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon18UpRatingRoundedFilled as default } diff --git a/src/Icon18UpRatingSharpFilled.tsx b/src/Icon18UpRatingSharpFilled.tsx new file mode 100644 index 000000000..89cffac7a --- /dev/null +++ b/src/Icon18UpRatingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18UpRatingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon18UpRatingSharpFilled as default } diff --git a/src/Icon18mpOutlinedFilled.tsx b/src/Icon18mpOutlinedFilled.tsx new file mode 100644 index 000000000..228d0e9da --- /dev/null +++ b/src/Icon18mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon18mpOutlinedFilled as default } diff --git a/src/Icon18mpRoundedFilled.tsx b/src/Icon18mpRoundedFilled.tsx new file mode 100644 index 000000000..2792db7b8 --- /dev/null +++ b/src/Icon18mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon18mpRoundedFilled as default } diff --git a/src/Icon18mpSharpFilled.tsx b/src/Icon18mpSharpFilled.tsx new file mode 100644 index 000000000..763f6442b --- /dev/null +++ b/src/Icon18mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon18mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon18mpSharpFilled as default } diff --git a/src/Icon19mpOutlinedFilled.tsx b/src/Icon19mpOutlinedFilled.tsx new file mode 100644 index 000000000..2c809c73c --- /dev/null +++ b/src/Icon19mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon19mpOutlinedFilled as default } diff --git a/src/Icon19mpRoundedFilled.tsx b/src/Icon19mpRoundedFilled.tsx new file mode 100644 index 000000000..354b03e01 --- /dev/null +++ b/src/Icon19mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon19mpRoundedFilled as default } diff --git a/src/Icon19mpSharpFilled.tsx b/src/Icon19mpSharpFilled.tsx new file mode 100644 index 000000000..48bd1684a --- /dev/null +++ b/src/Icon19mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon19mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon19mpSharpFilled as default } diff --git a/src/Icon1kOutlinedFilled.tsx b/src/Icon1kOutlinedFilled.tsx new file mode 100644 index 000000000..65a5aa06c --- /dev/null +++ b/src/Icon1kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1kOutlinedFilled as default } diff --git a/src/Icon1kPlusOutlinedFilled.tsx b/src/Icon1kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..5007e4571 --- /dev/null +++ b/src/Icon1kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1kPlusOutlinedFilled as default } diff --git a/src/Icon1kPlusRoundedFilled.tsx b/src/Icon1kPlusRoundedFilled.tsx new file mode 100644 index 000000000..231f5004e --- /dev/null +++ b/src/Icon1kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1kPlusRoundedFilled as default } diff --git a/src/Icon1kPlusSharpFilled.tsx b/src/Icon1kPlusSharpFilled.tsx new file mode 100644 index 000000000..8ed567b0d --- /dev/null +++ b/src/Icon1kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1kPlusSharpFilled as default } diff --git a/src/Icon1kRoundedFilled.tsx b/src/Icon1kRoundedFilled.tsx new file mode 100644 index 000000000..ca427f21f --- /dev/null +++ b/src/Icon1kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1kRoundedFilled as default } diff --git a/src/Icon1kSharpFilled.tsx b/src/Icon1kSharpFilled.tsx new file mode 100644 index 000000000..cce45b9d8 --- /dev/null +++ b/src/Icon1kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1kSharpFilled as default } diff --git a/src/Icon1xMobiledataBadgeOutlinedFilled.tsx b/src/Icon1xMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..66b83177c --- /dev/null +++ b/src/Icon1xMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon1xMobiledataBadgeOutlinedFilled as default } diff --git a/src/Icon1xMobiledataBadgeRoundedFilled.tsx b/src/Icon1xMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..a2fc851cc --- /dev/null +++ b/src/Icon1xMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon1xMobiledataBadgeRoundedFilled as default } diff --git a/src/Icon1xMobiledataBadgeSharpFilled.tsx b/src/Icon1xMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..fa88c6a2b --- /dev/null +++ b/src/Icon1xMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon1xMobiledataBadgeSharpFilled as default } diff --git a/src/Icon1xMobiledataOutlinedFilled.tsx b/src/Icon1xMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..388e311ec --- /dev/null +++ b/src/Icon1xMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1xMobiledataOutlinedFilled as default } diff --git a/src/Icon1xMobiledataRoundedFilled.tsx b/src/Icon1xMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..cb2ed6b97 --- /dev/null +++ b/src/Icon1xMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1xMobiledataRoundedFilled as default } diff --git a/src/Icon1xMobiledataSharpFilled.tsx b/src/Icon1xMobiledataSharpFilled.tsx new file mode 100644 index 000000000..e25861055 --- /dev/null +++ b/src/Icon1xMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon1xMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon1xMobiledataSharpFilled as default } diff --git a/src/Icon20mpOutlinedFilled.tsx b/src/Icon20mpOutlinedFilled.tsx new file mode 100644 index 000000000..bc326e488 --- /dev/null +++ b/src/Icon20mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon20mpOutlinedFilled as default } diff --git a/src/Icon20mpRoundedFilled.tsx b/src/Icon20mpRoundedFilled.tsx new file mode 100644 index 000000000..b79f4d920 --- /dev/null +++ b/src/Icon20mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon20mpRoundedFilled as default } diff --git a/src/Icon20mpSharpFilled.tsx b/src/Icon20mpSharpFilled.tsx new file mode 100644 index 000000000..deb6069eb --- /dev/null +++ b/src/Icon20mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon20mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon20mpSharpFilled as default } diff --git a/src/Icon21mpOutlinedFilled.tsx b/src/Icon21mpOutlinedFilled.tsx new file mode 100644 index 000000000..270dc5bd1 --- /dev/null +++ b/src/Icon21mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon21mpOutlinedFilled as default } diff --git a/src/Icon21mpRoundedFilled.tsx b/src/Icon21mpRoundedFilled.tsx new file mode 100644 index 000000000..9acbd9dfc --- /dev/null +++ b/src/Icon21mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon21mpRoundedFilled as default } diff --git a/src/Icon21mpSharpFilled.tsx b/src/Icon21mpSharpFilled.tsx new file mode 100644 index 000000000..e1362596a --- /dev/null +++ b/src/Icon21mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon21mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon21mpSharpFilled as default } diff --git a/src/Icon22mpOutlinedFilled.tsx b/src/Icon22mpOutlinedFilled.tsx new file mode 100644 index 000000000..2aca1abb5 --- /dev/null +++ b/src/Icon22mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon22mpOutlinedFilled as default } diff --git a/src/Icon22mpRoundedFilled.tsx b/src/Icon22mpRoundedFilled.tsx new file mode 100644 index 000000000..8b750a530 --- /dev/null +++ b/src/Icon22mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon22mpRoundedFilled as default } diff --git a/src/Icon22mpSharpFilled.tsx b/src/Icon22mpSharpFilled.tsx new file mode 100644 index 000000000..5c6285511 --- /dev/null +++ b/src/Icon22mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon22mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon22mpSharpFilled as default } diff --git a/src/Icon23mpOutlinedFilled.tsx b/src/Icon23mpOutlinedFilled.tsx new file mode 100644 index 000000000..693188096 --- /dev/null +++ b/src/Icon23mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon23mpOutlinedFilled as default } diff --git a/src/Icon23mpRoundedFilled.tsx b/src/Icon23mpRoundedFilled.tsx new file mode 100644 index 000000000..b264110cf --- /dev/null +++ b/src/Icon23mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon23mpRoundedFilled as default } diff --git a/src/Icon23mpSharpFilled.tsx b/src/Icon23mpSharpFilled.tsx new file mode 100644 index 000000000..ec0c30543 --- /dev/null +++ b/src/Icon23mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon23mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon23mpSharpFilled as default } diff --git a/src/Icon24fpsSelectOutlinedFilled.tsx b/src/Icon24fpsSelectOutlinedFilled.tsx new file mode 100644 index 000000000..338a50c4b --- /dev/null +++ b/src/Icon24fpsSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24fpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon24fpsSelectOutlinedFilled as default } diff --git a/src/Icon24fpsSelectRoundedFilled.tsx b/src/Icon24fpsSelectRoundedFilled.tsx new file mode 100644 index 000000000..a23a44349 --- /dev/null +++ b/src/Icon24fpsSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24fpsSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon24fpsSelectRoundedFilled as default } diff --git a/src/Icon24fpsSelectSharpFilled.tsx b/src/Icon24fpsSelectSharpFilled.tsx new file mode 100644 index 000000000..2afc8629f --- /dev/null +++ b/src/Icon24fpsSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24fpsSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon24fpsSelectSharpFilled as default } diff --git a/src/Icon24mpOutlinedFilled.tsx b/src/Icon24mpOutlinedFilled.tsx new file mode 100644 index 000000000..f2767ca9a --- /dev/null +++ b/src/Icon24mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon24mpOutlinedFilled as default } diff --git a/src/Icon24mpRoundedFilled.tsx b/src/Icon24mpRoundedFilled.tsx new file mode 100644 index 000000000..8f4ecbdcb --- /dev/null +++ b/src/Icon24mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon24mpRoundedFilled as default } diff --git a/src/Icon24mpSharpFilled.tsx b/src/Icon24mpSharpFilled.tsx new file mode 100644 index 000000000..f0704c8a8 --- /dev/null +++ b/src/Icon24mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon24mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon24mpSharpFilled as default } diff --git a/src/Icon2dOutlinedFilled.tsx b/src/Icon2dOutlinedFilled.tsx new file mode 100644 index 000000000..72eb57faf --- /dev/null +++ b/src/Icon2dOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2dOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2dOutlinedFilled as default } diff --git a/src/Icon2dRoundedFilled.tsx b/src/Icon2dRoundedFilled.tsx new file mode 100644 index 000000000..024c42f3e --- /dev/null +++ b/src/Icon2dRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2dRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2dRoundedFilled as default } diff --git a/src/Icon2dSharpFilled.tsx b/src/Icon2dSharpFilled.tsx new file mode 100644 index 000000000..e0b076d3b --- /dev/null +++ b/src/Icon2dSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2dSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2dSharpFilled as default } diff --git a/src/Icon2kOutlinedFilled.tsx b/src/Icon2kOutlinedFilled.tsx new file mode 100644 index 000000000..6c5503ccb --- /dev/null +++ b/src/Icon2kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2kOutlinedFilled as default } diff --git a/src/Icon2kPlusOutlinedFilled.tsx b/src/Icon2kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..5b04e3fd0 --- /dev/null +++ b/src/Icon2kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2kPlusOutlinedFilled as default } diff --git a/src/Icon2kPlusRoundedFilled.tsx b/src/Icon2kPlusRoundedFilled.tsx new file mode 100644 index 000000000..30b340832 --- /dev/null +++ b/src/Icon2kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2kPlusRoundedFilled as default } diff --git a/src/Icon2kPlusSharpFilled.tsx b/src/Icon2kPlusSharpFilled.tsx new file mode 100644 index 000000000..af8584664 --- /dev/null +++ b/src/Icon2kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2kPlusSharpFilled as default } diff --git a/src/Icon2kRoundedFilled.tsx b/src/Icon2kRoundedFilled.tsx new file mode 100644 index 000000000..246cfe378 --- /dev/null +++ b/src/Icon2kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2kRoundedFilled as default } diff --git a/src/Icon2kSharpFilled.tsx b/src/Icon2kSharpFilled.tsx new file mode 100644 index 000000000..6686962f3 --- /dev/null +++ b/src/Icon2kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2kSharpFilled as default } diff --git a/src/Icon2mpOutlinedFilled.tsx b/src/Icon2mpOutlinedFilled.tsx new file mode 100644 index 000000000..5dac3560f --- /dev/null +++ b/src/Icon2mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2mpOutlinedFilled as default } diff --git a/src/Icon2mpRoundedFilled.tsx b/src/Icon2mpRoundedFilled.tsx new file mode 100644 index 000000000..7a4d547d9 --- /dev/null +++ b/src/Icon2mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2mpRoundedFilled as default } diff --git a/src/Icon2mpSharpFilled.tsx b/src/Icon2mpSharpFilled.tsx new file mode 100644 index 000000000..85fb90c79 --- /dev/null +++ b/src/Icon2mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon2mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon2mpSharpFilled as default } diff --git a/src/Icon30fpsOutlinedFilled.tsx b/src/Icon30fpsOutlinedFilled.tsx new file mode 100644 index 000000000..65cc6439f --- /dev/null +++ b/src/Icon30fpsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon30fpsOutlinedFilled as default } diff --git a/src/Icon30fpsRoundedFilled.tsx b/src/Icon30fpsRoundedFilled.tsx new file mode 100644 index 000000000..961c794bd --- /dev/null +++ b/src/Icon30fpsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon30fpsRoundedFilled as default } diff --git a/src/Icon30fpsSelectOutlinedFilled.tsx b/src/Icon30fpsSelectOutlinedFilled.tsx new file mode 100644 index 000000000..ffae94718 --- /dev/null +++ b/src/Icon30fpsSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon30fpsSelectOutlinedFilled as default } diff --git a/src/Icon30fpsSelectRoundedFilled.tsx b/src/Icon30fpsSelectRoundedFilled.tsx new file mode 100644 index 000000000..198e6a7b3 --- /dev/null +++ b/src/Icon30fpsSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon30fpsSelectRoundedFilled as default } diff --git a/src/Icon30fpsSelectSharpFilled.tsx b/src/Icon30fpsSelectSharpFilled.tsx new file mode 100644 index 000000000..dca70b440 --- /dev/null +++ b/src/Icon30fpsSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon30fpsSelectSharpFilled as default } diff --git a/src/Icon30fpsSharpFilled.tsx b/src/Icon30fpsSharpFilled.tsx new file mode 100644 index 000000000..1bc4387ef --- /dev/null +++ b/src/Icon30fpsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon30fpsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon30fpsSharpFilled as default } diff --git a/src/Icon360OutlinedFilled.tsx b/src/Icon360OutlinedFilled.tsx new file mode 100644 index 000000000..56867f72e --- /dev/null +++ b/src/Icon360OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon360OutlinedFilled as default } diff --git a/src/Icon360RoundedFilled.tsx b/src/Icon360RoundedFilled.tsx new file mode 100644 index 000000000..da213b7bc --- /dev/null +++ b/src/Icon360RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon360RoundedFilled as default } diff --git a/src/Icon360SharpFilled.tsx b/src/Icon360SharpFilled.tsx new file mode 100644 index 000000000..cfa3d93fd --- /dev/null +++ b/src/Icon360SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon360SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon360SharpFilled as default } diff --git a/src/Icon3dRotationOutlinedFilled.tsx b/src/Icon3dRotationOutlinedFilled.tsx new file mode 100644 index 000000000..180274119 --- /dev/null +++ b/src/Icon3dRotationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3dRotationOutlinedFilled as default } diff --git a/src/Icon3dRotationRoundedFilled.tsx b/src/Icon3dRotationRoundedFilled.tsx new file mode 100644 index 000000000..ed9bdb9fe --- /dev/null +++ b/src/Icon3dRotationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3dRotationRoundedFilled as default } diff --git a/src/Icon3dRotationSharpFilled.tsx b/src/Icon3dRotationSharpFilled.tsx new file mode 100644 index 000000000..5fd71397d --- /dev/null +++ b/src/Icon3dRotationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3dRotationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3dRotationSharpFilled as default } diff --git a/src/Icon3gMobiledataBadgeOutlinedFilled.tsx b/src/Icon3gMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..00093d4c4 --- /dev/null +++ b/src/Icon3gMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon3gMobiledataBadgeOutlinedFilled as default } diff --git a/src/Icon3gMobiledataBadgeRoundedFilled.tsx b/src/Icon3gMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..a545a09dd --- /dev/null +++ b/src/Icon3gMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon3gMobiledataBadgeRoundedFilled as default } diff --git a/src/Icon3gMobiledataBadgeSharpFilled.tsx b/src/Icon3gMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..a04cfe078 --- /dev/null +++ b/src/Icon3gMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon3gMobiledataBadgeSharpFilled as default } diff --git a/src/Icon3gMobiledataOutlinedFilled.tsx b/src/Icon3gMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..50041804a --- /dev/null +++ b/src/Icon3gMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3gMobiledataOutlinedFilled as default } diff --git a/src/Icon3gMobiledataRoundedFilled.tsx b/src/Icon3gMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..e2ad3494c --- /dev/null +++ b/src/Icon3gMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3gMobiledataRoundedFilled as default } diff --git a/src/Icon3gMobiledataSharpFilled.tsx b/src/Icon3gMobiledataSharpFilled.tsx new file mode 100644 index 000000000..e1a3fe640 --- /dev/null +++ b/src/Icon3gMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3gMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3gMobiledataSharpFilled as default } diff --git a/src/Icon3kOutlinedFilled.tsx b/src/Icon3kOutlinedFilled.tsx new file mode 100644 index 000000000..e370aeca1 --- /dev/null +++ b/src/Icon3kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3kOutlinedFilled as default } diff --git a/src/Icon3kPlusOutlinedFilled.tsx b/src/Icon3kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..d6f1a9aa1 --- /dev/null +++ b/src/Icon3kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3kPlusOutlinedFilled as default } diff --git a/src/Icon3kPlusRoundedFilled.tsx b/src/Icon3kPlusRoundedFilled.tsx new file mode 100644 index 000000000..e4e1a9b84 --- /dev/null +++ b/src/Icon3kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3kPlusRoundedFilled as default } diff --git a/src/Icon3kPlusSharpFilled.tsx b/src/Icon3kPlusSharpFilled.tsx new file mode 100644 index 000000000..f769d2882 --- /dev/null +++ b/src/Icon3kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3kPlusSharpFilled as default } diff --git a/src/Icon3kRoundedFilled.tsx b/src/Icon3kRoundedFilled.tsx new file mode 100644 index 000000000..c7a7cfd89 --- /dev/null +++ b/src/Icon3kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3kRoundedFilled as default } diff --git a/src/Icon3kSharpFilled.tsx b/src/Icon3kSharpFilled.tsx new file mode 100644 index 000000000..5da544c1c --- /dev/null +++ b/src/Icon3kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3kSharpFilled as default } diff --git a/src/Icon3mpOutlinedFilled.tsx b/src/Icon3mpOutlinedFilled.tsx new file mode 100644 index 000000000..7ecca6afb --- /dev/null +++ b/src/Icon3mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3mpOutlinedFilled as default } diff --git a/src/Icon3mpRoundedFilled.tsx b/src/Icon3mpRoundedFilled.tsx new file mode 100644 index 000000000..8cec4a907 --- /dev/null +++ b/src/Icon3mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3mpRoundedFilled as default } diff --git a/src/Icon3mpSharpFilled.tsx b/src/Icon3mpSharpFilled.tsx new file mode 100644 index 000000000..7d2f72672 --- /dev/null +++ b/src/Icon3mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3mpSharpFilled as default } diff --git a/src/Icon3pOutlinedFilled.tsx b/src/Icon3pOutlinedFilled.tsx new file mode 100644 index 000000000..555d1367d --- /dev/null +++ b/src/Icon3pOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3pOutlinedFilled as default } diff --git a/src/Icon3pRoundedFilled.tsx b/src/Icon3pRoundedFilled.tsx new file mode 100644 index 000000000..be14e09ee --- /dev/null +++ b/src/Icon3pRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3pRoundedFilled as default } diff --git a/src/Icon3pSharpFilled.tsx b/src/Icon3pSharpFilled.tsx new file mode 100644 index 000000000..68973919a --- /dev/null +++ b/src/Icon3pSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon3pSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon3pSharpFilled as default } diff --git a/src/Icon4gMobiledataBadgeOutlinedFilled.tsx b/src/Icon4gMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..36621378b --- /dev/null +++ b/src/Icon4gMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gMobiledataBadgeOutlinedFilled as default } diff --git a/src/Icon4gMobiledataBadgeRoundedFilled.tsx b/src/Icon4gMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..c81bc1a42 --- /dev/null +++ b/src/Icon4gMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gMobiledataBadgeRoundedFilled as default } diff --git a/src/Icon4gMobiledataBadgeSharpFilled.tsx b/src/Icon4gMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..0e7a72096 --- /dev/null +++ b/src/Icon4gMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gMobiledataBadgeSharpFilled as default } diff --git a/src/Icon4gMobiledataOutlinedFilled.tsx b/src/Icon4gMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..7badbe73a --- /dev/null +++ b/src/Icon4gMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gMobiledataOutlinedFilled as default } diff --git a/src/Icon4gMobiledataRoundedFilled.tsx b/src/Icon4gMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..6d104a783 --- /dev/null +++ b/src/Icon4gMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gMobiledataRoundedFilled as default } diff --git a/src/Icon4gMobiledataSharpFilled.tsx b/src/Icon4gMobiledataSharpFilled.tsx new file mode 100644 index 000000000..d8fbf9f27 --- /dev/null +++ b/src/Icon4gMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gMobiledataSharpFilled as default } diff --git a/src/Icon4gPlusMobiledataOutlinedFilled.tsx b/src/Icon4gPlusMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..4bd2aa8b6 --- /dev/null +++ b/src/Icon4gPlusMobiledataOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gPlusMobiledataOutlinedFilled as default } diff --git a/src/Icon4gPlusMobiledataRoundedFilled.tsx b/src/Icon4gPlusMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..80daf0682 --- /dev/null +++ b/src/Icon4gPlusMobiledataRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gPlusMobiledataRoundedFilled as default } diff --git a/src/Icon4gPlusMobiledataSharpFilled.tsx b/src/Icon4gPlusMobiledataSharpFilled.tsx new file mode 100644 index 000000000..c1caca9ca --- /dev/null +++ b/src/Icon4gPlusMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4gPlusMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4gPlusMobiledataSharpFilled as default } diff --git a/src/Icon4kOutlinedFilled.tsx b/src/Icon4kOutlinedFilled.tsx new file mode 100644 index 000000000..c53b87189 --- /dev/null +++ b/src/Icon4kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kOutlinedFilled as default } diff --git a/src/Icon4kPlusOutlinedFilled.tsx b/src/Icon4kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..88022cc5e --- /dev/null +++ b/src/Icon4kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kPlusOutlinedFilled as default } diff --git a/src/Icon4kPlusRoundedFilled.tsx b/src/Icon4kPlusRoundedFilled.tsx new file mode 100644 index 000000000..4dbdfbb46 --- /dev/null +++ b/src/Icon4kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kPlusRoundedFilled as default } diff --git a/src/Icon4kPlusSharpFilled.tsx b/src/Icon4kPlusSharpFilled.tsx new file mode 100644 index 000000000..7d91ee333 --- /dev/null +++ b/src/Icon4kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kPlusSharpFilled as default } diff --git a/src/Icon4kRoundedFilled.tsx b/src/Icon4kRoundedFilled.tsx new file mode 100644 index 000000000..8d09bdd90 --- /dev/null +++ b/src/Icon4kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kRoundedFilled as default } diff --git a/src/Icon4kSharpFilled.tsx b/src/Icon4kSharpFilled.tsx new file mode 100644 index 000000000..630a24297 --- /dev/null +++ b/src/Icon4kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4kSharpFilled as default } diff --git a/src/Icon4mpOutlinedFilled.tsx b/src/Icon4mpOutlinedFilled.tsx new file mode 100644 index 000000000..a4100d2b6 --- /dev/null +++ b/src/Icon4mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4mpOutlinedFilled as default } diff --git a/src/Icon4mpRoundedFilled.tsx b/src/Icon4mpRoundedFilled.tsx new file mode 100644 index 000000000..3ffe3ee37 --- /dev/null +++ b/src/Icon4mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4mpRoundedFilled as default } diff --git a/src/Icon4mpSharpFilled.tsx b/src/Icon4mpSharpFilled.tsx new file mode 100644 index 000000000..efe26e6d4 --- /dev/null +++ b/src/Icon4mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon4mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon4mpSharpFilled as default } diff --git a/src/Icon50mpOutlinedFilled.tsx b/src/Icon50mpOutlinedFilled.tsx new file mode 100644 index 000000000..0a2f65321 --- /dev/null +++ b/src/Icon50mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon50mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon50mpOutlinedFilled as default } diff --git a/src/Icon50mpRoundedFilled.tsx b/src/Icon50mpRoundedFilled.tsx new file mode 100644 index 000000000..5e63ad76c --- /dev/null +++ b/src/Icon50mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon50mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon50mpRoundedFilled as default } diff --git a/src/Icon50mpSharpFilled.tsx b/src/Icon50mpSharpFilled.tsx new file mode 100644 index 000000000..5fcafa519 --- /dev/null +++ b/src/Icon50mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon50mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon50mpSharpFilled as default } diff --git a/src/Icon5gMobiledataBadgeOutlinedFilled.tsx b/src/Icon5gMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..11af511c0 --- /dev/null +++ b/src/Icon5gMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon5gMobiledataBadgeOutlinedFilled as default } diff --git a/src/Icon5gMobiledataBadgeRoundedFilled.tsx b/src/Icon5gMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..066ba5787 --- /dev/null +++ b/src/Icon5gMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon5gMobiledataBadgeRoundedFilled as default } diff --git a/src/Icon5gMobiledataBadgeSharpFilled.tsx b/src/Icon5gMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..9300ea1b9 --- /dev/null +++ b/src/Icon5gMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { Icon5gMobiledataBadgeSharpFilled as default } diff --git a/src/Icon5gOutlinedFilled.tsx b/src/Icon5gOutlinedFilled.tsx new file mode 100644 index 000000000..05e418e35 --- /dev/null +++ b/src/Icon5gOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5gOutlinedFilled as default } diff --git a/src/Icon5gRoundedFilled.tsx b/src/Icon5gRoundedFilled.tsx new file mode 100644 index 000000000..b57c87a01 --- /dev/null +++ b/src/Icon5gRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5gRoundedFilled as default } diff --git a/src/Icon5gSharpFilled.tsx b/src/Icon5gSharpFilled.tsx new file mode 100644 index 000000000..afab1be59 --- /dev/null +++ b/src/Icon5gSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5gSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5gSharpFilled as default } diff --git a/src/Icon5kOutlinedFilled.tsx b/src/Icon5kOutlinedFilled.tsx new file mode 100644 index 000000000..9af5fa692 --- /dev/null +++ b/src/Icon5kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5kOutlinedFilled as default } diff --git a/src/Icon5kPlusOutlinedFilled.tsx b/src/Icon5kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..ed2884532 --- /dev/null +++ b/src/Icon5kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5kPlusOutlinedFilled as default } diff --git a/src/Icon5kPlusRoundedFilled.tsx b/src/Icon5kPlusRoundedFilled.tsx new file mode 100644 index 000000000..8e5986e67 --- /dev/null +++ b/src/Icon5kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5kPlusRoundedFilled as default } diff --git a/src/Icon5kPlusSharpFilled.tsx b/src/Icon5kPlusSharpFilled.tsx new file mode 100644 index 000000000..1907dda0d --- /dev/null +++ b/src/Icon5kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5kPlusSharpFilled as default } diff --git a/src/Icon5kRoundedFilled.tsx b/src/Icon5kRoundedFilled.tsx new file mode 100644 index 000000000..a3964f36f --- /dev/null +++ b/src/Icon5kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5kRoundedFilled as default } diff --git a/src/Icon5kSharpFilled.tsx b/src/Icon5kSharpFilled.tsx new file mode 100644 index 000000000..dffadfdf9 --- /dev/null +++ b/src/Icon5kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5kSharpFilled as default } diff --git a/src/Icon5mpOutlinedFilled.tsx b/src/Icon5mpOutlinedFilled.tsx new file mode 100644 index 000000000..08b71442f --- /dev/null +++ b/src/Icon5mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5mpOutlinedFilled as default } diff --git a/src/Icon5mpRoundedFilled.tsx b/src/Icon5mpRoundedFilled.tsx new file mode 100644 index 000000000..6ff8f5f05 --- /dev/null +++ b/src/Icon5mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5mpRoundedFilled as default } diff --git a/src/Icon5mpSharpFilled.tsx b/src/Icon5mpSharpFilled.tsx new file mode 100644 index 000000000..9b6da3907 --- /dev/null +++ b/src/Icon5mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon5mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon5mpSharpFilled as default } diff --git a/src/Icon60fpsOutlinedFilled.tsx b/src/Icon60fpsOutlinedFilled.tsx new file mode 100644 index 000000000..5f1f3f92b --- /dev/null +++ b/src/Icon60fpsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon60fpsOutlinedFilled as default } diff --git a/src/Icon60fpsRoundedFilled.tsx b/src/Icon60fpsRoundedFilled.tsx new file mode 100644 index 000000000..3256cfd0d --- /dev/null +++ b/src/Icon60fpsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon60fpsRoundedFilled as default } diff --git a/src/Icon60fpsSelectOutlinedFilled.tsx b/src/Icon60fpsSelectOutlinedFilled.tsx new file mode 100644 index 000000000..7e684494b --- /dev/null +++ b/src/Icon60fpsSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon60fpsSelectOutlinedFilled as default } diff --git a/src/Icon60fpsSelectRoundedFilled.tsx b/src/Icon60fpsSelectRoundedFilled.tsx new file mode 100644 index 000000000..111b6f788 --- /dev/null +++ b/src/Icon60fpsSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon60fpsSelectRoundedFilled as default } diff --git a/src/Icon60fpsSelectSharpFilled.tsx b/src/Icon60fpsSelectSharpFilled.tsx new file mode 100644 index 000000000..d3618ce9b --- /dev/null +++ b/src/Icon60fpsSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon60fpsSelectSharpFilled as default } diff --git a/src/Icon60fpsSharpFilled.tsx b/src/Icon60fpsSharpFilled.tsx new file mode 100644 index 000000000..16c928240 --- /dev/null +++ b/src/Icon60fpsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon60fpsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon60fpsSharpFilled as default } diff --git a/src/Icon6FtApartOutlinedFilled.tsx b/src/Icon6FtApartOutlinedFilled.tsx new file mode 100644 index 000000000..634cf38ac --- /dev/null +++ b/src/Icon6FtApartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6FtApartOutlinedFilled as default } diff --git a/src/Icon6FtApartRoundedFilled.tsx b/src/Icon6FtApartRoundedFilled.tsx new file mode 100644 index 000000000..17cf55123 --- /dev/null +++ b/src/Icon6FtApartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6FtApartRoundedFilled as default } diff --git a/src/Icon6FtApartSharpFilled.tsx b/src/Icon6FtApartSharpFilled.tsx new file mode 100644 index 000000000..847e6b275 --- /dev/null +++ b/src/Icon6FtApartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6FtApartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6FtApartSharpFilled as default } diff --git a/src/Icon6kOutlinedFilled.tsx b/src/Icon6kOutlinedFilled.tsx new file mode 100644 index 000000000..64c97cbd9 --- /dev/null +++ b/src/Icon6kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6kOutlinedFilled as default } diff --git a/src/Icon6kPlusOutlinedFilled.tsx b/src/Icon6kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..18b7473ca --- /dev/null +++ b/src/Icon6kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6kPlusOutlinedFilled as default } diff --git a/src/Icon6kPlusRoundedFilled.tsx b/src/Icon6kPlusRoundedFilled.tsx new file mode 100644 index 000000000..a3b466977 --- /dev/null +++ b/src/Icon6kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6kPlusRoundedFilled as default } diff --git a/src/Icon6kPlusSharpFilled.tsx b/src/Icon6kPlusSharpFilled.tsx new file mode 100644 index 000000000..95aebe810 --- /dev/null +++ b/src/Icon6kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6kPlusSharpFilled as default } diff --git a/src/Icon6kRoundedFilled.tsx b/src/Icon6kRoundedFilled.tsx new file mode 100644 index 000000000..4c7d2f167 --- /dev/null +++ b/src/Icon6kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6kRoundedFilled as default } diff --git a/src/Icon6kSharpFilled.tsx b/src/Icon6kSharpFilled.tsx new file mode 100644 index 000000000..cd7d6eba5 --- /dev/null +++ b/src/Icon6kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6kSharpFilled as default } diff --git a/src/Icon6mpOutlinedFilled.tsx b/src/Icon6mpOutlinedFilled.tsx new file mode 100644 index 000000000..ec5d9c598 --- /dev/null +++ b/src/Icon6mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6mpOutlinedFilled as default } diff --git a/src/Icon6mpRoundedFilled.tsx b/src/Icon6mpRoundedFilled.tsx new file mode 100644 index 000000000..8b8614335 --- /dev/null +++ b/src/Icon6mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6mpRoundedFilled as default } diff --git a/src/Icon6mpSharpFilled.tsx b/src/Icon6mpSharpFilled.tsx new file mode 100644 index 000000000..2ba9c134d --- /dev/null +++ b/src/Icon6mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon6mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon6mpSharpFilled as default } diff --git a/src/Icon7kOutlinedFilled.tsx b/src/Icon7kOutlinedFilled.tsx new file mode 100644 index 000000000..26340f8b0 --- /dev/null +++ b/src/Icon7kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7kOutlinedFilled as default } diff --git a/src/Icon7kPlusOutlinedFilled.tsx b/src/Icon7kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..4cfc08a2b --- /dev/null +++ b/src/Icon7kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7kPlusOutlinedFilled as default } diff --git a/src/Icon7kPlusRoundedFilled.tsx b/src/Icon7kPlusRoundedFilled.tsx new file mode 100644 index 000000000..2d8c35f8c --- /dev/null +++ b/src/Icon7kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7kPlusRoundedFilled as default } diff --git a/src/Icon7kPlusSharpFilled.tsx b/src/Icon7kPlusSharpFilled.tsx new file mode 100644 index 000000000..f5139de76 --- /dev/null +++ b/src/Icon7kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7kPlusSharpFilled as default } diff --git a/src/Icon7kRoundedFilled.tsx b/src/Icon7kRoundedFilled.tsx new file mode 100644 index 000000000..b545b5a9f --- /dev/null +++ b/src/Icon7kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7kRoundedFilled as default } diff --git a/src/Icon7kSharpFilled.tsx b/src/Icon7kSharpFilled.tsx new file mode 100644 index 000000000..ce17e64bf --- /dev/null +++ b/src/Icon7kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7kSharpFilled as default } diff --git a/src/Icon7mpOutlinedFilled.tsx b/src/Icon7mpOutlinedFilled.tsx new file mode 100644 index 000000000..0ea596156 --- /dev/null +++ b/src/Icon7mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7mpOutlinedFilled as default } diff --git a/src/Icon7mpRoundedFilled.tsx b/src/Icon7mpRoundedFilled.tsx new file mode 100644 index 000000000..002de84b8 --- /dev/null +++ b/src/Icon7mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7mpRoundedFilled as default } diff --git a/src/Icon7mpSharpFilled.tsx b/src/Icon7mpSharpFilled.tsx new file mode 100644 index 000000000..4b01711e0 --- /dev/null +++ b/src/Icon7mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon7mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon7mpSharpFilled as default } diff --git a/src/Icon8kOutlinedFilled.tsx b/src/Icon8kOutlinedFilled.tsx new file mode 100644 index 000000000..78ec8b0d2 --- /dev/null +++ b/src/Icon8kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8kOutlinedFilled as default } diff --git a/src/Icon8kPlusOutlinedFilled.tsx b/src/Icon8kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..cf25c5b23 --- /dev/null +++ b/src/Icon8kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8kPlusOutlinedFilled as default } diff --git a/src/Icon8kPlusRoundedFilled.tsx b/src/Icon8kPlusRoundedFilled.tsx new file mode 100644 index 000000000..fd7cbda5c --- /dev/null +++ b/src/Icon8kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8kPlusRoundedFilled as default } diff --git a/src/Icon8kPlusSharpFilled.tsx b/src/Icon8kPlusSharpFilled.tsx new file mode 100644 index 000000000..c80e7b38c --- /dev/null +++ b/src/Icon8kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8kPlusSharpFilled as default } diff --git a/src/Icon8kRoundedFilled.tsx b/src/Icon8kRoundedFilled.tsx new file mode 100644 index 000000000..c8d6d621a --- /dev/null +++ b/src/Icon8kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8kRoundedFilled as default } diff --git a/src/Icon8kSharpFilled.tsx b/src/Icon8kSharpFilled.tsx new file mode 100644 index 000000000..f54c52dbe --- /dev/null +++ b/src/Icon8kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8kSharpFilled as default } diff --git a/src/Icon8mpOutlinedFilled.tsx b/src/Icon8mpOutlinedFilled.tsx new file mode 100644 index 000000000..b72e6c994 --- /dev/null +++ b/src/Icon8mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8mpOutlinedFilled as default } diff --git a/src/Icon8mpRoundedFilled.tsx b/src/Icon8mpRoundedFilled.tsx new file mode 100644 index 000000000..77d7fced7 --- /dev/null +++ b/src/Icon8mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8mpRoundedFilled as default } diff --git a/src/Icon8mpSharpFilled.tsx b/src/Icon8mpSharpFilled.tsx new file mode 100644 index 000000000..57835606a --- /dev/null +++ b/src/Icon8mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon8mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon8mpSharpFilled as default } diff --git a/src/Icon9kOutlinedFilled.tsx b/src/Icon9kOutlinedFilled.tsx new file mode 100644 index 000000000..2dcc47fe6 --- /dev/null +++ b/src/Icon9kOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9kOutlinedFilled as default } diff --git a/src/Icon9kPlusOutlinedFilled.tsx b/src/Icon9kPlusOutlinedFilled.tsx new file mode 100644 index 000000000..816766d49 --- /dev/null +++ b/src/Icon9kPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9kPlusOutlinedFilled as default } diff --git a/src/Icon9kPlusRoundedFilled.tsx b/src/Icon9kPlusRoundedFilled.tsx new file mode 100644 index 000000000..e37f65230 --- /dev/null +++ b/src/Icon9kPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9kPlusRoundedFilled as default } diff --git a/src/Icon9kPlusSharpFilled.tsx b/src/Icon9kPlusSharpFilled.tsx new file mode 100644 index 000000000..5616a1dad --- /dev/null +++ b/src/Icon9kPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9kPlusSharpFilled as default } diff --git a/src/Icon9kRoundedFilled.tsx b/src/Icon9kRoundedFilled.tsx new file mode 100644 index 000000000..55a067e73 --- /dev/null +++ b/src/Icon9kRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9kRoundedFilled as default } diff --git a/src/Icon9kSharpFilled.tsx b/src/Icon9kSharpFilled.tsx new file mode 100644 index 000000000..8fd01351f --- /dev/null +++ b/src/Icon9kSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9kSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9kSharpFilled as default } diff --git a/src/Icon9mpOutlinedFilled.tsx b/src/Icon9mpOutlinedFilled.tsx new file mode 100644 index 000000000..bf924491f --- /dev/null +++ b/src/Icon9mpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9mpOutlinedFilled as default } diff --git a/src/Icon9mpRoundedFilled.tsx b/src/Icon9mpRoundedFilled.tsx new file mode 100644 index 000000000..5a190b66e --- /dev/null +++ b/src/Icon9mpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9mpRoundedFilled as default } diff --git a/src/Icon9mpSharpFilled.tsx b/src/Icon9mpSharpFilled.tsx new file mode 100644 index 000000000..dc50044b3 --- /dev/null +++ b/src/Icon9mpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const Icon9mpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { Icon9mpSharpFilled as default } diff --git a/src/IconAbcOutlinedFilled.tsx b/src/IconAbcOutlinedFilled.tsx new file mode 100644 index 000000000..54a1d479b --- /dev/null +++ b/src/IconAbcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAbcOutlinedFilled as default } diff --git a/src/IconAbcRoundedFilled.tsx b/src/IconAbcRoundedFilled.tsx new file mode 100644 index 000000000..fde23a586 --- /dev/null +++ b/src/IconAbcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAbcRoundedFilled as default } diff --git a/src/IconAbcSharpFilled.tsx b/src/IconAbcSharpFilled.tsx new file mode 100644 index 000000000..37d66e121 --- /dev/null +++ b/src/IconAbcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAbcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAbcSharpFilled as default } diff --git a/src/IconAcUnitOutlinedFilled.tsx b/src/IconAcUnitOutlinedFilled.tsx new file mode 100644 index 000000000..32a8e93e8 --- /dev/null +++ b/src/IconAcUnitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAcUnitOutlinedFilled as default } diff --git a/src/IconAcUnitRoundedFilled.tsx b/src/IconAcUnitRoundedFilled.tsx new file mode 100644 index 000000000..7cae0c57d --- /dev/null +++ b/src/IconAcUnitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAcUnitRoundedFilled as default } diff --git a/src/IconAcUnitSharpFilled.tsx b/src/IconAcUnitSharpFilled.tsx new file mode 100644 index 000000000..f7d4e727a --- /dev/null +++ b/src/IconAcUnitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcUnitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAcUnitSharpFilled as default } diff --git a/src/IconAccessibilityNewOutlinedFilled.tsx b/src/IconAccessibilityNewOutlinedFilled.tsx new file mode 100644 index 000000000..154871db9 --- /dev/null +++ b/src/IconAccessibilityNewOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibilityNewOutlinedFilled as default } diff --git a/src/IconAccessibilityNewRoundedFilled.tsx b/src/IconAccessibilityNewRoundedFilled.tsx new file mode 100644 index 000000000..dd2f3bebd --- /dev/null +++ b/src/IconAccessibilityNewRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibilityNewRoundedFilled as default } diff --git a/src/IconAccessibilityNewSharpFilled.tsx b/src/IconAccessibilityNewSharpFilled.tsx new file mode 100644 index 000000000..96e0f2025 --- /dev/null +++ b/src/IconAccessibilityNewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityNewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibilityNewSharpFilled as default } diff --git a/src/IconAccessibilityOutlinedFilled.tsx b/src/IconAccessibilityOutlinedFilled.tsx new file mode 100644 index 000000000..276f7177d --- /dev/null +++ b/src/IconAccessibilityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibilityOutlinedFilled as default } diff --git a/src/IconAccessibilityRoundedFilled.tsx b/src/IconAccessibilityRoundedFilled.tsx new file mode 100644 index 000000000..7b41155a7 --- /dev/null +++ b/src/IconAccessibilityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibilityRoundedFilled as default } diff --git a/src/IconAccessibilitySharpFilled.tsx b/src/IconAccessibilitySharpFilled.tsx new file mode 100644 index 000000000..774ff481d --- /dev/null +++ b/src/IconAccessibilitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibilitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibilitySharpFilled as default } diff --git a/src/IconAccessibleForwardOutlinedFilled.tsx b/src/IconAccessibleForwardOutlinedFilled.tsx new file mode 100644 index 000000000..386e51d04 --- /dev/null +++ b/src/IconAccessibleForwardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibleForwardOutlinedFilled as default } diff --git a/src/IconAccessibleForwardRoundedFilled.tsx b/src/IconAccessibleForwardRoundedFilled.tsx new file mode 100644 index 000000000..dece97671 --- /dev/null +++ b/src/IconAccessibleForwardRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibleForwardRoundedFilled as default } diff --git a/src/IconAccessibleForwardSharpFilled.tsx b/src/IconAccessibleForwardSharpFilled.tsx new file mode 100644 index 000000000..668f18bd1 --- /dev/null +++ b/src/IconAccessibleForwardSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleForwardSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibleForwardSharpFilled as default } diff --git a/src/IconAccessibleOutlinedFilled.tsx b/src/IconAccessibleOutlinedFilled.tsx new file mode 100644 index 000000000..f08ba0ed8 --- /dev/null +++ b/src/IconAccessibleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibleOutlinedFilled as default } diff --git a/src/IconAccessibleRoundedFilled.tsx b/src/IconAccessibleRoundedFilled.tsx new file mode 100644 index 000000000..9925225d8 --- /dev/null +++ b/src/IconAccessibleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibleRoundedFilled as default } diff --git a/src/IconAccessibleSharpFilled.tsx b/src/IconAccessibleSharpFilled.tsx new file mode 100644 index 000000000..b9d07f0f6 --- /dev/null +++ b/src/IconAccessibleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccessibleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccessibleSharpFilled as default } diff --git a/src/IconAccountBalanceOutlinedFilled.tsx b/src/IconAccountBalanceOutlinedFilled.tsx new file mode 100644 index 000000000..53ca7aa28 --- /dev/null +++ b/src/IconAccountBalanceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBalanceOutlinedFilled as default } diff --git a/src/IconAccountBalanceRoundedFilled.tsx b/src/IconAccountBalanceRoundedFilled.tsx new file mode 100644 index 000000000..8129546ae --- /dev/null +++ b/src/IconAccountBalanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBalanceRoundedFilled as default } diff --git a/src/IconAccountBalanceSharpFilled.tsx b/src/IconAccountBalanceSharpFilled.tsx new file mode 100644 index 000000000..4f3acfa1a --- /dev/null +++ b/src/IconAccountBalanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBalanceSharpFilled as default } diff --git a/src/IconAccountBalanceWalletOutlinedFilled.tsx b/src/IconAccountBalanceWalletOutlinedFilled.tsx new file mode 100644 index 000000000..a261d2ced --- /dev/null +++ b/src/IconAccountBalanceWalletOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBalanceWalletOutlinedFilled as default } diff --git a/src/IconAccountBalanceWalletRoundedFilled.tsx b/src/IconAccountBalanceWalletRoundedFilled.tsx new file mode 100644 index 000000000..bd5c25628 --- /dev/null +++ b/src/IconAccountBalanceWalletRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBalanceWalletRoundedFilled as default } diff --git a/src/IconAccountBalanceWalletSharpFilled.tsx b/src/IconAccountBalanceWalletSharpFilled.tsx new file mode 100644 index 000000000..40bc06731 --- /dev/null +++ b/src/IconAccountBalanceWalletSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBalanceWalletSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBalanceWalletSharpFilled as default } diff --git a/src/IconAccountBoxOutlinedFilled.tsx b/src/IconAccountBoxOutlinedFilled.tsx new file mode 100644 index 000000000..4c35e0900 --- /dev/null +++ b/src/IconAccountBoxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBoxOutlinedFilled as default } diff --git a/src/IconAccountBoxRoundedFilled.tsx b/src/IconAccountBoxRoundedFilled.tsx new file mode 100644 index 000000000..7f7028eab --- /dev/null +++ b/src/IconAccountBoxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBoxRoundedFilled as default } diff --git a/src/IconAccountBoxSharpFilled.tsx b/src/IconAccountBoxSharpFilled.tsx new file mode 100644 index 000000000..d4bec1bc5 --- /dev/null +++ b/src/IconAccountBoxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountBoxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountBoxSharpFilled as default } diff --git a/src/IconAccountChildInvertOutlinedFilled.tsx b/src/IconAccountChildInvertOutlinedFilled.tsx new file mode 100644 index 000000000..07b1b0421 --- /dev/null +++ b/src/IconAccountChildInvertOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountChildInvertOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountChildInvertOutlinedFilled as default } diff --git a/src/IconAccountChildInvertRoundedFilled.tsx b/src/IconAccountChildInvertRoundedFilled.tsx new file mode 100644 index 000000000..447acb79d --- /dev/null +++ b/src/IconAccountChildInvertRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountChildInvertRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountChildInvertRoundedFilled as default } diff --git a/src/IconAccountChildInvertSharpFilled.tsx b/src/IconAccountChildInvertSharpFilled.tsx new file mode 100644 index 000000000..50e1842da --- /dev/null +++ b/src/IconAccountChildInvertSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountChildInvertSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountChildInvertSharpFilled as default } diff --git a/src/IconAccountChildOutlinedFilled.tsx b/src/IconAccountChildOutlinedFilled.tsx new file mode 100644 index 000000000..82acdacb9 --- /dev/null +++ b/src/IconAccountChildOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountChildOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountChildOutlinedFilled as default } diff --git a/src/IconAccountChildRoundedFilled.tsx b/src/IconAccountChildRoundedFilled.tsx new file mode 100644 index 000000000..b50ccabf8 --- /dev/null +++ b/src/IconAccountChildRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountChildRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountChildRoundedFilled as default } diff --git a/src/IconAccountChildSharpFilled.tsx b/src/IconAccountChildSharpFilled.tsx new file mode 100644 index 000000000..f4fb82725 --- /dev/null +++ b/src/IconAccountChildSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountChildSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountChildSharpFilled as default } diff --git a/src/IconAccountCircleOffOutlinedFilled.tsx b/src/IconAccountCircleOffOutlinedFilled.tsx new file mode 100644 index 000000000..ccc7a8fba --- /dev/null +++ b/src/IconAccountCircleOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountCircleOffOutlinedFilled as default } diff --git a/src/IconAccountCircleOffRoundedFilled.tsx b/src/IconAccountCircleOffRoundedFilled.tsx new file mode 100644 index 000000000..a40e6ee02 --- /dev/null +++ b/src/IconAccountCircleOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountCircleOffRoundedFilled as default } diff --git a/src/IconAccountCircleOffSharpFilled.tsx b/src/IconAccountCircleOffSharpFilled.tsx new file mode 100644 index 000000000..3061c3ef4 --- /dev/null +++ b/src/IconAccountCircleOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountCircleOffSharpFilled as default } diff --git a/src/IconAccountCircleOutlinedFilled.tsx b/src/IconAccountCircleOutlinedFilled.tsx new file mode 100644 index 000000000..e1a59e711 --- /dev/null +++ b/src/IconAccountCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountCircleOutlinedFilled as default } diff --git a/src/IconAccountCircleRoundedFilled.tsx b/src/IconAccountCircleRoundedFilled.tsx new file mode 100644 index 000000000..d44ab71fb --- /dev/null +++ b/src/IconAccountCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountCircleRoundedFilled as default } diff --git a/src/IconAccountCircleSharpFilled.tsx b/src/IconAccountCircleSharpFilled.tsx new file mode 100644 index 000000000..f6d93a985 --- /dev/null +++ b/src/IconAccountCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountCircleSharpFilled as default } diff --git a/src/IconAccountTreeOutlinedFilled.tsx b/src/IconAccountTreeOutlinedFilled.tsx new file mode 100644 index 000000000..67f9355bc --- /dev/null +++ b/src/IconAccountTreeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountTreeOutlinedFilled as default } diff --git a/src/IconAccountTreeRoundedFilled.tsx b/src/IconAccountTreeRoundedFilled.tsx new file mode 100644 index 000000000..b29e93e55 --- /dev/null +++ b/src/IconAccountTreeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountTreeRoundedFilled as default } diff --git a/src/IconAccountTreeSharpFilled.tsx b/src/IconAccountTreeSharpFilled.tsx new file mode 100644 index 000000000..6ce96fd0d --- /dev/null +++ b/src/IconAccountTreeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAccountTreeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAccountTreeSharpFilled as default } diff --git a/src/IconActionKeyOutlinedFilled.tsx b/src/IconActionKeyOutlinedFilled.tsx new file mode 100644 index 000000000..ebf018f2e --- /dev/null +++ b/src/IconActionKeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconActionKeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconActionKeyOutlinedFilled as default } diff --git a/src/IconActionKeyRoundedFilled.tsx b/src/IconActionKeyRoundedFilled.tsx new file mode 100644 index 000000000..9a885ed6b --- /dev/null +++ b/src/IconActionKeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconActionKeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconActionKeyRoundedFilled as default } diff --git a/src/IconActionKeySharpFilled.tsx b/src/IconActionKeySharpFilled.tsx new file mode 100644 index 000000000..081f8c556 --- /dev/null +++ b/src/IconActionKeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconActionKeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconActionKeySharpFilled as default } diff --git a/src/IconActivityZoneOutlinedFilled.tsx b/src/IconActivityZoneOutlinedFilled.tsx new file mode 100644 index 000000000..5a0fe3e36 --- /dev/null +++ b/src/IconActivityZoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconActivityZoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconActivityZoneOutlinedFilled as default } diff --git a/src/IconActivityZoneRoundedFilled.tsx b/src/IconActivityZoneRoundedFilled.tsx new file mode 100644 index 000000000..5dcdc85bf --- /dev/null +++ b/src/IconActivityZoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconActivityZoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconActivityZoneRoundedFilled as default } diff --git a/src/IconActivityZoneSharpFilled.tsx b/src/IconActivityZoneSharpFilled.tsx new file mode 100644 index 000000000..a8293780c --- /dev/null +++ b/src/IconActivityZoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconActivityZoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconActivityZoneSharpFilled as default } diff --git a/src/IconAcuteOutlinedFilled.tsx b/src/IconAcuteOutlinedFilled.tsx new file mode 100644 index 000000000..e4bd58fe1 --- /dev/null +++ b/src/IconAcuteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcuteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAcuteOutlinedFilled as default } diff --git a/src/IconAcuteRoundedFilled.tsx b/src/IconAcuteRoundedFilled.tsx new file mode 100644 index 000000000..65648ed5d --- /dev/null +++ b/src/IconAcuteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcuteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAcuteRoundedFilled as default } diff --git a/src/IconAcuteSharpFilled.tsx b/src/IconAcuteSharpFilled.tsx new file mode 100644 index 000000000..3778f429d --- /dev/null +++ b/src/IconAcuteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAcuteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAcuteSharpFilled as default } diff --git a/src/IconAdGroupOffOutlinedFilled.tsx b/src/IconAdGroupOffOutlinedFilled.tsx new file mode 100644 index 000000000..9ae34fb4d --- /dev/null +++ b/src/IconAdGroupOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdGroupOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdGroupOffOutlinedFilled as default } diff --git a/src/IconAdGroupOffRoundedFilled.tsx b/src/IconAdGroupOffRoundedFilled.tsx new file mode 100644 index 000000000..7bea27f97 --- /dev/null +++ b/src/IconAdGroupOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdGroupOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdGroupOffRoundedFilled as default } diff --git a/src/IconAdGroupOffSharpFilled.tsx b/src/IconAdGroupOffSharpFilled.tsx new file mode 100644 index 000000000..53ea059af --- /dev/null +++ b/src/IconAdGroupOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdGroupOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdGroupOffSharpFilled as default } diff --git a/src/IconAdGroupOutlinedFilled.tsx b/src/IconAdGroupOutlinedFilled.tsx new file mode 100644 index 000000000..37b479916 --- /dev/null +++ b/src/IconAdGroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdGroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdGroupOutlinedFilled as default } diff --git a/src/IconAdGroupRoundedFilled.tsx b/src/IconAdGroupRoundedFilled.tsx new file mode 100644 index 000000000..9e7bb36e1 --- /dev/null +++ b/src/IconAdGroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdGroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdGroupRoundedFilled as default } diff --git a/src/IconAdGroupSharpFilled.tsx b/src/IconAdGroupSharpFilled.tsx new file mode 100644 index 000000000..69a71c3fd --- /dev/null +++ b/src/IconAdGroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdGroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdGroupSharpFilled as default } diff --git a/src/IconAdOffOutlinedFilled.tsx b/src/IconAdOffOutlinedFilled.tsx new file mode 100644 index 000000000..68b119a63 --- /dev/null +++ b/src/IconAdOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdOffOutlinedFilled as default } diff --git a/src/IconAdOffRoundedFilled.tsx b/src/IconAdOffRoundedFilled.tsx new file mode 100644 index 000000000..739796645 --- /dev/null +++ b/src/IconAdOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdOffRoundedFilled as default } diff --git a/src/IconAdOffSharpFilled.tsx b/src/IconAdOffSharpFilled.tsx new file mode 100644 index 000000000..329ef7c8b --- /dev/null +++ b/src/IconAdOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdOffSharpFilled as default } diff --git a/src/IconAdOutlinedFilled.tsx b/src/IconAdOutlinedFilled.tsx new file mode 100644 index 000000000..b6f084e7e --- /dev/null +++ b/src/IconAdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdOutlinedFilled as default } diff --git a/src/IconAdRoundedFilled.tsx b/src/IconAdRoundedFilled.tsx new file mode 100644 index 000000000..5d5a3c1f3 --- /dev/null +++ b/src/IconAdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdRoundedFilled as default } diff --git a/src/IconAdSharpFilled.tsx b/src/IconAdSharpFilled.tsx new file mode 100644 index 000000000..47ce71225 --- /dev/null +++ b/src/IconAdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdSharpFilled as default } diff --git a/src/IconAdUnitsOutlinedFilled.tsx b/src/IconAdUnitsOutlinedFilled.tsx new file mode 100644 index 000000000..cf7b7411a --- /dev/null +++ b/src/IconAdUnitsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdUnitsOutlinedFilled as default } diff --git a/src/IconAdUnitsRoundedFilled.tsx b/src/IconAdUnitsRoundedFilled.tsx new file mode 100644 index 000000000..df60369fc --- /dev/null +++ b/src/IconAdUnitsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdUnitsRoundedFilled as default } diff --git a/src/IconAdUnitsSharpFilled.tsx b/src/IconAdUnitsSharpFilled.tsx new file mode 100644 index 000000000..4f3326863 --- /dev/null +++ b/src/IconAdUnitsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdUnitsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdUnitsSharpFilled as default } diff --git a/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx b/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx new file mode 100644 index 000000000..953bffef1 --- /dev/null +++ b/src/IconAdaptiveAudioMicOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdaptiveAudioMicOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdaptiveAudioMicOffOutlinedFilled as default } diff --git a/src/IconAdaptiveAudioMicOffRoundedFilled.tsx b/src/IconAdaptiveAudioMicOffRoundedFilled.tsx new file mode 100644 index 000000000..8724347c6 --- /dev/null +++ b/src/IconAdaptiveAudioMicOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdaptiveAudioMicOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdaptiveAudioMicOffRoundedFilled as default } diff --git a/src/IconAdaptiveAudioMicOffSharpFilled.tsx b/src/IconAdaptiveAudioMicOffSharpFilled.tsx new file mode 100644 index 000000000..2cf070019 --- /dev/null +++ b/src/IconAdaptiveAudioMicOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdaptiveAudioMicOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdaptiveAudioMicOffSharpFilled as default } diff --git a/src/IconAdaptiveAudioMicOutlinedFilled.tsx b/src/IconAdaptiveAudioMicOutlinedFilled.tsx new file mode 100644 index 000000000..c44b82f6f --- /dev/null +++ b/src/IconAdaptiveAudioMicOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdaptiveAudioMicOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdaptiveAudioMicOutlinedFilled as default } diff --git a/src/IconAdaptiveAudioMicRoundedFilled.tsx b/src/IconAdaptiveAudioMicRoundedFilled.tsx new file mode 100644 index 000000000..e91bdf4ed --- /dev/null +++ b/src/IconAdaptiveAudioMicRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdaptiveAudioMicRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdaptiveAudioMicRoundedFilled as default } diff --git a/src/IconAdaptiveAudioMicSharpFilled.tsx b/src/IconAdaptiveAudioMicSharpFilled.tsx new file mode 100644 index 000000000..4ecb4b46a --- /dev/null +++ b/src/IconAdaptiveAudioMicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdaptiveAudioMicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdaptiveAudioMicSharpFilled as default } diff --git a/src/IconAdbOutlinedFilled.tsx b/src/IconAdbOutlinedFilled.tsx new file mode 100644 index 000000000..405c391f7 --- /dev/null +++ b/src/IconAdbOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdbOutlinedFilled as default } diff --git a/src/IconAdbRoundedFilled.tsx b/src/IconAdbRoundedFilled.tsx new file mode 100644 index 000000000..46c750ac7 --- /dev/null +++ b/src/IconAdbRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdbRoundedFilled as default } diff --git a/src/IconAdbSharpFilled.tsx b/src/IconAdbSharpFilled.tsx new file mode 100644 index 000000000..040870202 --- /dev/null +++ b/src/IconAdbSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdbSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdbSharpFilled as default } diff --git a/src/IconAddAPhotoOutlinedFilled.tsx b/src/IconAddAPhotoOutlinedFilled.tsx new file mode 100644 index 000000000..217e039f8 --- /dev/null +++ b/src/IconAddAPhotoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAPhotoOutlinedFilled as default } diff --git a/src/IconAddAPhotoRoundedFilled.tsx b/src/IconAddAPhotoRoundedFilled.tsx new file mode 100644 index 000000000..8f2717b0f --- /dev/null +++ b/src/IconAddAPhotoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAPhotoRoundedFilled as default } diff --git a/src/IconAddAPhotoSharpFilled.tsx b/src/IconAddAPhotoSharpFilled.tsx new file mode 100644 index 000000000..0431bca94 --- /dev/null +++ b/src/IconAddAPhotoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAPhotoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAPhotoSharpFilled as default } diff --git a/src/IconAddAdOutlinedFilled.tsx b/src/IconAddAdOutlinedFilled.tsx new file mode 100644 index 000000000..21af70468 --- /dev/null +++ b/src/IconAddAdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAdOutlinedFilled as default } diff --git a/src/IconAddAdRoundedFilled.tsx b/src/IconAddAdRoundedFilled.tsx new file mode 100644 index 000000000..80abfe3b5 --- /dev/null +++ b/src/IconAddAdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAdRoundedFilled as default } diff --git a/src/IconAddAdSharpFilled.tsx b/src/IconAddAdSharpFilled.tsx new file mode 100644 index 000000000..a112214dd --- /dev/null +++ b/src/IconAddAdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAdSharpFilled as default } diff --git a/src/IconAddAlertOutlinedFilled.tsx b/src/IconAddAlertOutlinedFilled.tsx new file mode 100644 index 000000000..19cc18371 --- /dev/null +++ b/src/IconAddAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAlertOutlinedFilled as default } diff --git a/src/IconAddAlertRoundedFilled.tsx b/src/IconAddAlertRoundedFilled.tsx new file mode 100644 index 000000000..b359197c8 --- /dev/null +++ b/src/IconAddAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAlertRoundedFilled as default } diff --git a/src/IconAddAlertSharpFilled.tsx b/src/IconAddAlertSharpFilled.tsx new file mode 100644 index 000000000..817cfb842 --- /dev/null +++ b/src/IconAddAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddAlertSharpFilled as default } diff --git a/src/IconAddBoxOutlinedFilled.tsx b/src/IconAddBoxOutlinedFilled.tsx new file mode 100644 index 000000000..5bae43232 --- /dev/null +++ b/src/IconAddBoxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddBoxOutlinedFilled as default } diff --git a/src/IconAddBoxRoundedFilled.tsx b/src/IconAddBoxRoundedFilled.tsx new file mode 100644 index 000000000..af1fc485c --- /dev/null +++ b/src/IconAddBoxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddBoxRoundedFilled as default } diff --git a/src/IconAddBoxSharpFilled.tsx b/src/IconAddBoxSharpFilled.tsx new file mode 100644 index 000000000..b64ef2cb6 --- /dev/null +++ b/src/IconAddBoxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBoxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddBoxSharpFilled as default } diff --git a/src/IconAddBusinessOutlinedFilled.tsx b/src/IconAddBusinessOutlinedFilled.tsx new file mode 100644 index 000000000..2eb1142d5 --- /dev/null +++ b/src/IconAddBusinessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddBusinessOutlinedFilled as default } diff --git a/src/IconAddBusinessRoundedFilled.tsx b/src/IconAddBusinessRoundedFilled.tsx new file mode 100644 index 000000000..10cc992a9 --- /dev/null +++ b/src/IconAddBusinessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddBusinessRoundedFilled as default } diff --git a/src/IconAddBusinessSharpFilled.tsx b/src/IconAddBusinessSharpFilled.tsx new file mode 100644 index 000000000..0130e9053 --- /dev/null +++ b/src/IconAddBusinessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddBusinessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddBusinessSharpFilled as default } diff --git a/src/IconAddCallOutlinedFilled.tsx b/src/IconAddCallOutlinedFilled.tsx new file mode 100644 index 000000000..b4410cec6 --- /dev/null +++ b/src/IconAddCallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCallOutlinedFilled as default } diff --git a/src/IconAddCallRoundedFilled.tsx b/src/IconAddCallRoundedFilled.tsx new file mode 100644 index 000000000..678c6bf5c --- /dev/null +++ b/src/IconAddCallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCallRoundedFilled as default } diff --git a/src/IconAddCallSharpFilled.tsx b/src/IconAddCallSharpFilled.tsx new file mode 100644 index 000000000..dc38cbaf0 --- /dev/null +++ b/src/IconAddCallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCallSharpFilled as default } diff --git a/src/IconAddCardOutlinedFilled.tsx b/src/IconAddCardOutlinedFilled.tsx new file mode 100644 index 000000000..5dabda0c5 --- /dev/null +++ b/src/IconAddCardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCardOutlinedFilled as default } diff --git a/src/IconAddCardRoundedFilled.tsx b/src/IconAddCardRoundedFilled.tsx new file mode 100644 index 000000000..64eac3d1c --- /dev/null +++ b/src/IconAddCardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCardRoundedFilled as default } diff --git a/src/IconAddCardSharpFilled.tsx b/src/IconAddCardSharpFilled.tsx new file mode 100644 index 000000000..4b7b982a9 --- /dev/null +++ b/src/IconAddCardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCardSharpFilled as default } diff --git a/src/IconAddChartOutlinedFilled.tsx b/src/IconAddChartOutlinedFilled.tsx new file mode 100644 index 000000000..ca7667b9e --- /dev/null +++ b/src/IconAddChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddChartOutlinedFilled as default } diff --git a/src/IconAddChartRoundedFilled.tsx b/src/IconAddChartRoundedFilled.tsx new file mode 100644 index 000000000..a3ca558a9 --- /dev/null +++ b/src/IconAddChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddChartRoundedFilled as default } diff --git a/src/IconAddChartSharpFilled.tsx b/src/IconAddChartSharpFilled.tsx new file mode 100644 index 000000000..680002ba2 --- /dev/null +++ b/src/IconAddChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddChartSharpFilled as default } diff --git a/src/IconAddCircleOutlinedFilled.tsx b/src/IconAddCircleOutlinedFilled.tsx new file mode 100644 index 000000000..d6c67d202 --- /dev/null +++ b/src/IconAddCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCircleOutlinedFilled as default } diff --git a/src/IconAddCircleRoundedFilled.tsx b/src/IconAddCircleRoundedFilled.tsx new file mode 100644 index 000000000..f3e642c66 --- /dev/null +++ b/src/IconAddCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCircleRoundedFilled as default } diff --git a/src/IconAddCircleSharpFilled.tsx b/src/IconAddCircleSharpFilled.tsx new file mode 100644 index 000000000..f4573d217 --- /dev/null +++ b/src/IconAddCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCircleSharpFilled as default } diff --git a/src/IconAddColumnLeftOutlinedFilled.tsx b/src/IconAddColumnLeftOutlinedFilled.tsx new file mode 100644 index 000000000..b61c61f12 --- /dev/null +++ b/src/IconAddColumnLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddColumnLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddColumnLeftOutlinedFilled as default } diff --git a/src/IconAddColumnLeftRoundedFilled.tsx b/src/IconAddColumnLeftRoundedFilled.tsx new file mode 100644 index 000000000..0213b2408 --- /dev/null +++ b/src/IconAddColumnLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddColumnLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddColumnLeftRoundedFilled as default } diff --git a/src/IconAddColumnLeftSharpFilled.tsx b/src/IconAddColumnLeftSharpFilled.tsx new file mode 100644 index 000000000..5833c049d --- /dev/null +++ b/src/IconAddColumnLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddColumnLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddColumnLeftSharpFilled as default } diff --git a/src/IconAddColumnRightOutlinedFilled.tsx b/src/IconAddColumnRightOutlinedFilled.tsx new file mode 100644 index 000000000..31af990e6 --- /dev/null +++ b/src/IconAddColumnRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddColumnRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddColumnRightOutlinedFilled as default } diff --git a/src/IconAddColumnRightRoundedFilled.tsx b/src/IconAddColumnRightRoundedFilled.tsx new file mode 100644 index 000000000..5a97ce1ef --- /dev/null +++ b/src/IconAddColumnRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddColumnRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddColumnRightRoundedFilled as default } diff --git a/src/IconAddColumnRightSharpFilled.tsx b/src/IconAddColumnRightSharpFilled.tsx new file mode 100644 index 000000000..1dafd1e51 --- /dev/null +++ b/src/IconAddColumnRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddColumnRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddColumnRightSharpFilled as default } diff --git a/src/IconAddCommentOutlinedFilled.tsx b/src/IconAddCommentOutlinedFilled.tsx new file mode 100644 index 000000000..fbe8e4b06 --- /dev/null +++ b/src/IconAddCommentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCommentOutlinedFilled as default } diff --git a/src/IconAddCommentRoundedFilled.tsx b/src/IconAddCommentRoundedFilled.tsx new file mode 100644 index 000000000..a451d5e99 --- /dev/null +++ b/src/IconAddCommentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCommentRoundedFilled as default } diff --git a/src/IconAddCommentSharpFilled.tsx b/src/IconAddCommentSharpFilled.tsx new file mode 100644 index 000000000..d1d82a85a --- /dev/null +++ b/src/IconAddCommentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddCommentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddCommentSharpFilled as default } diff --git a/src/IconAddDiamondOutlinedFilled.tsx b/src/IconAddDiamondOutlinedFilled.tsx new file mode 100644 index 000000000..df3535e6b --- /dev/null +++ b/src/IconAddDiamondOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddDiamondOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddDiamondOutlinedFilled as default } diff --git a/src/IconAddDiamondRoundedFilled.tsx b/src/IconAddDiamondRoundedFilled.tsx new file mode 100644 index 000000000..137bc1100 --- /dev/null +++ b/src/IconAddDiamondRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddDiamondRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddDiamondRoundedFilled as default } diff --git a/src/IconAddDiamondSharpFilled.tsx b/src/IconAddDiamondSharpFilled.tsx new file mode 100644 index 000000000..12395f9d6 --- /dev/null +++ b/src/IconAddDiamondSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddDiamondSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddDiamondSharpFilled as default } diff --git a/src/IconAddHomeOutlinedFilled.tsx b/src/IconAddHomeOutlinedFilled.tsx new file mode 100644 index 000000000..cea162308 --- /dev/null +++ b/src/IconAddHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddHomeOutlinedFilled as default } diff --git a/src/IconAddHomeRoundedFilled.tsx b/src/IconAddHomeRoundedFilled.tsx new file mode 100644 index 000000000..34ef7c13c --- /dev/null +++ b/src/IconAddHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddHomeRoundedFilled as default } diff --git a/src/IconAddHomeSharpFilled.tsx b/src/IconAddHomeSharpFilled.tsx new file mode 100644 index 000000000..66a80db66 --- /dev/null +++ b/src/IconAddHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddHomeSharpFilled as default } diff --git a/src/IconAddHomeWorkOutlinedFilled.tsx b/src/IconAddHomeWorkOutlinedFilled.tsx new file mode 100644 index 000000000..21d619a02 --- /dev/null +++ b/src/IconAddHomeWorkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddHomeWorkOutlinedFilled as default } diff --git a/src/IconAddHomeWorkRoundedFilled.tsx b/src/IconAddHomeWorkRoundedFilled.tsx new file mode 100644 index 000000000..b48e25c87 --- /dev/null +++ b/src/IconAddHomeWorkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddHomeWorkRoundedFilled as default } diff --git a/src/IconAddHomeWorkSharpFilled.tsx b/src/IconAddHomeWorkSharpFilled.tsx new file mode 100644 index 000000000..3fd57ee29 --- /dev/null +++ b/src/IconAddHomeWorkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddHomeWorkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddHomeWorkSharpFilled as default } diff --git a/src/IconAddLinkOutlinedFilled.tsx b/src/IconAddLinkOutlinedFilled.tsx new file mode 100644 index 000000000..89f53c65c --- /dev/null +++ b/src/IconAddLinkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLinkOutlinedFilled as default } diff --git a/src/IconAddLinkRoundedFilled.tsx b/src/IconAddLinkRoundedFilled.tsx new file mode 100644 index 000000000..c8a9b65ed --- /dev/null +++ b/src/IconAddLinkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLinkRoundedFilled as default } diff --git a/src/IconAddLinkSharpFilled.tsx b/src/IconAddLinkSharpFilled.tsx new file mode 100644 index 000000000..0db8f64bd --- /dev/null +++ b/src/IconAddLinkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLinkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLinkSharpFilled as default } diff --git a/src/IconAddLocationAltOutlinedFilled.tsx b/src/IconAddLocationAltOutlinedFilled.tsx new file mode 100644 index 000000000..4f68d40d9 --- /dev/null +++ b/src/IconAddLocationAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLocationAltOutlinedFilled as default } diff --git a/src/IconAddLocationAltRoundedFilled.tsx b/src/IconAddLocationAltRoundedFilled.tsx new file mode 100644 index 000000000..19ec023b4 --- /dev/null +++ b/src/IconAddLocationAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLocationAltRoundedFilled as default } diff --git a/src/IconAddLocationAltSharpFilled.tsx b/src/IconAddLocationAltSharpFilled.tsx new file mode 100644 index 000000000..681cbec80 --- /dev/null +++ b/src/IconAddLocationAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLocationAltSharpFilled as default } diff --git a/src/IconAddLocationOutlinedFilled.tsx b/src/IconAddLocationOutlinedFilled.tsx new file mode 100644 index 000000000..30597b187 --- /dev/null +++ b/src/IconAddLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLocationOutlinedFilled as default } diff --git a/src/IconAddLocationRoundedFilled.tsx b/src/IconAddLocationRoundedFilled.tsx new file mode 100644 index 000000000..a799247fc --- /dev/null +++ b/src/IconAddLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLocationRoundedFilled as default } diff --git a/src/IconAddLocationSharpFilled.tsx b/src/IconAddLocationSharpFilled.tsx new file mode 100644 index 000000000..d1ab4d828 --- /dev/null +++ b/src/IconAddLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddLocationSharpFilled as default } diff --git a/src/IconAddModeratorOutlinedFilled.tsx b/src/IconAddModeratorOutlinedFilled.tsx new file mode 100644 index 000000000..d1a2531fd --- /dev/null +++ b/src/IconAddModeratorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddModeratorOutlinedFilled as default } diff --git a/src/IconAddModeratorRoundedFilled.tsx b/src/IconAddModeratorRoundedFilled.tsx new file mode 100644 index 000000000..5d98419eb --- /dev/null +++ b/src/IconAddModeratorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddModeratorRoundedFilled as default } diff --git a/src/IconAddModeratorSharpFilled.tsx b/src/IconAddModeratorSharpFilled.tsx new file mode 100644 index 000000000..7eeb4d400 --- /dev/null +++ b/src/IconAddModeratorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddModeratorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddModeratorSharpFilled as default } diff --git a/src/IconAddNotesOutlinedFilled.tsx b/src/IconAddNotesOutlinedFilled.tsx new file mode 100644 index 000000000..9070751b1 --- /dev/null +++ b/src/IconAddNotesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddNotesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddNotesOutlinedFilled as default } diff --git a/src/IconAddNotesRoundedFilled.tsx b/src/IconAddNotesRoundedFilled.tsx new file mode 100644 index 000000000..720d2c0d1 --- /dev/null +++ b/src/IconAddNotesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddNotesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddNotesRoundedFilled as default } diff --git a/src/IconAddNotesSharpFilled.tsx b/src/IconAddNotesSharpFilled.tsx new file mode 100644 index 000000000..2b228efcd --- /dev/null +++ b/src/IconAddNotesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddNotesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddNotesSharpFilled as default } diff --git a/src/IconAddOutlinedFilled.tsx b/src/IconAddOutlinedFilled.tsx new file mode 100644 index 000000000..7e329e276 --- /dev/null +++ b/src/IconAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddOutlinedFilled as default } diff --git a/src/IconAddPhotoAlternateOutlinedFilled.tsx b/src/IconAddPhotoAlternateOutlinedFilled.tsx new file mode 100644 index 000000000..fce4071f7 --- /dev/null +++ b/src/IconAddPhotoAlternateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddPhotoAlternateOutlinedFilled as default } diff --git a/src/IconAddPhotoAlternateRoundedFilled.tsx b/src/IconAddPhotoAlternateRoundedFilled.tsx new file mode 100644 index 000000000..93799dccc --- /dev/null +++ b/src/IconAddPhotoAlternateRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddPhotoAlternateRoundedFilled as default } diff --git a/src/IconAddPhotoAlternateSharpFilled.tsx b/src/IconAddPhotoAlternateSharpFilled.tsx new file mode 100644 index 000000000..d93b8fb11 --- /dev/null +++ b/src/IconAddPhotoAlternateSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddPhotoAlternateSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddPhotoAlternateSharpFilled as default } diff --git a/src/IconAddReactionOutlinedFilled.tsx b/src/IconAddReactionOutlinedFilled.tsx new file mode 100644 index 000000000..7ee020916 --- /dev/null +++ b/src/IconAddReactionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddReactionOutlinedFilled as default } diff --git a/src/IconAddReactionRoundedFilled.tsx b/src/IconAddReactionRoundedFilled.tsx new file mode 100644 index 000000000..4f9090851 --- /dev/null +++ b/src/IconAddReactionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddReactionRoundedFilled as default } diff --git a/src/IconAddReactionSharpFilled.tsx b/src/IconAddReactionSharpFilled.tsx new file mode 100644 index 000000000..91bce9a24 --- /dev/null +++ b/src/IconAddReactionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddReactionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddReactionSharpFilled as default } diff --git a/src/IconAddRoadOutlinedFilled.tsx b/src/IconAddRoadOutlinedFilled.tsx new file mode 100644 index 000000000..dcc123d53 --- /dev/null +++ b/src/IconAddRoadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRoadOutlinedFilled as default } diff --git a/src/IconAddRoadRoundedFilled.tsx b/src/IconAddRoadRoundedFilled.tsx new file mode 100644 index 000000000..15a861dcb --- /dev/null +++ b/src/IconAddRoadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRoadRoundedFilled as default } diff --git a/src/IconAddRoadSharpFilled.tsx b/src/IconAddRoadSharpFilled.tsx new file mode 100644 index 000000000..c9e2cc649 --- /dev/null +++ b/src/IconAddRoadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRoadSharpFilled as default } diff --git a/src/IconAddRoundedFilled.tsx b/src/IconAddRoundedFilled.tsx new file mode 100644 index 000000000..7c1127dcc --- /dev/null +++ b/src/IconAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRoundedFilled as default } diff --git a/src/IconAddRowAboveOutlinedFilled.tsx b/src/IconAddRowAboveOutlinedFilled.tsx new file mode 100644 index 000000000..1a8e96685 --- /dev/null +++ b/src/IconAddRowAboveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRowAboveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRowAboveOutlinedFilled as default } diff --git a/src/IconAddRowAboveRoundedFilled.tsx b/src/IconAddRowAboveRoundedFilled.tsx new file mode 100644 index 000000000..dae7c186f --- /dev/null +++ b/src/IconAddRowAboveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRowAboveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRowAboveRoundedFilled as default } diff --git a/src/IconAddRowAboveSharpFilled.tsx b/src/IconAddRowAboveSharpFilled.tsx new file mode 100644 index 000000000..11c52dbd7 --- /dev/null +++ b/src/IconAddRowAboveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRowAboveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRowAboveSharpFilled as default } diff --git a/src/IconAddRowBelowOutlinedFilled.tsx b/src/IconAddRowBelowOutlinedFilled.tsx new file mode 100644 index 000000000..2fce2c80a --- /dev/null +++ b/src/IconAddRowBelowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRowBelowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRowBelowOutlinedFilled as default } diff --git a/src/IconAddRowBelowRoundedFilled.tsx b/src/IconAddRowBelowRoundedFilled.tsx new file mode 100644 index 000000000..df8e43f10 --- /dev/null +++ b/src/IconAddRowBelowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRowBelowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRowBelowRoundedFilled as default } diff --git a/src/IconAddRowBelowSharpFilled.tsx b/src/IconAddRowBelowSharpFilled.tsx new file mode 100644 index 000000000..a7ec22fde --- /dev/null +++ b/src/IconAddRowBelowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddRowBelowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddRowBelowSharpFilled as default } diff --git a/src/IconAddSharpFilled.tsx b/src/IconAddSharpFilled.tsx new file mode 100644 index 000000000..35f3611ad --- /dev/null +++ b/src/IconAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddSharpFilled as default } diff --git a/src/IconAddShoppingCartOutlinedFilled.tsx b/src/IconAddShoppingCartOutlinedFilled.tsx new file mode 100644 index 000000000..39bd0189b --- /dev/null +++ b/src/IconAddShoppingCartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddShoppingCartOutlinedFilled as default } diff --git a/src/IconAddShoppingCartRoundedFilled.tsx b/src/IconAddShoppingCartRoundedFilled.tsx new file mode 100644 index 000000000..57cf7f1e5 --- /dev/null +++ b/src/IconAddShoppingCartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddShoppingCartRoundedFilled as default } diff --git a/src/IconAddShoppingCartSharpFilled.tsx b/src/IconAddShoppingCartSharpFilled.tsx new file mode 100644 index 000000000..da8cd9b7c --- /dev/null +++ b/src/IconAddShoppingCartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddShoppingCartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddShoppingCartSharpFilled as default } diff --git a/src/IconAddTaskOutlinedFilled.tsx b/src/IconAddTaskOutlinedFilled.tsx new file mode 100644 index 000000000..71c79af08 --- /dev/null +++ b/src/IconAddTaskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddTaskOutlinedFilled as default } diff --git a/src/IconAddTaskRoundedFilled.tsx b/src/IconAddTaskRoundedFilled.tsx new file mode 100644 index 000000000..a923a6bea --- /dev/null +++ b/src/IconAddTaskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddTaskRoundedFilled as default } diff --git a/src/IconAddTaskSharpFilled.tsx b/src/IconAddTaskSharpFilled.tsx new file mode 100644 index 000000000..3060c1d16 --- /dev/null +++ b/src/IconAddTaskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTaskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddTaskSharpFilled as default } diff --git a/src/IconAddToDriveOutlinedFilled.tsx b/src/IconAddToDriveOutlinedFilled.tsx new file mode 100644 index 000000000..3e6897aea --- /dev/null +++ b/src/IconAddToDriveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToDriveOutlinedFilled as default } diff --git a/src/IconAddToDriveRoundedFilled.tsx b/src/IconAddToDriveRoundedFilled.tsx new file mode 100644 index 000000000..efee288e9 --- /dev/null +++ b/src/IconAddToDriveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToDriveRoundedFilled as default } diff --git a/src/IconAddToDriveSharpFilled.tsx b/src/IconAddToDriveSharpFilled.tsx new file mode 100644 index 000000000..44d813e17 --- /dev/null +++ b/src/IconAddToDriveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToDriveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToDriveSharpFilled as default } diff --git a/src/IconAddToHomeScreenOutlinedFilled.tsx b/src/IconAddToHomeScreenOutlinedFilled.tsx new file mode 100644 index 000000000..5db1b13e0 --- /dev/null +++ b/src/IconAddToHomeScreenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToHomeScreenOutlinedFilled as default } diff --git a/src/IconAddToHomeScreenRoundedFilled.tsx b/src/IconAddToHomeScreenRoundedFilled.tsx new file mode 100644 index 000000000..3a59d8d21 --- /dev/null +++ b/src/IconAddToHomeScreenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToHomeScreenRoundedFilled as default } diff --git a/src/IconAddToHomeScreenSharpFilled.tsx b/src/IconAddToHomeScreenSharpFilled.tsx new file mode 100644 index 000000000..1113b8bb2 --- /dev/null +++ b/src/IconAddToHomeScreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToHomeScreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToHomeScreenSharpFilled as default } diff --git a/src/IconAddToPhotosOutlinedFilled.tsx b/src/IconAddToPhotosOutlinedFilled.tsx new file mode 100644 index 000000000..be588e767 --- /dev/null +++ b/src/IconAddToPhotosOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToPhotosOutlinedFilled as default } diff --git a/src/IconAddToPhotosRoundedFilled.tsx b/src/IconAddToPhotosRoundedFilled.tsx new file mode 100644 index 000000000..ec1f6e20f --- /dev/null +++ b/src/IconAddToPhotosRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToPhotosRoundedFilled as default } diff --git a/src/IconAddToPhotosSharpFilled.tsx b/src/IconAddToPhotosSharpFilled.tsx new file mode 100644 index 000000000..8d9b1d25a --- /dev/null +++ b/src/IconAddToPhotosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToPhotosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToPhotosSharpFilled as default } diff --git a/src/IconAddToQueueOutlinedFilled.tsx b/src/IconAddToQueueOutlinedFilled.tsx new file mode 100644 index 000000000..6d65254f7 --- /dev/null +++ b/src/IconAddToQueueOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToQueueOutlinedFilled as default } diff --git a/src/IconAddToQueueRoundedFilled.tsx b/src/IconAddToQueueRoundedFilled.tsx new file mode 100644 index 000000000..ae26054cd --- /dev/null +++ b/src/IconAddToQueueRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToQueueRoundedFilled as default } diff --git a/src/IconAddToQueueSharpFilled.tsx b/src/IconAddToQueueSharpFilled.tsx new file mode 100644 index 000000000..e400ec942 --- /dev/null +++ b/src/IconAddToQueueSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddToQueueSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddToQueueSharpFilled as default } diff --git a/src/IconAddTriangleOutlinedFilled.tsx b/src/IconAddTriangleOutlinedFilled.tsx new file mode 100644 index 000000000..949112b8a --- /dev/null +++ b/src/IconAddTriangleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTriangleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddTriangleOutlinedFilled as default } diff --git a/src/IconAddTriangleRoundedFilled.tsx b/src/IconAddTriangleRoundedFilled.tsx new file mode 100644 index 000000000..0925a2d2c --- /dev/null +++ b/src/IconAddTriangleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTriangleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddTriangleRoundedFilled as default } diff --git a/src/IconAddTriangleSharpFilled.tsx b/src/IconAddTriangleSharpFilled.tsx new file mode 100644 index 000000000..d1e36ba03 --- /dev/null +++ b/src/IconAddTriangleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAddTriangleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAddTriangleSharpFilled as default } diff --git a/src/IconAdfScannerOutlinedFilled.tsx b/src/IconAdfScannerOutlinedFilled.tsx new file mode 100644 index 000000000..56fed09fc --- /dev/null +++ b/src/IconAdfScannerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdfScannerOutlinedFilled as default } diff --git a/src/IconAdfScannerRoundedFilled.tsx b/src/IconAdfScannerRoundedFilled.tsx new file mode 100644 index 000000000..3984a64e2 --- /dev/null +++ b/src/IconAdfScannerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdfScannerRoundedFilled as default } diff --git a/src/IconAdfScannerSharpFilled.tsx b/src/IconAdfScannerSharpFilled.tsx new file mode 100644 index 000000000..94a47a49d --- /dev/null +++ b/src/IconAdfScannerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdfScannerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdfScannerSharpFilled as default } diff --git a/src/IconAdjustOutlinedFilled.tsx b/src/IconAdjustOutlinedFilled.tsx new file mode 100644 index 000000000..0e44caf12 --- /dev/null +++ b/src/IconAdjustOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdjustOutlinedFilled as default } diff --git a/src/IconAdjustRoundedFilled.tsx b/src/IconAdjustRoundedFilled.tsx new file mode 100644 index 000000000..3ee021ec8 --- /dev/null +++ b/src/IconAdjustRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdjustRoundedFilled as default } diff --git a/src/IconAdjustSharpFilled.tsx b/src/IconAdjustSharpFilled.tsx new file mode 100644 index 000000000..54e0d86af --- /dev/null +++ b/src/IconAdjustSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdjustSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdjustSharpFilled as default } diff --git a/src/IconAdminMedsOutlinedFilled.tsx b/src/IconAdminMedsOutlinedFilled.tsx new file mode 100644 index 000000000..a1264a02b --- /dev/null +++ b/src/IconAdminMedsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminMedsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdminMedsOutlinedFilled as default } diff --git a/src/IconAdminMedsRoundedFilled.tsx b/src/IconAdminMedsRoundedFilled.tsx new file mode 100644 index 000000000..33c0cb69e --- /dev/null +++ b/src/IconAdminMedsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminMedsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdminMedsRoundedFilled as default } diff --git a/src/IconAdminMedsSharpFilled.tsx b/src/IconAdminMedsSharpFilled.tsx new file mode 100644 index 000000000..a64c8c125 --- /dev/null +++ b/src/IconAdminMedsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminMedsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdminMedsSharpFilled as default } diff --git a/src/IconAdminPanelSettingsOutlinedFilled.tsx b/src/IconAdminPanelSettingsOutlinedFilled.tsx new file mode 100644 index 000000000..e8be3557d --- /dev/null +++ b/src/IconAdminPanelSettingsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdminPanelSettingsOutlinedFilled as default } diff --git a/src/IconAdminPanelSettingsRoundedFilled.tsx b/src/IconAdminPanelSettingsRoundedFilled.tsx new file mode 100644 index 000000000..a84e39d52 --- /dev/null +++ b/src/IconAdminPanelSettingsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdminPanelSettingsRoundedFilled as default } diff --git a/src/IconAdminPanelSettingsSharpFilled.tsx b/src/IconAdminPanelSettingsSharpFilled.tsx new file mode 100644 index 000000000..db4e7726f --- /dev/null +++ b/src/IconAdminPanelSettingsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdminPanelSettingsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAdminPanelSettingsSharpFilled as default } diff --git a/src/IconAdsClickOutlinedFilled.tsx b/src/IconAdsClickOutlinedFilled.tsx new file mode 100644 index 000000000..de157f0ac --- /dev/null +++ b/src/IconAdsClickOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdsClickOutlinedFilled as default } diff --git a/src/IconAdsClickRoundedFilled.tsx b/src/IconAdsClickRoundedFilled.tsx new file mode 100644 index 000000000..48fec4c95 --- /dev/null +++ b/src/IconAdsClickRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdsClickRoundedFilled as default } diff --git a/src/IconAdsClickSharpFilled.tsx b/src/IconAdsClickSharpFilled.tsx new file mode 100644 index 000000000..d48da33c3 --- /dev/null +++ b/src/IconAdsClickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAdsClickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAdsClickSharpFilled as default } diff --git a/src/IconAgenderOutlinedFilled.tsx b/src/IconAgenderOutlinedFilled.tsx new file mode 100644 index 000000000..91468ac8e --- /dev/null +++ b/src/IconAgenderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgenderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAgenderOutlinedFilled as default } diff --git a/src/IconAgenderRoundedFilled.tsx b/src/IconAgenderRoundedFilled.tsx new file mode 100644 index 000000000..c78de6126 --- /dev/null +++ b/src/IconAgenderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgenderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAgenderRoundedFilled as default } diff --git a/src/IconAgenderSharpFilled.tsx b/src/IconAgenderSharpFilled.tsx new file mode 100644 index 000000000..f4ddbbe9d --- /dev/null +++ b/src/IconAgenderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgenderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAgenderSharpFilled as default } diff --git a/src/IconAgricultureOutlinedFilled.tsx b/src/IconAgricultureOutlinedFilled.tsx new file mode 100644 index 000000000..e464678c7 --- /dev/null +++ b/src/IconAgricultureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAgricultureOutlinedFilled as default } diff --git a/src/IconAgricultureRoundedFilled.tsx b/src/IconAgricultureRoundedFilled.tsx new file mode 100644 index 000000000..7207f475f --- /dev/null +++ b/src/IconAgricultureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAgricultureRoundedFilled as default } diff --git a/src/IconAgricultureSharpFilled.tsx b/src/IconAgricultureSharpFilled.tsx new file mode 100644 index 000000000..e9c7c686a --- /dev/null +++ b/src/IconAgricultureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAgricultureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAgricultureSharpFilled as default } diff --git a/src/IconAirFreshenerOutlinedFilled.tsx b/src/IconAirFreshenerOutlinedFilled.tsx new file mode 100644 index 000000000..b48d8910a --- /dev/null +++ b/src/IconAirFreshenerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirFreshenerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirFreshenerOutlinedFilled as default } diff --git a/src/IconAirFreshenerRoundedFilled.tsx b/src/IconAirFreshenerRoundedFilled.tsx new file mode 100644 index 000000000..7ab0990c5 --- /dev/null +++ b/src/IconAirFreshenerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirFreshenerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirFreshenerRoundedFilled as default } diff --git a/src/IconAirFreshenerSharpFilled.tsx b/src/IconAirFreshenerSharpFilled.tsx new file mode 100644 index 000000000..1d13b32ec --- /dev/null +++ b/src/IconAirFreshenerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirFreshenerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirFreshenerSharpFilled as default } diff --git a/src/IconAirOutlinedFilled.tsx b/src/IconAirOutlinedFilled.tsx new file mode 100644 index 000000000..3f2dd9af2 --- /dev/null +++ b/src/IconAirOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirOutlinedFilled as default } diff --git a/src/IconAirPurifierGenOutlinedFilled.tsx b/src/IconAirPurifierGenOutlinedFilled.tsx new file mode 100644 index 000000000..d302cc5c2 --- /dev/null +++ b/src/IconAirPurifierGenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirPurifierGenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirPurifierGenOutlinedFilled as default } diff --git a/src/IconAirPurifierGenRoundedFilled.tsx b/src/IconAirPurifierGenRoundedFilled.tsx new file mode 100644 index 000000000..08c42312a --- /dev/null +++ b/src/IconAirPurifierGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirPurifierGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirPurifierGenRoundedFilled as default } diff --git a/src/IconAirPurifierGenSharpFilled.tsx b/src/IconAirPurifierGenSharpFilled.tsx new file mode 100644 index 000000000..32674fc73 --- /dev/null +++ b/src/IconAirPurifierGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirPurifierGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirPurifierGenSharpFilled as default } diff --git a/src/IconAirPurifierOutlinedFilled.tsx b/src/IconAirPurifierOutlinedFilled.tsx new file mode 100644 index 000000000..1c7fd6404 --- /dev/null +++ b/src/IconAirPurifierOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirPurifierOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirPurifierOutlinedFilled as default } diff --git a/src/IconAirPurifierRoundedFilled.tsx b/src/IconAirPurifierRoundedFilled.tsx new file mode 100644 index 000000000..241ed0dfc --- /dev/null +++ b/src/IconAirPurifierRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirPurifierRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirPurifierRoundedFilled as default } diff --git a/src/IconAirPurifierSharpFilled.tsx b/src/IconAirPurifierSharpFilled.tsx new file mode 100644 index 000000000..ba93fefb8 --- /dev/null +++ b/src/IconAirPurifierSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirPurifierSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirPurifierSharpFilled as default } diff --git a/src/IconAirRoundedFilled.tsx b/src/IconAirRoundedFilled.tsx new file mode 100644 index 000000000..0db4f0358 --- /dev/null +++ b/src/IconAirRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirRoundedFilled as default } diff --git a/src/IconAirSharpFilled.tsx b/src/IconAirSharpFilled.tsx new file mode 100644 index 000000000..c4f148503 --- /dev/null +++ b/src/IconAirSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirSharpFilled as default } diff --git a/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx b/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx new file mode 100644 index 000000000..7602c855d --- /dev/null +++ b/src/IconAirlineSeatFlatAngledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatFlatAngledOutlinedFilled as default } diff --git a/src/IconAirlineSeatFlatAngledRoundedFilled.tsx b/src/IconAirlineSeatFlatAngledRoundedFilled.tsx new file mode 100644 index 000000000..966704db1 --- /dev/null +++ b/src/IconAirlineSeatFlatAngledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatFlatAngledRoundedFilled as default } diff --git a/src/IconAirlineSeatFlatAngledSharpFilled.tsx b/src/IconAirlineSeatFlatAngledSharpFilled.tsx new file mode 100644 index 000000000..513f7b536 --- /dev/null +++ b/src/IconAirlineSeatFlatAngledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatAngledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatFlatAngledSharpFilled as default } diff --git a/src/IconAirlineSeatFlatOutlinedFilled.tsx b/src/IconAirlineSeatFlatOutlinedFilled.tsx new file mode 100644 index 000000000..e950f3145 --- /dev/null +++ b/src/IconAirlineSeatFlatOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatFlatOutlinedFilled as default } diff --git a/src/IconAirlineSeatFlatRoundedFilled.tsx b/src/IconAirlineSeatFlatRoundedFilled.tsx new file mode 100644 index 000000000..875fcfada --- /dev/null +++ b/src/IconAirlineSeatFlatRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatFlatRoundedFilled as default } diff --git a/src/IconAirlineSeatFlatSharpFilled.tsx b/src/IconAirlineSeatFlatSharpFilled.tsx new file mode 100644 index 000000000..c131d12f9 --- /dev/null +++ b/src/IconAirlineSeatFlatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatFlatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatFlatSharpFilled as default } diff --git a/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx b/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx new file mode 100644 index 000000000..5a65cbf94 --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatIndividualSuiteOutlinedFilled as default } diff --git a/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx b/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx new file mode 100644 index 000000000..467f79aa6 --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatIndividualSuiteRoundedFilled as default } diff --git a/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx b/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx new file mode 100644 index 000000000..1b0eacfaa --- /dev/null +++ b/src/IconAirlineSeatIndividualSuiteSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatIndividualSuiteSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatIndividualSuiteSharpFilled as default } diff --git a/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx b/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx new file mode 100644 index 000000000..c32f222ec --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomExtraOutlinedFilled as default } diff --git a/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx b/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx new file mode 100644 index 000000000..cd97df0f4 --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomExtraRoundedFilled as default } diff --git a/src/IconAirlineSeatLegroomExtraSharpFilled.tsx b/src/IconAirlineSeatLegroomExtraSharpFilled.tsx new file mode 100644 index 000000000..06ec01310 --- /dev/null +++ b/src/IconAirlineSeatLegroomExtraSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomExtraSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomExtraSharpFilled as default } diff --git a/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx b/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx new file mode 100644 index 000000000..206bcc08a --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomNormalOutlinedFilled as default } diff --git a/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx b/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx new file mode 100644 index 000000000..21d7b1650 --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomNormalRoundedFilled as default } diff --git a/src/IconAirlineSeatLegroomNormalSharpFilled.tsx b/src/IconAirlineSeatLegroomNormalSharpFilled.tsx new file mode 100644 index 000000000..f4fcfbbe6 --- /dev/null +++ b/src/IconAirlineSeatLegroomNormalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomNormalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomNormalSharpFilled as default } diff --git a/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx b/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx new file mode 100644 index 000000000..361a6dd9c --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomReducedOutlinedFilled as default } diff --git a/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx b/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx new file mode 100644 index 000000000..5fa7bd99b --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomReducedRoundedFilled as default } diff --git a/src/IconAirlineSeatLegroomReducedSharpFilled.tsx b/src/IconAirlineSeatLegroomReducedSharpFilled.tsx new file mode 100644 index 000000000..0650dace0 --- /dev/null +++ b/src/IconAirlineSeatLegroomReducedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatLegroomReducedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatLegroomReducedSharpFilled as default } diff --git a/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx b/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx new file mode 100644 index 000000000..6851c7ff9 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatReclineExtraOutlinedFilled as default } diff --git a/src/IconAirlineSeatReclineExtraRoundedFilled.tsx b/src/IconAirlineSeatReclineExtraRoundedFilled.tsx new file mode 100644 index 000000000..aa7f2d715 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatReclineExtraRoundedFilled as default } diff --git a/src/IconAirlineSeatReclineExtraSharpFilled.tsx b/src/IconAirlineSeatReclineExtraSharpFilled.tsx new file mode 100644 index 000000000..d44207fc0 --- /dev/null +++ b/src/IconAirlineSeatReclineExtraSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineExtraSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatReclineExtraSharpFilled as default } diff --git a/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx b/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx new file mode 100644 index 000000000..39006316b --- /dev/null +++ b/src/IconAirlineSeatReclineNormalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatReclineNormalOutlinedFilled as default } diff --git a/src/IconAirlineSeatReclineNormalRoundedFilled.tsx b/src/IconAirlineSeatReclineNormalRoundedFilled.tsx new file mode 100644 index 000000000..47f88353b --- /dev/null +++ b/src/IconAirlineSeatReclineNormalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatReclineNormalRoundedFilled as default } diff --git a/src/IconAirlineSeatReclineNormalSharpFilled.tsx b/src/IconAirlineSeatReclineNormalSharpFilled.tsx new file mode 100644 index 000000000..bf0eadecf --- /dev/null +++ b/src/IconAirlineSeatReclineNormalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineSeatReclineNormalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineSeatReclineNormalSharpFilled as default } diff --git a/src/IconAirlineStopsOutlinedFilled.tsx b/src/IconAirlineStopsOutlinedFilled.tsx new file mode 100644 index 000000000..603a3a84a --- /dev/null +++ b/src/IconAirlineStopsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineStopsOutlinedFilled as default } diff --git a/src/IconAirlineStopsRoundedFilled.tsx b/src/IconAirlineStopsRoundedFilled.tsx new file mode 100644 index 000000000..cdf4860e9 --- /dev/null +++ b/src/IconAirlineStopsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineStopsRoundedFilled as default } diff --git a/src/IconAirlineStopsSharpFilled.tsx b/src/IconAirlineStopsSharpFilled.tsx new file mode 100644 index 000000000..17c3db4ae --- /dev/null +++ b/src/IconAirlineStopsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlineStopsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlineStopsSharpFilled as default } diff --git a/src/IconAirlinesOutlinedFilled.tsx b/src/IconAirlinesOutlinedFilled.tsx new file mode 100644 index 000000000..3c57ee5d4 --- /dev/null +++ b/src/IconAirlinesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlinesOutlinedFilled as default } diff --git a/src/IconAirlinesRoundedFilled.tsx b/src/IconAirlinesRoundedFilled.tsx new file mode 100644 index 000000000..877a1c100 --- /dev/null +++ b/src/IconAirlinesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlinesRoundedFilled as default } diff --git a/src/IconAirlinesSharpFilled.tsx b/src/IconAirlinesSharpFilled.tsx new file mode 100644 index 000000000..cfe93268b --- /dev/null +++ b/src/IconAirlinesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirlinesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirlinesSharpFilled as default } diff --git a/src/IconAirplaneTicketOutlinedFilled.tsx b/src/IconAirplaneTicketOutlinedFilled.tsx new file mode 100644 index 000000000..2985d97f5 --- /dev/null +++ b/src/IconAirplaneTicketOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplaneTicketOutlinedFilled as default } diff --git a/src/IconAirplaneTicketRoundedFilled.tsx b/src/IconAirplaneTicketRoundedFilled.tsx new file mode 100644 index 000000000..8ed51cfab --- /dev/null +++ b/src/IconAirplaneTicketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplaneTicketRoundedFilled as default } diff --git a/src/IconAirplaneTicketSharpFilled.tsx b/src/IconAirplaneTicketSharpFilled.tsx new file mode 100644 index 000000000..a1712d25d --- /dev/null +++ b/src/IconAirplaneTicketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaneTicketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplaneTicketSharpFilled as default } diff --git a/src/IconAirplanemodeInactiveOutlinedFilled.tsx b/src/IconAirplanemodeInactiveOutlinedFilled.tsx new file mode 100644 index 000000000..e234ddf65 --- /dev/null +++ b/src/IconAirplanemodeInactiveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplanemodeInactiveOutlinedFilled as default } diff --git a/src/IconAirplanemodeInactiveRoundedFilled.tsx b/src/IconAirplanemodeInactiveRoundedFilled.tsx new file mode 100644 index 000000000..36e2902aa --- /dev/null +++ b/src/IconAirplanemodeInactiveRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplanemodeInactiveRoundedFilled as default } diff --git a/src/IconAirplanemodeInactiveSharpFilled.tsx b/src/IconAirplanemodeInactiveSharpFilled.tsx new file mode 100644 index 000000000..645fca603 --- /dev/null +++ b/src/IconAirplanemodeInactiveSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplanemodeInactiveSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplanemodeInactiveSharpFilled as default } diff --git a/src/IconAirplayOutlinedFilled.tsx b/src/IconAirplayOutlinedFilled.tsx new file mode 100644 index 000000000..300dcfeba --- /dev/null +++ b/src/IconAirplayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplayOutlinedFilled as default } diff --git a/src/IconAirplayRoundedFilled.tsx b/src/IconAirplayRoundedFilled.tsx new file mode 100644 index 000000000..c139fc9ac --- /dev/null +++ b/src/IconAirplayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplayRoundedFilled as default } diff --git a/src/IconAirplaySharpFilled.tsx b/src/IconAirplaySharpFilled.tsx new file mode 100644 index 000000000..8a49e7343 --- /dev/null +++ b/src/IconAirplaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirplaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirplaySharpFilled as default } diff --git a/src/IconAirportShuttleOutlinedFilled.tsx b/src/IconAirportShuttleOutlinedFilled.tsx new file mode 100644 index 000000000..28fc85286 --- /dev/null +++ b/src/IconAirportShuttleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAirportShuttleOutlinedFilled as default } diff --git a/src/IconAirportShuttleRoundedFilled.tsx b/src/IconAirportShuttleRoundedFilled.tsx new file mode 100644 index 000000000..13121fc58 --- /dev/null +++ b/src/IconAirportShuttleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirportShuttleRoundedFilled as default } diff --git a/src/IconAirportShuttleSharpFilled.tsx b/src/IconAirportShuttleSharpFilled.tsx new file mode 100644 index 000000000..afdf60b61 --- /dev/null +++ b/src/IconAirportShuttleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirportShuttleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirportShuttleSharpFilled as default } diff --git a/src/IconAirwareOutlinedFilled.tsx b/src/IconAirwareOutlinedFilled.tsx new file mode 100644 index 000000000..73c72a68d --- /dev/null +++ b/src/IconAirwareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirwareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirwareOutlinedFilled as default } diff --git a/src/IconAirwareRoundedFilled.tsx b/src/IconAirwareRoundedFilled.tsx new file mode 100644 index 000000000..ed180c257 --- /dev/null +++ b/src/IconAirwareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirwareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirwareRoundedFilled as default } diff --git a/src/IconAirwareSharpFilled.tsx b/src/IconAirwareSharpFilled.tsx new file mode 100644 index 000000000..f5ef8d969 --- /dev/null +++ b/src/IconAirwareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirwareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirwareSharpFilled as default } diff --git a/src/IconAirwaveOutlinedFilled.tsx b/src/IconAirwaveOutlinedFilled.tsx new file mode 100644 index 000000000..827ad6f74 --- /dev/null +++ b/src/IconAirwaveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirwaveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirwaveOutlinedFilled as default } diff --git a/src/IconAirwaveRoundedFilled.tsx b/src/IconAirwaveRoundedFilled.tsx new file mode 100644 index 000000000..e3bf8e43d --- /dev/null +++ b/src/IconAirwaveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirwaveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirwaveRoundedFilled as default } diff --git a/src/IconAirwaveSharpFilled.tsx b/src/IconAirwaveSharpFilled.tsx new file mode 100644 index 000000000..8459cd56d --- /dev/null +++ b/src/IconAirwaveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAirwaveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAirwaveSharpFilled as default } diff --git a/src/IconAlarmAddOutlinedFilled.tsx b/src/IconAlarmAddOutlinedFilled.tsx new file mode 100644 index 000000000..7d6d68a29 --- /dev/null +++ b/src/IconAlarmAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmAddOutlinedFilled as default } diff --git a/src/IconAlarmAddRoundedFilled.tsx b/src/IconAlarmAddRoundedFilled.tsx new file mode 100644 index 000000000..4689bd8ff --- /dev/null +++ b/src/IconAlarmAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmAddRoundedFilled as default } diff --git a/src/IconAlarmAddSharpFilled.tsx b/src/IconAlarmAddSharpFilled.tsx new file mode 100644 index 000000000..9a63f4746 --- /dev/null +++ b/src/IconAlarmAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmAddSharpFilled as default } diff --git a/src/IconAlarmOffOutlinedFilled.tsx b/src/IconAlarmOffOutlinedFilled.tsx new file mode 100644 index 000000000..d91163ff4 --- /dev/null +++ b/src/IconAlarmOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOffOutlinedFilled as default } diff --git a/src/IconAlarmOffRoundedFilled.tsx b/src/IconAlarmOffRoundedFilled.tsx new file mode 100644 index 000000000..2584dca56 --- /dev/null +++ b/src/IconAlarmOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOffRoundedFilled as default } diff --git a/src/IconAlarmOffSharpFilled.tsx b/src/IconAlarmOffSharpFilled.tsx new file mode 100644 index 000000000..ff4e08396 --- /dev/null +++ b/src/IconAlarmOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOffSharpFilled as default } diff --git a/src/IconAlarmOnOutlinedFilled.tsx b/src/IconAlarmOnOutlinedFilled.tsx new file mode 100644 index 000000000..65f2112dc --- /dev/null +++ b/src/IconAlarmOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOnOutlinedFilled as default } diff --git a/src/IconAlarmOnRoundedFilled.tsx b/src/IconAlarmOnRoundedFilled.tsx new file mode 100644 index 000000000..c99e6b259 --- /dev/null +++ b/src/IconAlarmOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOnRoundedFilled as default } diff --git a/src/IconAlarmOnSharpFilled.tsx b/src/IconAlarmOnSharpFilled.tsx new file mode 100644 index 000000000..520aeed08 --- /dev/null +++ b/src/IconAlarmOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOnSharpFilled as default } diff --git a/src/IconAlarmOutlinedFilled.tsx b/src/IconAlarmOutlinedFilled.tsx new file mode 100644 index 000000000..4e992e944 --- /dev/null +++ b/src/IconAlarmOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmOutlinedFilled as default } diff --git a/src/IconAlarmRoundedFilled.tsx b/src/IconAlarmRoundedFilled.tsx new file mode 100644 index 000000000..8a6f07231 --- /dev/null +++ b/src/IconAlarmRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmRoundedFilled as default } diff --git a/src/IconAlarmSharpFilled.tsx b/src/IconAlarmSharpFilled.tsx new file mode 100644 index 000000000..92d6dd33e --- /dev/null +++ b/src/IconAlarmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmSharpFilled as default } diff --git a/src/IconAlarmSmartWakeOutlinedFilled.tsx b/src/IconAlarmSmartWakeOutlinedFilled.tsx new file mode 100644 index 000000000..48652b387 --- /dev/null +++ b/src/IconAlarmSmartWakeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmSmartWakeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmSmartWakeOutlinedFilled as default } diff --git a/src/IconAlarmSmartWakeRoundedFilled.tsx b/src/IconAlarmSmartWakeRoundedFilled.tsx new file mode 100644 index 000000000..5352c2bc4 --- /dev/null +++ b/src/IconAlarmSmartWakeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmSmartWakeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmSmartWakeRoundedFilled as default } diff --git a/src/IconAlarmSmartWakeSharpFilled.tsx b/src/IconAlarmSmartWakeSharpFilled.tsx new file mode 100644 index 000000000..2fac5e4e0 --- /dev/null +++ b/src/IconAlarmSmartWakeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlarmSmartWakeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlarmSmartWakeSharpFilled as default } diff --git a/src/IconAlbumOutlinedFilled.tsx b/src/IconAlbumOutlinedFilled.tsx new file mode 100644 index 000000000..4743fd6ed --- /dev/null +++ b/src/IconAlbumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlbumOutlinedFilled as default } diff --git a/src/IconAlbumRoundedFilled.tsx b/src/IconAlbumRoundedFilled.tsx new file mode 100644 index 000000000..14218efe9 --- /dev/null +++ b/src/IconAlbumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlbumRoundedFilled as default } diff --git a/src/IconAlbumSharpFilled.tsx b/src/IconAlbumSharpFilled.tsx new file mode 100644 index 000000000..2c9a83793 --- /dev/null +++ b/src/IconAlbumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlbumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlbumSharpFilled as default } diff --git a/src/IconAlignCenterOutlinedFilled.tsx b/src/IconAlignCenterOutlinedFilled.tsx new file mode 100644 index 000000000..f5d1eb320 --- /dev/null +++ b/src/IconAlignCenterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignCenterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignCenterOutlinedFilled as default } diff --git a/src/IconAlignCenterRoundedFilled.tsx b/src/IconAlignCenterRoundedFilled.tsx new file mode 100644 index 000000000..569b35875 --- /dev/null +++ b/src/IconAlignCenterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignCenterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignCenterRoundedFilled as default } diff --git a/src/IconAlignCenterSharpFilled.tsx b/src/IconAlignCenterSharpFilled.tsx new file mode 100644 index 000000000..5bbc47a4b --- /dev/null +++ b/src/IconAlignCenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignCenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignCenterSharpFilled as default } diff --git a/src/IconAlignEndOutlinedFilled.tsx b/src/IconAlignEndOutlinedFilled.tsx new file mode 100644 index 000000000..5d6490587 --- /dev/null +++ b/src/IconAlignEndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignEndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignEndOutlinedFilled as default } diff --git a/src/IconAlignEndRoundedFilled.tsx b/src/IconAlignEndRoundedFilled.tsx new file mode 100644 index 000000000..4940bb11a --- /dev/null +++ b/src/IconAlignEndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignEndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignEndRoundedFilled as default } diff --git a/src/IconAlignEndSharpFilled.tsx b/src/IconAlignEndSharpFilled.tsx new file mode 100644 index 000000000..14de660cb --- /dev/null +++ b/src/IconAlignEndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignEndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignEndSharpFilled as default } diff --git a/src/IconAlignFlexCenterOutlinedFilled.tsx b/src/IconAlignFlexCenterOutlinedFilled.tsx new file mode 100644 index 000000000..fe0f0f703 --- /dev/null +++ b/src/IconAlignFlexCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexCenterOutlinedFilled as default } diff --git a/src/IconAlignFlexCenterRoundedFilled.tsx b/src/IconAlignFlexCenterRoundedFilled.tsx new file mode 100644 index 000000000..8e2743737 --- /dev/null +++ b/src/IconAlignFlexCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexCenterRoundedFilled as default } diff --git a/src/IconAlignFlexCenterSharpFilled.tsx b/src/IconAlignFlexCenterSharpFilled.tsx new file mode 100644 index 000000000..e505f48a5 --- /dev/null +++ b/src/IconAlignFlexCenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexCenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexCenterSharpFilled as default } diff --git a/src/IconAlignFlexEndOutlinedFilled.tsx b/src/IconAlignFlexEndOutlinedFilled.tsx new file mode 100644 index 000000000..3f122cf11 --- /dev/null +++ b/src/IconAlignFlexEndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexEndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexEndOutlinedFilled as default } diff --git a/src/IconAlignFlexEndRoundedFilled.tsx b/src/IconAlignFlexEndRoundedFilled.tsx new file mode 100644 index 000000000..77083deed --- /dev/null +++ b/src/IconAlignFlexEndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexEndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexEndRoundedFilled as default } diff --git a/src/IconAlignFlexEndSharpFilled.tsx b/src/IconAlignFlexEndSharpFilled.tsx new file mode 100644 index 000000000..0c66a7161 --- /dev/null +++ b/src/IconAlignFlexEndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexEndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexEndSharpFilled as default } diff --git a/src/IconAlignFlexStartOutlinedFilled.tsx b/src/IconAlignFlexStartOutlinedFilled.tsx new file mode 100644 index 000000000..0a3b08b14 --- /dev/null +++ b/src/IconAlignFlexStartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexStartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexStartOutlinedFilled as default } diff --git a/src/IconAlignFlexStartRoundedFilled.tsx b/src/IconAlignFlexStartRoundedFilled.tsx new file mode 100644 index 000000000..968968453 --- /dev/null +++ b/src/IconAlignFlexStartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexStartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexStartRoundedFilled as default } diff --git a/src/IconAlignFlexStartSharpFilled.tsx b/src/IconAlignFlexStartSharpFilled.tsx new file mode 100644 index 000000000..71255492d --- /dev/null +++ b/src/IconAlignFlexStartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignFlexStartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignFlexStartSharpFilled as default } diff --git a/src/IconAlignHorizontalCenterOutlinedFilled.tsx b/src/IconAlignHorizontalCenterOutlinedFilled.tsx new file mode 100644 index 000000000..53f0f137d --- /dev/null +++ b/src/IconAlignHorizontalCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalCenterOutlinedFilled as default } diff --git a/src/IconAlignHorizontalCenterRoundedFilled.tsx b/src/IconAlignHorizontalCenterRoundedFilled.tsx new file mode 100644 index 000000000..04a210350 --- /dev/null +++ b/src/IconAlignHorizontalCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalCenterRoundedFilled as default } diff --git a/src/IconAlignHorizontalCenterSharpFilled.tsx b/src/IconAlignHorizontalCenterSharpFilled.tsx new file mode 100644 index 000000000..7c291cec8 --- /dev/null +++ b/src/IconAlignHorizontalCenterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalCenterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalCenterSharpFilled as default } diff --git a/src/IconAlignHorizontalLeftOutlinedFilled.tsx b/src/IconAlignHorizontalLeftOutlinedFilled.tsx new file mode 100644 index 000000000..3241aea01 --- /dev/null +++ b/src/IconAlignHorizontalLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalLeftOutlinedFilled as default } diff --git a/src/IconAlignHorizontalLeftRoundedFilled.tsx b/src/IconAlignHorizontalLeftRoundedFilled.tsx new file mode 100644 index 000000000..7c8ddfaa2 --- /dev/null +++ b/src/IconAlignHorizontalLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalLeftRoundedFilled as default } diff --git a/src/IconAlignHorizontalLeftSharpFilled.tsx b/src/IconAlignHorizontalLeftSharpFilled.tsx new file mode 100644 index 000000000..95985562a --- /dev/null +++ b/src/IconAlignHorizontalLeftSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalLeftSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalLeftSharpFilled as default } diff --git a/src/IconAlignHorizontalRightOutlinedFilled.tsx b/src/IconAlignHorizontalRightOutlinedFilled.tsx new file mode 100644 index 000000000..fb959e290 --- /dev/null +++ b/src/IconAlignHorizontalRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalRightOutlinedFilled as default } diff --git a/src/IconAlignHorizontalRightRoundedFilled.tsx b/src/IconAlignHorizontalRightRoundedFilled.tsx new file mode 100644 index 000000000..8ad6c4858 --- /dev/null +++ b/src/IconAlignHorizontalRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalRightRoundedFilled as default } diff --git a/src/IconAlignHorizontalRightSharpFilled.tsx b/src/IconAlignHorizontalRightSharpFilled.tsx new file mode 100644 index 000000000..67c59cb65 --- /dev/null +++ b/src/IconAlignHorizontalRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignHorizontalRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignHorizontalRightSharpFilled as default } diff --git a/src/IconAlignItemsStretchOutlinedFilled.tsx b/src/IconAlignItemsStretchOutlinedFilled.tsx new file mode 100644 index 000000000..8305b5d66 --- /dev/null +++ b/src/IconAlignItemsStretchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignItemsStretchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignItemsStretchOutlinedFilled as default } diff --git a/src/IconAlignItemsStretchRoundedFilled.tsx b/src/IconAlignItemsStretchRoundedFilled.tsx new file mode 100644 index 000000000..1d51bb6bd --- /dev/null +++ b/src/IconAlignItemsStretchRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignItemsStretchRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignItemsStretchRoundedFilled as default } diff --git a/src/IconAlignItemsStretchSharpFilled.tsx b/src/IconAlignItemsStretchSharpFilled.tsx new file mode 100644 index 000000000..990677906 --- /dev/null +++ b/src/IconAlignItemsStretchSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignItemsStretchSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignItemsStretchSharpFilled as default } diff --git a/src/IconAlignJustifyCenterOutlinedFilled.tsx b/src/IconAlignJustifyCenterOutlinedFilled.tsx new file mode 100644 index 000000000..7d4bcda67 --- /dev/null +++ b/src/IconAlignJustifyCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyCenterOutlinedFilled as default } diff --git a/src/IconAlignJustifyCenterRoundedFilled.tsx b/src/IconAlignJustifyCenterRoundedFilled.tsx new file mode 100644 index 000000000..9a1702f06 --- /dev/null +++ b/src/IconAlignJustifyCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyCenterRoundedFilled as default } diff --git a/src/IconAlignJustifyCenterSharpFilled.tsx b/src/IconAlignJustifyCenterSharpFilled.tsx new file mode 100644 index 000000000..3632450d1 --- /dev/null +++ b/src/IconAlignJustifyCenterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyCenterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyCenterSharpFilled as default } diff --git a/src/IconAlignJustifyFlexEndOutlinedFilled.tsx b/src/IconAlignJustifyFlexEndOutlinedFilled.tsx new file mode 100644 index 000000000..3f9df7d15 --- /dev/null +++ b/src/IconAlignJustifyFlexEndOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyFlexEndOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyFlexEndOutlinedFilled as default } diff --git a/src/IconAlignJustifyFlexEndRoundedFilled.tsx b/src/IconAlignJustifyFlexEndRoundedFilled.tsx new file mode 100644 index 000000000..2715fe668 --- /dev/null +++ b/src/IconAlignJustifyFlexEndRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyFlexEndRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyFlexEndRoundedFilled as default } diff --git a/src/IconAlignJustifyFlexEndSharpFilled.tsx b/src/IconAlignJustifyFlexEndSharpFilled.tsx new file mode 100644 index 000000000..792d3067f --- /dev/null +++ b/src/IconAlignJustifyFlexEndSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyFlexEndSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyFlexEndSharpFilled as default } diff --git a/src/IconAlignJustifyFlexStartOutlinedFilled.tsx b/src/IconAlignJustifyFlexStartOutlinedFilled.tsx new file mode 100644 index 000000000..5dea38dc8 --- /dev/null +++ b/src/IconAlignJustifyFlexStartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyFlexStartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyFlexStartOutlinedFilled as default } diff --git a/src/IconAlignJustifyFlexStartRoundedFilled.tsx b/src/IconAlignJustifyFlexStartRoundedFilled.tsx new file mode 100644 index 000000000..e2780cc28 --- /dev/null +++ b/src/IconAlignJustifyFlexStartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyFlexStartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyFlexStartRoundedFilled as default } diff --git a/src/IconAlignJustifyFlexStartSharpFilled.tsx b/src/IconAlignJustifyFlexStartSharpFilled.tsx new file mode 100644 index 000000000..a9d5d4c07 --- /dev/null +++ b/src/IconAlignJustifyFlexStartSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyFlexStartSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyFlexStartSharpFilled as default } diff --git a/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx b/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx new file mode 100644 index 000000000..342bd03ef --- /dev/null +++ b/src/IconAlignJustifySpaceAroundOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceAroundOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceAroundOutlinedFilled as default } diff --git a/src/IconAlignJustifySpaceAroundRoundedFilled.tsx b/src/IconAlignJustifySpaceAroundRoundedFilled.tsx new file mode 100644 index 000000000..20ad72ddf --- /dev/null +++ b/src/IconAlignJustifySpaceAroundRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceAroundRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceAroundRoundedFilled as default } diff --git a/src/IconAlignJustifySpaceAroundSharpFilled.tsx b/src/IconAlignJustifySpaceAroundSharpFilled.tsx new file mode 100644 index 000000000..8c3af8027 --- /dev/null +++ b/src/IconAlignJustifySpaceAroundSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceAroundSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceAroundSharpFilled as default } diff --git a/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx b/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx new file mode 100644 index 000000000..a13ef7d23 --- /dev/null +++ b/src/IconAlignJustifySpaceBetweenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceBetweenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceBetweenOutlinedFilled as default } diff --git a/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx b/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx new file mode 100644 index 000000000..c2674200d --- /dev/null +++ b/src/IconAlignJustifySpaceBetweenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceBetweenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceBetweenRoundedFilled as default } diff --git a/src/IconAlignJustifySpaceBetweenSharpFilled.tsx b/src/IconAlignJustifySpaceBetweenSharpFilled.tsx new file mode 100644 index 000000000..b971e9e7c --- /dev/null +++ b/src/IconAlignJustifySpaceBetweenSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceBetweenSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceBetweenSharpFilled as default } diff --git a/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx b/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx new file mode 100644 index 000000000..abafee77e --- /dev/null +++ b/src/IconAlignJustifySpaceEvenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceEvenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceEvenOutlinedFilled as default } diff --git a/src/IconAlignJustifySpaceEvenRoundedFilled.tsx b/src/IconAlignJustifySpaceEvenRoundedFilled.tsx new file mode 100644 index 000000000..d21b2717a --- /dev/null +++ b/src/IconAlignJustifySpaceEvenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceEvenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceEvenRoundedFilled as default } diff --git a/src/IconAlignJustifySpaceEvenSharpFilled.tsx b/src/IconAlignJustifySpaceEvenSharpFilled.tsx new file mode 100644 index 000000000..55985ea00 --- /dev/null +++ b/src/IconAlignJustifySpaceEvenSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifySpaceEvenSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifySpaceEvenSharpFilled as default } diff --git a/src/IconAlignJustifyStretchOutlinedFilled.tsx b/src/IconAlignJustifyStretchOutlinedFilled.tsx new file mode 100644 index 000000000..991f2b4e6 --- /dev/null +++ b/src/IconAlignJustifyStretchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyStretchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyStretchOutlinedFilled as default } diff --git a/src/IconAlignJustifyStretchRoundedFilled.tsx b/src/IconAlignJustifyStretchRoundedFilled.tsx new file mode 100644 index 000000000..ccb5fa9a1 --- /dev/null +++ b/src/IconAlignJustifyStretchRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyStretchRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyStretchRoundedFilled as default } diff --git a/src/IconAlignJustifyStretchSharpFilled.tsx b/src/IconAlignJustifyStretchSharpFilled.tsx new file mode 100644 index 000000000..3f8415c36 --- /dev/null +++ b/src/IconAlignJustifyStretchSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignJustifyStretchSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignJustifyStretchSharpFilled as default } diff --git a/src/IconAlignSelfStretchOutlinedFilled.tsx b/src/IconAlignSelfStretchOutlinedFilled.tsx new file mode 100644 index 000000000..a0539fe5e --- /dev/null +++ b/src/IconAlignSelfStretchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSelfStretchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSelfStretchOutlinedFilled as default } diff --git a/src/IconAlignSelfStretchRoundedFilled.tsx b/src/IconAlignSelfStretchRoundedFilled.tsx new file mode 100644 index 000000000..a349b3b30 --- /dev/null +++ b/src/IconAlignSelfStretchRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSelfStretchRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSelfStretchRoundedFilled as default } diff --git a/src/IconAlignSelfStretchSharpFilled.tsx b/src/IconAlignSelfStretchSharpFilled.tsx new file mode 100644 index 000000000..b8524dd68 --- /dev/null +++ b/src/IconAlignSelfStretchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSelfStretchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSelfStretchSharpFilled as default } diff --git a/src/IconAlignSpaceAroundOutlinedFilled.tsx b/src/IconAlignSpaceAroundOutlinedFilled.tsx new file mode 100644 index 000000000..90a174776 --- /dev/null +++ b/src/IconAlignSpaceAroundOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceAroundOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceAroundOutlinedFilled as default } diff --git a/src/IconAlignSpaceAroundRoundedFilled.tsx b/src/IconAlignSpaceAroundRoundedFilled.tsx new file mode 100644 index 000000000..880f6e648 --- /dev/null +++ b/src/IconAlignSpaceAroundRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceAroundRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceAroundRoundedFilled as default } diff --git a/src/IconAlignSpaceAroundSharpFilled.tsx b/src/IconAlignSpaceAroundSharpFilled.tsx new file mode 100644 index 000000000..52b4764a3 --- /dev/null +++ b/src/IconAlignSpaceAroundSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceAroundSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceAroundSharpFilled as default } diff --git a/src/IconAlignSpaceBetweenOutlinedFilled.tsx b/src/IconAlignSpaceBetweenOutlinedFilled.tsx new file mode 100644 index 000000000..87f0f6879 --- /dev/null +++ b/src/IconAlignSpaceBetweenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceBetweenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceBetweenOutlinedFilled as default } diff --git a/src/IconAlignSpaceBetweenRoundedFilled.tsx b/src/IconAlignSpaceBetweenRoundedFilled.tsx new file mode 100644 index 000000000..e7a6051cf --- /dev/null +++ b/src/IconAlignSpaceBetweenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceBetweenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceBetweenRoundedFilled as default } diff --git a/src/IconAlignSpaceBetweenSharpFilled.tsx b/src/IconAlignSpaceBetweenSharpFilled.tsx new file mode 100644 index 000000000..2cb2c6f10 --- /dev/null +++ b/src/IconAlignSpaceBetweenSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceBetweenSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceBetweenSharpFilled as default } diff --git a/src/IconAlignSpaceEvenOutlinedFilled.tsx b/src/IconAlignSpaceEvenOutlinedFilled.tsx new file mode 100644 index 000000000..5d8ec932a --- /dev/null +++ b/src/IconAlignSpaceEvenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceEvenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceEvenOutlinedFilled as default } diff --git a/src/IconAlignSpaceEvenRoundedFilled.tsx b/src/IconAlignSpaceEvenRoundedFilled.tsx new file mode 100644 index 000000000..3df3e9d12 --- /dev/null +++ b/src/IconAlignSpaceEvenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceEvenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceEvenRoundedFilled as default } diff --git a/src/IconAlignSpaceEvenSharpFilled.tsx b/src/IconAlignSpaceEvenSharpFilled.tsx new file mode 100644 index 000000000..8ec27d80b --- /dev/null +++ b/src/IconAlignSpaceEvenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignSpaceEvenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignSpaceEvenSharpFilled as default } diff --git a/src/IconAlignStartOutlinedFilled.tsx b/src/IconAlignStartOutlinedFilled.tsx new file mode 100644 index 000000000..42848d59e --- /dev/null +++ b/src/IconAlignStartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignStartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignStartOutlinedFilled as default } diff --git a/src/IconAlignStartRoundedFilled.tsx b/src/IconAlignStartRoundedFilled.tsx new file mode 100644 index 000000000..a91843880 --- /dev/null +++ b/src/IconAlignStartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignStartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignStartRoundedFilled as default } diff --git a/src/IconAlignStartSharpFilled.tsx b/src/IconAlignStartSharpFilled.tsx new file mode 100644 index 000000000..01d4d0fcb --- /dev/null +++ b/src/IconAlignStartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignStartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignStartSharpFilled as default } diff --git a/src/IconAlignStretchOutlinedFilled.tsx b/src/IconAlignStretchOutlinedFilled.tsx new file mode 100644 index 000000000..d030715ab --- /dev/null +++ b/src/IconAlignStretchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignStretchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignStretchOutlinedFilled as default } diff --git a/src/IconAlignStretchRoundedFilled.tsx b/src/IconAlignStretchRoundedFilled.tsx new file mode 100644 index 000000000..fa312b9cc --- /dev/null +++ b/src/IconAlignStretchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignStretchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignStretchRoundedFilled as default } diff --git a/src/IconAlignStretchSharpFilled.tsx b/src/IconAlignStretchSharpFilled.tsx new file mode 100644 index 000000000..8d43158f3 --- /dev/null +++ b/src/IconAlignStretchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignStretchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignStretchSharpFilled as default } diff --git a/src/IconAlignVerticalBottomOutlinedFilled.tsx b/src/IconAlignVerticalBottomOutlinedFilled.tsx new file mode 100644 index 000000000..693654cc0 --- /dev/null +++ b/src/IconAlignVerticalBottomOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalBottomOutlinedFilled as default } diff --git a/src/IconAlignVerticalBottomRoundedFilled.tsx b/src/IconAlignVerticalBottomRoundedFilled.tsx new file mode 100644 index 000000000..4c031b230 --- /dev/null +++ b/src/IconAlignVerticalBottomRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalBottomRoundedFilled as default } diff --git a/src/IconAlignVerticalBottomSharpFilled.tsx b/src/IconAlignVerticalBottomSharpFilled.tsx new file mode 100644 index 000000000..b15533f7b --- /dev/null +++ b/src/IconAlignVerticalBottomSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalBottomSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalBottomSharpFilled as default } diff --git a/src/IconAlignVerticalCenterOutlinedFilled.tsx b/src/IconAlignVerticalCenterOutlinedFilled.tsx new file mode 100644 index 000000000..b2ac3fee6 --- /dev/null +++ b/src/IconAlignVerticalCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalCenterOutlinedFilled as default } diff --git a/src/IconAlignVerticalCenterRoundedFilled.tsx b/src/IconAlignVerticalCenterRoundedFilled.tsx new file mode 100644 index 000000000..5cc00c734 --- /dev/null +++ b/src/IconAlignVerticalCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalCenterRoundedFilled as default } diff --git a/src/IconAlignVerticalCenterSharpFilled.tsx b/src/IconAlignVerticalCenterSharpFilled.tsx new file mode 100644 index 000000000..aaf885a91 --- /dev/null +++ b/src/IconAlignVerticalCenterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalCenterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalCenterSharpFilled as default } diff --git a/src/IconAlignVerticalTopOutlinedFilled.tsx b/src/IconAlignVerticalTopOutlinedFilled.tsx new file mode 100644 index 000000000..17c4f6a3e --- /dev/null +++ b/src/IconAlignVerticalTopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalTopOutlinedFilled as default } diff --git a/src/IconAlignVerticalTopRoundedFilled.tsx b/src/IconAlignVerticalTopRoundedFilled.tsx new file mode 100644 index 000000000..21cf5ddb7 --- /dev/null +++ b/src/IconAlignVerticalTopRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalTopRoundedFilled as default } diff --git a/src/IconAlignVerticalTopSharpFilled.tsx b/src/IconAlignVerticalTopSharpFilled.tsx new file mode 100644 index 000000000..7c14e18bd --- /dev/null +++ b/src/IconAlignVerticalTopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlignVerticalTopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlignVerticalTopSharpFilled as default } diff --git a/src/IconAllInboxOutlinedFilled.tsx b/src/IconAllInboxOutlinedFilled.tsx new file mode 100644 index 000000000..9c8deb27b --- /dev/null +++ b/src/IconAllInboxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllInboxOutlinedFilled as default } diff --git a/src/IconAllInboxRoundedFilled.tsx b/src/IconAllInboxRoundedFilled.tsx new file mode 100644 index 000000000..a9518d49b --- /dev/null +++ b/src/IconAllInboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllInboxRoundedFilled as default } diff --git a/src/IconAllInboxSharpFilled.tsx b/src/IconAllInboxSharpFilled.tsx new file mode 100644 index 000000000..794ac0441 --- /dev/null +++ b/src/IconAllInboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllInboxSharpFilled as default } diff --git a/src/IconAllInclusiveOutlinedFilled.tsx b/src/IconAllInclusiveOutlinedFilled.tsx new file mode 100644 index 000000000..ce8c531dd --- /dev/null +++ b/src/IconAllInclusiveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllInclusiveOutlinedFilled as default } diff --git a/src/IconAllInclusiveRoundedFilled.tsx b/src/IconAllInclusiveRoundedFilled.tsx new file mode 100644 index 000000000..f2cfb3287 --- /dev/null +++ b/src/IconAllInclusiveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllInclusiveRoundedFilled as default } diff --git a/src/IconAllInclusiveSharpFilled.tsx b/src/IconAllInclusiveSharpFilled.tsx new file mode 100644 index 000000000..fd824c78b --- /dev/null +++ b/src/IconAllInclusiveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllInclusiveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllInclusiveSharpFilled as default } diff --git a/src/IconAllMatchOutlinedFilled.tsx b/src/IconAllMatchOutlinedFilled.tsx new file mode 100644 index 000000000..bc628058e --- /dev/null +++ b/src/IconAllMatchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllMatchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllMatchOutlinedFilled as default } diff --git a/src/IconAllMatchRoundedFilled.tsx b/src/IconAllMatchRoundedFilled.tsx new file mode 100644 index 000000000..4c9f4c5c5 --- /dev/null +++ b/src/IconAllMatchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllMatchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllMatchRoundedFilled as default } diff --git a/src/IconAllMatchSharpFilled.tsx b/src/IconAllMatchSharpFilled.tsx new file mode 100644 index 000000000..41c0babb7 --- /dev/null +++ b/src/IconAllMatchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllMatchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllMatchSharpFilled as default } diff --git a/src/IconAllOutOutlinedFilled.tsx b/src/IconAllOutOutlinedFilled.tsx new file mode 100644 index 000000000..6fe4592c8 --- /dev/null +++ b/src/IconAllOutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllOutOutlinedFilled as default } diff --git a/src/IconAllOutRoundedFilled.tsx b/src/IconAllOutRoundedFilled.tsx new file mode 100644 index 000000000..d6c3c2deb --- /dev/null +++ b/src/IconAllOutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllOutRoundedFilled as default } diff --git a/src/IconAllOutSharpFilled.tsx b/src/IconAllOutSharpFilled.tsx new file mode 100644 index 000000000..345a7fbe5 --- /dev/null +++ b/src/IconAllOutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllOutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllOutSharpFilled as default } diff --git a/src/IconAllergiesOutlinedFilled.tsx b/src/IconAllergiesOutlinedFilled.tsx new file mode 100644 index 000000000..52ee669a6 --- /dev/null +++ b/src/IconAllergiesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllergiesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllergiesOutlinedFilled as default } diff --git a/src/IconAllergiesRoundedFilled.tsx b/src/IconAllergiesRoundedFilled.tsx new file mode 100644 index 000000000..730907aef --- /dev/null +++ b/src/IconAllergiesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllergiesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllergiesRoundedFilled as default } diff --git a/src/IconAllergiesSharpFilled.tsx b/src/IconAllergiesSharpFilled.tsx new file mode 100644 index 000000000..a8543aad8 --- /dev/null +++ b/src/IconAllergiesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllergiesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllergiesSharpFilled as default } diff --git a/src/IconAllergyOutlinedFilled.tsx b/src/IconAllergyOutlinedFilled.tsx new file mode 100644 index 000000000..393d21ab8 --- /dev/null +++ b/src/IconAllergyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllergyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllergyOutlinedFilled as default } diff --git a/src/IconAllergyRoundedFilled.tsx b/src/IconAllergyRoundedFilled.tsx new file mode 100644 index 000000000..78a24f658 --- /dev/null +++ b/src/IconAllergyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllergyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllergyRoundedFilled as default } diff --git a/src/IconAllergySharpFilled.tsx b/src/IconAllergySharpFilled.tsx new file mode 100644 index 000000000..df5c85eac --- /dev/null +++ b/src/IconAllergySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAllergySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAllergySharpFilled as default } diff --git a/src/IconAltRouteOutlinedFilled.tsx b/src/IconAltRouteOutlinedFilled.tsx new file mode 100644 index 000000000..26a9a7907 --- /dev/null +++ b/src/IconAltRouteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAltRouteOutlinedFilled as default } diff --git a/src/IconAltRouteRoundedFilled.tsx b/src/IconAltRouteRoundedFilled.tsx new file mode 100644 index 000000000..267c8d09d --- /dev/null +++ b/src/IconAltRouteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAltRouteRoundedFilled as default } diff --git a/src/IconAltRouteSharpFilled.tsx b/src/IconAltRouteSharpFilled.tsx new file mode 100644 index 000000000..276110aaf --- /dev/null +++ b/src/IconAltRouteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltRouteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAltRouteSharpFilled as default } diff --git a/src/IconAlternateEmailOutlinedFilled.tsx b/src/IconAlternateEmailOutlinedFilled.tsx new file mode 100644 index 000000000..dc0a899ed --- /dev/null +++ b/src/IconAlternateEmailOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAlternateEmailOutlinedFilled as default } diff --git a/src/IconAlternateEmailRoundedFilled.tsx b/src/IconAlternateEmailRoundedFilled.tsx new file mode 100644 index 000000000..f9c464b98 --- /dev/null +++ b/src/IconAlternateEmailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlternateEmailRoundedFilled as default } diff --git a/src/IconAlternateEmailSharpFilled.tsx b/src/IconAlternateEmailSharpFilled.tsx new file mode 100644 index 000000000..e0bfa59e1 --- /dev/null +++ b/src/IconAlternateEmailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAlternateEmailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAlternateEmailSharpFilled as default } diff --git a/src/IconAltitudeOutlinedFilled.tsx b/src/IconAltitudeOutlinedFilled.tsx new file mode 100644 index 000000000..8fec9d002 --- /dev/null +++ b/src/IconAltitudeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltitudeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAltitudeOutlinedFilled as default } diff --git a/src/IconAltitudeRoundedFilled.tsx b/src/IconAltitudeRoundedFilled.tsx new file mode 100644 index 000000000..7abd67984 --- /dev/null +++ b/src/IconAltitudeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltitudeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAltitudeRoundedFilled as default } diff --git a/src/IconAltitudeSharpFilled.tsx b/src/IconAltitudeSharpFilled.tsx new file mode 100644 index 000000000..7090ac48c --- /dev/null +++ b/src/IconAltitudeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAltitudeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAltitudeSharpFilled as default } diff --git a/src/IconAmbulanceOutlinedFilled.tsx b/src/IconAmbulanceOutlinedFilled.tsx new file mode 100644 index 000000000..8a5c82087 --- /dev/null +++ b/src/IconAmbulanceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmbulanceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmbulanceOutlinedFilled as default } diff --git a/src/IconAmbulanceRoundedFilled.tsx b/src/IconAmbulanceRoundedFilled.tsx new file mode 100644 index 000000000..aabf9587e --- /dev/null +++ b/src/IconAmbulanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmbulanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmbulanceRoundedFilled as default } diff --git a/src/IconAmbulanceSharpFilled.tsx b/src/IconAmbulanceSharpFilled.tsx new file mode 100644 index 000000000..150f0bae9 --- /dev/null +++ b/src/IconAmbulanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmbulanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmbulanceSharpFilled as default } diff --git a/src/IconAmendOutlinedFilled.tsx b/src/IconAmendOutlinedFilled.tsx new file mode 100644 index 000000000..bff6960b3 --- /dev/null +++ b/src/IconAmendOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmendOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmendOutlinedFilled as default } diff --git a/src/IconAmendRoundedFilled.tsx b/src/IconAmendRoundedFilled.tsx new file mode 100644 index 000000000..6810b931e --- /dev/null +++ b/src/IconAmendRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmendRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmendRoundedFilled as default } diff --git a/src/IconAmendSharpFilled.tsx b/src/IconAmendSharpFilled.tsx new file mode 100644 index 000000000..6ea325c23 --- /dev/null +++ b/src/IconAmendSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmendSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmendSharpFilled as default } diff --git a/src/IconAmpStoriesOutlinedFilled.tsx b/src/IconAmpStoriesOutlinedFilled.tsx new file mode 100644 index 000000000..29d45ba7f --- /dev/null +++ b/src/IconAmpStoriesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmpStoriesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmpStoriesOutlinedFilled as default } diff --git a/src/IconAmpStoriesRoundedFilled.tsx b/src/IconAmpStoriesRoundedFilled.tsx new file mode 100644 index 000000000..bc1eaa21b --- /dev/null +++ b/src/IconAmpStoriesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmpStoriesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmpStoriesRoundedFilled as default } diff --git a/src/IconAmpStoriesSharpFilled.tsx b/src/IconAmpStoriesSharpFilled.tsx new file mode 100644 index 000000000..6406c9265 --- /dev/null +++ b/src/IconAmpStoriesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAmpStoriesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAmpStoriesSharpFilled as default } diff --git a/src/IconAnalyticsOutlinedFilled.tsx b/src/IconAnalyticsOutlinedFilled.tsx new file mode 100644 index 000000000..8ebd682b3 --- /dev/null +++ b/src/IconAnalyticsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnalyticsOutlinedFilled as default } diff --git a/src/IconAnalyticsRoundedFilled.tsx b/src/IconAnalyticsRoundedFilled.tsx new file mode 100644 index 000000000..109fdbe4b --- /dev/null +++ b/src/IconAnalyticsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnalyticsRoundedFilled as default } diff --git a/src/IconAnalyticsSharpFilled.tsx b/src/IconAnalyticsSharpFilled.tsx new file mode 100644 index 000000000..312b55481 --- /dev/null +++ b/src/IconAnalyticsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnalyticsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnalyticsSharpFilled as default } diff --git a/src/IconAnchorOutlinedFilled.tsx b/src/IconAnchorOutlinedFilled.tsx new file mode 100644 index 000000000..d901e2a59 --- /dev/null +++ b/src/IconAnchorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnchorOutlinedFilled as default } diff --git a/src/IconAnchorRoundedFilled.tsx b/src/IconAnchorRoundedFilled.tsx new file mode 100644 index 000000000..8d8312755 --- /dev/null +++ b/src/IconAnchorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnchorRoundedFilled as default } diff --git a/src/IconAnchorSharpFilled.tsx b/src/IconAnchorSharpFilled.tsx new file mode 100644 index 000000000..576bf2193 --- /dev/null +++ b/src/IconAnchorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnchorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnchorSharpFilled as default } diff --git a/src/IconAndroidOutlinedFilled.tsx b/src/IconAndroidOutlinedFilled.tsx new file mode 100644 index 000000000..4cfe0148c --- /dev/null +++ b/src/IconAndroidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAndroidOutlinedFilled as default } diff --git a/src/IconAndroidRoundedFilled.tsx b/src/IconAndroidRoundedFilled.tsx new file mode 100644 index 000000000..106c490d2 --- /dev/null +++ b/src/IconAndroidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAndroidRoundedFilled as default } diff --git a/src/IconAndroidSharpFilled.tsx b/src/IconAndroidSharpFilled.tsx new file mode 100644 index 000000000..1286ab9f6 --- /dev/null +++ b/src/IconAndroidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAndroidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAndroidSharpFilled as default } diff --git a/src/IconAnimatedImagesOutlinedFilled.tsx b/src/IconAnimatedImagesOutlinedFilled.tsx new file mode 100644 index 000000000..a31c91c89 --- /dev/null +++ b/src/IconAnimatedImagesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimatedImagesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAnimatedImagesOutlinedFilled as default } diff --git a/src/IconAnimatedImagesRoundedFilled.tsx b/src/IconAnimatedImagesRoundedFilled.tsx new file mode 100644 index 000000000..e198109a0 --- /dev/null +++ b/src/IconAnimatedImagesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimatedImagesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnimatedImagesRoundedFilled as default } diff --git a/src/IconAnimatedImagesSharpFilled.tsx b/src/IconAnimatedImagesSharpFilled.tsx new file mode 100644 index 000000000..682c81f10 --- /dev/null +++ b/src/IconAnimatedImagesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimatedImagesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnimatedImagesSharpFilled as default } diff --git a/src/IconAnimationOutlinedFilled.tsx b/src/IconAnimationOutlinedFilled.tsx new file mode 100644 index 000000000..dfa00fe19 --- /dev/null +++ b/src/IconAnimationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnimationOutlinedFilled as default } diff --git a/src/IconAnimationRoundedFilled.tsx b/src/IconAnimationRoundedFilled.tsx new file mode 100644 index 000000000..e03fa24e6 --- /dev/null +++ b/src/IconAnimationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnimationRoundedFilled as default } diff --git a/src/IconAnimationSharpFilled.tsx b/src/IconAnimationSharpFilled.tsx new file mode 100644 index 000000000..337fd3cc8 --- /dev/null +++ b/src/IconAnimationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAnimationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAnimationSharpFilled as default } diff --git a/src/IconAodOutlinedFilled.tsx b/src/IconAodOutlinedFilled.tsx new file mode 100644 index 000000000..e57dc0cda --- /dev/null +++ b/src/IconAodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodOutlinedFilled as default } diff --git a/src/IconAodRoundedFilled.tsx b/src/IconAodRoundedFilled.tsx new file mode 100644 index 000000000..6d4b65576 --- /dev/null +++ b/src/IconAodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodRoundedFilled as default } diff --git a/src/IconAodSharpFilled.tsx b/src/IconAodSharpFilled.tsx new file mode 100644 index 000000000..c4a8764d0 --- /dev/null +++ b/src/IconAodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodSharpFilled as default } diff --git a/src/IconAodTabletOutlinedFilled.tsx b/src/IconAodTabletOutlinedFilled.tsx new file mode 100644 index 000000000..9fcc94a68 --- /dev/null +++ b/src/IconAodTabletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodTabletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodTabletOutlinedFilled as default } diff --git a/src/IconAodTabletRoundedFilled.tsx b/src/IconAodTabletRoundedFilled.tsx new file mode 100644 index 000000000..eeb1d1c8a --- /dev/null +++ b/src/IconAodTabletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodTabletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodTabletRoundedFilled as default } diff --git a/src/IconAodTabletSharpFilled.tsx b/src/IconAodTabletSharpFilled.tsx new file mode 100644 index 000000000..b989cd96f --- /dev/null +++ b/src/IconAodTabletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodTabletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodTabletSharpFilled as default } diff --git a/src/IconAodWatchOutlinedFilled.tsx b/src/IconAodWatchOutlinedFilled.tsx new file mode 100644 index 000000000..c668e7903 --- /dev/null +++ b/src/IconAodWatchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodWatchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodWatchOutlinedFilled as default } diff --git a/src/IconAodWatchRoundedFilled.tsx b/src/IconAodWatchRoundedFilled.tsx new file mode 100644 index 000000000..990606fa3 --- /dev/null +++ b/src/IconAodWatchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodWatchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodWatchRoundedFilled as default } diff --git a/src/IconAodWatchSharpFilled.tsx b/src/IconAodWatchSharpFilled.tsx new file mode 100644 index 000000000..8a60e9321 --- /dev/null +++ b/src/IconAodWatchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAodWatchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAodWatchSharpFilled as default } diff --git a/src/IconApartmentOutlinedFilled.tsx b/src/IconApartmentOutlinedFilled.tsx new file mode 100644 index 000000000..1b206a1f0 --- /dev/null +++ b/src/IconApartmentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApartmentOutlinedFilled as default } diff --git a/src/IconApartmentRoundedFilled.tsx b/src/IconApartmentRoundedFilled.tsx new file mode 100644 index 000000000..a42bcada1 --- /dev/null +++ b/src/IconApartmentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApartmentRoundedFilled as default } diff --git a/src/IconApartmentSharpFilled.tsx b/src/IconApartmentSharpFilled.tsx new file mode 100644 index 000000000..1721bf0cb --- /dev/null +++ b/src/IconApartmentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApartmentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApartmentSharpFilled as default } diff --git a/src/IconApiOutlinedFilled.tsx b/src/IconApiOutlinedFilled.tsx new file mode 100644 index 000000000..b48b6f928 --- /dev/null +++ b/src/IconApiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApiOutlinedFilled as default } diff --git a/src/IconApiRoundedFilled.tsx b/src/IconApiRoundedFilled.tsx new file mode 100644 index 000000000..183d9d7ac --- /dev/null +++ b/src/IconApiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApiRoundedFilled as default } diff --git a/src/IconApiSharpFilled.tsx b/src/IconApiSharpFilled.tsx new file mode 100644 index 000000000..327e2c252 --- /dev/null +++ b/src/IconApiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApiSharpFilled as default } diff --git a/src/IconApkDocumentOutlinedFilled.tsx b/src/IconApkDocumentOutlinedFilled.tsx new file mode 100644 index 000000000..c11c1fbc6 --- /dev/null +++ b/src/IconApkDocumentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApkDocumentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApkDocumentOutlinedFilled as default } diff --git a/src/IconApkDocumentRoundedFilled.tsx b/src/IconApkDocumentRoundedFilled.tsx new file mode 100644 index 000000000..6d069d1ea --- /dev/null +++ b/src/IconApkDocumentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApkDocumentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApkDocumentRoundedFilled as default } diff --git a/src/IconApkDocumentSharpFilled.tsx b/src/IconApkDocumentSharpFilled.tsx new file mode 100644 index 000000000..9fc7c37e2 --- /dev/null +++ b/src/IconApkDocumentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApkDocumentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApkDocumentSharpFilled as default } diff --git a/src/IconApkInstallOutlinedFilled.tsx b/src/IconApkInstallOutlinedFilled.tsx new file mode 100644 index 000000000..b60650fe4 --- /dev/null +++ b/src/IconApkInstallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApkInstallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApkInstallOutlinedFilled as default } diff --git a/src/IconApkInstallRoundedFilled.tsx b/src/IconApkInstallRoundedFilled.tsx new file mode 100644 index 000000000..793c6ed90 --- /dev/null +++ b/src/IconApkInstallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApkInstallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApkInstallRoundedFilled as default } diff --git a/src/IconApkInstallSharpFilled.tsx b/src/IconApkInstallSharpFilled.tsx new file mode 100644 index 000000000..0eb249100 --- /dev/null +++ b/src/IconApkInstallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApkInstallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApkInstallSharpFilled as default } diff --git a/src/IconAppBadgingOutlinedFilled.tsx b/src/IconAppBadgingOutlinedFilled.tsx new file mode 100644 index 000000000..c748eaef5 --- /dev/null +++ b/src/IconAppBadgingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBadgingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppBadgingOutlinedFilled as default } diff --git a/src/IconAppBadgingRoundedFilled.tsx b/src/IconAppBadgingRoundedFilled.tsx new file mode 100644 index 000000000..7c5b022d3 --- /dev/null +++ b/src/IconAppBadgingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBadgingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppBadgingRoundedFilled as default } diff --git a/src/IconAppBadgingSharpFilled.tsx b/src/IconAppBadgingSharpFilled.tsx new file mode 100644 index 000000000..4be37c129 --- /dev/null +++ b/src/IconAppBadgingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBadgingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppBadgingSharpFilled as default } diff --git a/src/IconAppBlockingOutlinedFilled.tsx b/src/IconAppBlockingOutlinedFilled.tsx new file mode 100644 index 000000000..4b82e21e8 --- /dev/null +++ b/src/IconAppBlockingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppBlockingOutlinedFilled as default } diff --git a/src/IconAppBlockingRoundedFilled.tsx b/src/IconAppBlockingRoundedFilled.tsx new file mode 100644 index 000000000..f571721d2 --- /dev/null +++ b/src/IconAppBlockingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppBlockingRoundedFilled as default } diff --git a/src/IconAppBlockingSharpFilled.tsx b/src/IconAppBlockingSharpFilled.tsx new file mode 100644 index 000000000..a425a76ee --- /dev/null +++ b/src/IconAppBlockingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppBlockingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppBlockingSharpFilled as default } diff --git a/src/IconAppPromoOutlinedFilled.tsx b/src/IconAppPromoOutlinedFilled.tsx new file mode 100644 index 000000000..f625ba88f --- /dev/null +++ b/src/IconAppPromoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppPromoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppPromoOutlinedFilled as default } diff --git a/src/IconAppPromoRoundedFilled.tsx b/src/IconAppPromoRoundedFilled.tsx new file mode 100644 index 000000000..2295210a3 --- /dev/null +++ b/src/IconAppPromoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppPromoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppPromoRoundedFilled as default } diff --git a/src/IconAppPromoSharpFilled.tsx b/src/IconAppPromoSharpFilled.tsx new file mode 100644 index 000000000..3f48a371c --- /dev/null +++ b/src/IconAppPromoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppPromoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppPromoSharpFilled as default } diff --git a/src/IconAppRegistrationOutlinedFilled.tsx b/src/IconAppRegistrationOutlinedFilled.tsx new file mode 100644 index 000000000..4b1c698ee --- /dev/null +++ b/src/IconAppRegistrationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAppRegistrationOutlinedFilled as default } diff --git a/src/IconAppRegistrationRoundedFilled.tsx b/src/IconAppRegistrationRoundedFilled.tsx new file mode 100644 index 000000000..a05c4828c --- /dev/null +++ b/src/IconAppRegistrationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAppRegistrationRoundedFilled as default } diff --git a/src/IconAppRegistrationSharpFilled.tsx b/src/IconAppRegistrationSharpFilled.tsx new file mode 100644 index 000000000..8c0546e59 --- /dev/null +++ b/src/IconAppRegistrationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppRegistrationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppRegistrationSharpFilled as default } diff --git a/src/IconAppShortcutOutlinedFilled.tsx b/src/IconAppShortcutOutlinedFilled.tsx new file mode 100644 index 000000000..fefbae505 --- /dev/null +++ b/src/IconAppShortcutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppShortcutOutlinedFilled as default } diff --git a/src/IconAppShortcutRoundedFilled.tsx b/src/IconAppShortcutRoundedFilled.tsx new file mode 100644 index 000000000..aaada6b34 --- /dev/null +++ b/src/IconAppShortcutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppShortcutRoundedFilled as default } diff --git a/src/IconAppShortcutSharpFilled.tsx b/src/IconAppShortcutSharpFilled.tsx new file mode 100644 index 000000000..3f0ea52dd --- /dev/null +++ b/src/IconAppShortcutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppShortcutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppShortcutSharpFilled as default } diff --git a/src/IconApparelOutlinedFilled.tsx b/src/IconApparelOutlinedFilled.tsx new file mode 100644 index 000000000..f14e2f904 --- /dev/null +++ b/src/IconApparelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApparelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApparelOutlinedFilled as default } diff --git a/src/IconApparelRoundedFilled.tsx b/src/IconApparelRoundedFilled.tsx new file mode 100644 index 000000000..ae539b1d1 --- /dev/null +++ b/src/IconApparelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApparelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApparelRoundedFilled as default } diff --git a/src/IconApparelSharpFilled.tsx b/src/IconApparelSharpFilled.tsx new file mode 100644 index 000000000..bd12087e8 --- /dev/null +++ b/src/IconApparelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApparelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApparelSharpFilled as default } diff --git a/src/IconApprovalDelegationOutlinedFilled.tsx b/src/IconApprovalDelegationOutlinedFilled.tsx new file mode 100644 index 000000000..309581622 --- /dev/null +++ b/src/IconApprovalDelegationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalDelegationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconApprovalDelegationOutlinedFilled as default } diff --git a/src/IconApprovalDelegationRoundedFilled.tsx b/src/IconApprovalDelegationRoundedFilled.tsx new file mode 100644 index 000000000..19cd090fa --- /dev/null +++ b/src/IconApprovalDelegationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalDelegationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconApprovalDelegationRoundedFilled as default } diff --git a/src/IconApprovalDelegationSharpFilled.tsx b/src/IconApprovalDelegationSharpFilled.tsx new file mode 100644 index 000000000..3f7bd0584 --- /dev/null +++ b/src/IconApprovalDelegationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalDelegationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconApprovalDelegationSharpFilled as default } diff --git a/src/IconApprovalOutlinedFilled.tsx b/src/IconApprovalOutlinedFilled.tsx new file mode 100644 index 000000000..aa1d819ed --- /dev/null +++ b/src/IconApprovalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApprovalOutlinedFilled as default } diff --git a/src/IconApprovalRoundedFilled.tsx b/src/IconApprovalRoundedFilled.tsx new file mode 100644 index 000000000..50261d2d0 --- /dev/null +++ b/src/IconApprovalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApprovalRoundedFilled as default } diff --git a/src/IconApprovalSharpFilled.tsx b/src/IconApprovalSharpFilled.tsx new file mode 100644 index 000000000..1d8d65edc --- /dev/null +++ b/src/IconApprovalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconApprovalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconApprovalSharpFilled as default } diff --git a/src/IconAppsOutageOutlinedFilled.tsx b/src/IconAppsOutageOutlinedFilled.tsx new file mode 100644 index 000000000..36466c25f --- /dev/null +++ b/src/IconAppsOutageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppsOutageOutlinedFilled as default } diff --git a/src/IconAppsOutageRoundedFilled.tsx b/src/IconAppsOutageRoundedFilled.tsx new file mode 100644 index 000000000..c8093c24e --- /dev/null +++ b/src/IconAppsOutageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppsOutageRoundedFilled as default } diff --git a/src/IconAppsOutageSharpFilled.tsx b/src/IconAppsOutageSharpFilled.tsx new file mode 100644 index 000000000..c62398c8b --- /dev/null +++ b/src/IconAppsOutageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppsOutageSharpFilled as default } diff --git a/src/IconAppsOutlinedFilled.tsx b/src/IconAppsOutlinedFilled.tsx new file mode 100644 index 000000000..96f369396 --- /dev/null +++ b/src/IconAppsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppsOutlinedFilled as default } diff --git a/src/IconAppsRoundedFilled.tsx b/src/IconAppsRoundedFilled.tsx new file mode 100644 index 000000000..76a109cb5 --- /dev/null +++ b/src/IconAppsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppsRoundedFilled as default } diff --git a/src/IconAppsSharpFilled.tsx b/src/IconAppsSharpFilled.tsx new file mode 100644 index 000000000..2fb780305 --- /dev/null +++ b/src/IconAppsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAppsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAppsSharpFilled as default } diff --git a/src/IconAqIndoorOutlinedFilled.tsx b/src/IconAqIndoorOutlinedFilled.tsx new file mode 100644 index 000000000..86b80d649 --- /dev/null +++ b/src/IconAqIndoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAqIndoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAqIndoorOutlinedFilled as default } diff --git a/src/IconAqIndoorRoundedFilled.tsx b/src/IconAqIndoorRoundedFilled.tsx new file mode 100644 index 000000000..c61e5e13c --- /dev/null +++ b/src/IconAqIndoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAqIndoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAqIndoorRoundedFilled as default } diff --git a/src/IconAqIndoorSharpFilled.tsx b/src/IconAqIndoorSharpFilled.tsx new file mode 100644 index 000000000..9003a9433 --- /dev/null +++ b/src/IconAqIndoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAqIndoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAqIndoorSharpFilled as default } diff --git a/src/IconAqOutlinedFilled.tsx b/src/IconAqOutlinedFilled.tsx new file mode 100644 index 000000000..11f3dc068 --- /dev/null +++ b/src/IconAqOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAqOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAqOutlinedFilled as default } diff --git a/src/IconAqRoundedFilled.tsx b/src/IconAqRoundedFilled.tsx new file mode 100644 index 000000000..98f19dcde --- /dev/null +++ b/src/IconAqRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAqRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAqRoundedFilled as default } diff --git a/src/IconAqSharpFilled.tsx b/src/IconAqSharpFilled.tsx new file mode 100644 index 000000000..bcb670379 --- /dev/null +++ b/src/IconAqSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAqSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAqSharpFilled as default } diff --git a/src/IconArOnYouOutlinedFilled.tsx b/src/IconArOnYouOutlinedFilled.tsx new file mode 100644 index 000000000..eee15a72e --- /dev/null +++ b/src/IconArOnYouOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArOnYouOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArOnYouOutlinedFilled as default } diff --git a/src/IconArOnYouRoundedFilled.tsx b/src/IconArOnYouRoundedFilled.tsx new file mode 100644 index 000000000..c61899fbd --- /dev/null +++ b/src/IconArOnYouRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArOnYouRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArOnYouRoundedFilled as default } diff --git a/src/IconArOnYouSharpFilled.tsx b/src/IconArOnYouSharpFilled.tsx new file mode 100644 index 000000000..cadff23ad --- /dev/null +++ b/src/IconArOnYouSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArOnYouSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArOnYouSharpFilled as default } diff --git a/src/IconArStickersOutlinedFilled.tsx b/src/IconArStickersOutlinedFilled.tsx new file mode 100644 index 000000000..818b804be --- /dev/null +++ b/src/IconArStickersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArStickersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArStickersOutlinedFilled as default } diff --git a/src/IconArStickersRoundedFilled.tsx b/src/IconArStickersRoundedFilled.tsx new file mode 100644 index 000000000..90180c797 --- /dev/null +++ b/src/IconArStickersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArStickersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArStickersRoundedFilled as default } diff --git a/src/IconArStickersSharpFilled.tsx b/src/IconArStickersSharpFilled.tsx new file mode 100644 index 000000000..6adeb4eb8 --- /dev/null +++ b/src/IconArStickersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArStickersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArStickersSharpFilled as default } diff --git a/src/IconArchitectureOutlinedFilled.tsx b/src/IconArchitectureOutlinedFilled.tsx new file mode 100644 index 000000000..34394394b --- /dev/null +++ b/src/IconArchitectureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArchitectureOutlinedFilled as default } diff --git a/src/IconArchitectureRoundedFilled.tsx b/src/IconArchitectureRoundedFilled.tsx new file mode 100644 index 000000000..38cce52b9 --- /dev/null +++ b/src/IconArchitectureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArchitectureRoundedFilled as default } diff --git a/src/IconArchitectureSharpFilled.tsx b/src/IconArchitectureSharpFilled.tsx new file mode 100644 index 000000000..a5c0ed7e2 --- /dev/null +++ b/src/IconArchitectureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchitectureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArchitectureSharpFilled as default } diff --git a/src/IconArchiveOutlinedFilled.tsx b/src/IconArchiveOutlinedFilled.tsx new file mode 100644 index 000000000..4f30eacea --- /dev/null +++ b/src/IconArchiveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArchiveOutlinedFilled as default } diff --git a/src/IconArchiveRoundedFilled.tsx b/src/IconArchiveRoundedFilled.tsx new file mode 100644 index 000000000..8eeebe244 --- /dev/null +++ b/src/IconArchiveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArchiveRoundedFilled as default } diff --git a/src/IconArchiveSharpFilled.tsx b/src/IconArchiveSharpFilled.tsx new file mode 100644 index 000000000..e5d14226d --- /dev/null +++ b/src/IconArchiveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArchiveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArchiveSharpFilled as default } diff --git a/src/IconAreaChartOutlinedFilled.tsx b/src/IconAreaChartOutlinedFilled.tsx new file mode 100644 index 000000000..8d7cd8b23 --- /dev/null +++ b/src/IconAreaChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAreaChartOutlinedFilled as default } diff --git a/src/IconAreaChartRoundedFilled.tsx b/src/IconAreaChartRoundedFilled.tsx new file mode 100644 index 000000000..ebcb6c89a --- /dev/null +++ b/src/IconAreaChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAreaChartRoundedFilled as default } diff --git a/src/IconAreaChartSharpFilled.tsx b/src/IconAreaChartSharpFilled.tsx new file mode 100644 index 000000000..2cf31f9d7 --- /dev/null +++ b/src/IconAreaChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAreaChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAreaChartSharpFilled as default } diff --git a/src/IconArmingCountdownOutlinedFilled.tsx b/src/IconArmingCountdownOutlinedFilled.tsx new file mode 100644 index 000000000..c3f84fcfc --- /dev/null +++ b/src/IconArmingCountdownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArmingCountdownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArmingCountdownOutlinedFilled as default } diff --git a/src/IconArmingCountdownRoundedFilled.tsx b/src/IconArmingCountdownRoundedFilled.tsx new file mode 100644 index 000000000..a4007c85e --- /dev/null +++ b/src/IconArmingCountdownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArmingCountdownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArmingCountdownRoundedFilled as default } diff --git a/src/IconArmingCountdownSharpFilled.tsx b/src/IconArmingCountdownSharpFilled.tsx new file mode 100644 index 000000000..903086b79 --- /dev/null +++ b/src/IconArmingCountdownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArmingCountdownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArmingCountdownSharpFilled as default } diff --git a/src/IconArrowAndEdgeOutlinedFilled.tsx b/src/IconArrowAndEdgeOutlinedFilled.tsx new file mode 100644 index 000000000..3aa1376ca --- /dev/null +++ b/src/IconArrowAndEdgeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowAndEdgeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowAndEdgeOutlinedFilled as default } diff --git a/src/IconArrowAndEdgeRoundedFilled.tsx b/src/IconArrowAndEdgeRoundedFilled.tsx new file mode 100644 index 000000000..d7c935249 --- /dev/null +++ b/src/IconArrowAndEdgeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowAndEdgeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowAndEdgeRoundedFilled as default } diff --git a/src/IconArrowAndEdgeSharpFilled.tsx b/src/IconArrowAndEdgeSharpFilled.tsx new file mode 100644 index 000000000..ee89bfe81 --- /dev/null +++ b/src/IconArrowAndEdgeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowAndEdgeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowAndEdgeSharpFilled as default } diff --git a/src/IconArrowBack2OutlinedFilled.tsx b/src/IconArrowBack2OutlinedFilled.tsx new file mode 100644 index 000000000..d6f8bf89e --- /dev/null +++ b/src/IconArrowBack2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBack2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBack2OutlinedFilled as default } diff --git a/src/IconArrowBack2RoundedFilled.tsx b/src/IconArrowBack2RoundedFilled.tsx new file mode 100644 index 000000000..34fc1f2ac --- /dev/null +++ b/src/IconArrowBack2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBack2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBack2RoundedFilled as default } diff --git a/src/IconArrowBack2SharpFilled.tsx b/src/IconArrowBack2SharpFilled.tsx new file mode 100644 index 000000000..1a29afd90 --- /dev/null +++ b/src/IconArrowBack2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBack2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBack2SharpFilled as default } diff --git a/src/IconArrowBackIosNewOutlinedFilled.tsx b/src/IconArrowBackIosNewOutlinedFilled.tsx new file mode 100644 index 000000000..f16120665 --- /dev/null +++ b/src/IconArrowBackIosNewOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackIosNewOutlinedFilled as default } diff --git a/src/IconArrowBackIosNewRoundedFilled.tsx b/src/IconArrowBackIosNewRoundedFilled.tsx new file mode 100644 index 000000000..126113610 --- /dev/null +++ b/src/IconArrowBackIosNewRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackIosNewRoundedFilled as default } diff --git a/src/IconArrowBackIosNewSharpFilled.tsx b/src/IconArrowBackIosNewSharpFilled.tsx new file mode 100644 index 000000000..74dc647dc --- /dev/null +++ b/src/IconArrowBackIosNewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosNewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackIosNewSharpFilled as default } diff --git a/src/IconArrowBackIosOutlinedFilled.tsx b/src/IconArrowBackIosOutlinedFilled.tsx new file mode 100644 index 000000000..484195a1d --- /dev/null +++ b/src/IconArrowBackIosOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackIosOutlinedFilled as default } diff --git a/src/IconArrowBackIosRoundedFilled.tsx b/src/IconArrowBackIosRoundedFilled.tsx new file mode 100644 index 000000000..25c6e0f5b --- /dev/null +++ b/src/IconArrowBackIosRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackIosRoundedFilled as default } diff --git a/src/IconArrowBackIosSharpFilled.tsx b/src/IconArrowBackIosSharpFilled.tsx new file mode 100644 index 000000000..ee7169e54 --- /dev/null +++ b/src/IconArrowBackIosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackIosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackIosSharpFilled as default } diff --git a/src/IconArrowBackOutlinedFilled.tsx b/src/IconArrowBackOutlinedFilled.tsx new file mode 100644 index 000000000..dda6b8bf5 --- /dev/null +++ b/src/IconArrowBackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackOutlinedFilled as default } diff --git a/src/IconArrowBackRoundedFilled.tsx b/src/IconArrowBackRoundedFilled.tsx new file mode 100644 index 000000000..b97dfdeb3 --- /dev/null +++ b/src/IconArrowBackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackRoundedFilled as default } diff --git a/src/IconArrowBackSharpFilled.tsx b/src/IconArrowBackSharpFilled.tsx new file mode 100644 index 000000000..f7b9b564b --- /dev/null +++ b/src/IconArrowBackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowBackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowBackSharpFilled as default } diff --git a/src/IconArrowCircleDownOutlinedFilled.tsx b/src/IconArrowCircleDownOutlinedFilled.tsx new file mode 100644 index 000000000..3bc5559aa --- /dev/null +++ b/src/IconArrowCircleDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleDownOutlinedFilled as default } diff --git a/src/IconArrowCircleDownRoundedFilled.tsx b/src/IconArrowCircleDownRoundedFilled.tsx new file mode 100644 index 000000000..06d2082a1 --- /dev/null +++ b/src/IconArrowCircleDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleDownRoundedFilled as default } diff --git a/src/IconArrowCircleDownSharpFilled.tsx b/src/IconArrowCircleDownSharpFilled.tsx new file mode 100644 index 000000000..6e81414f7 --- /dev/null +++ b/src/IconArrowCircleDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleDownSharpFilled as default } diff --git a/src/IconArrowCircleLeftOutlinedFilled.tsx b/src/IconArrowCircleLeftOutlinedFilled.tsx new file mode 100644 index 000000000..a6b08530e --- /dev/null +++ b/src/IconArrowCircleLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleLeftOutlinedFilled as default } diff --git a/src/IconArrowCircleLeftRoundedFilled.tsx b/src/IconArrowCircleLeftRoundedFilled.tsx new file mode 100644 index 000000000..c0e7dbd25 --- /dev/null +++ b/src/IconArrowCircleLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleLeftRoundedFilled as default } diff --git a/src/IconArrowCircleLeftSharpFilled.tsx b/src/IconArrowCircleLeftSharpFilled.tsx new file mode 100644 index 000000000..b11dbba24 --- /dev/null +++ b/src/IconArrowCircleLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleLeftSharpFilled as default } diff --git a/src/IconArrowCircleRightOutlinedFilled.tsx b/src/IconArrowCircleRightOutlinedFilled.tsx new file mode 100644 index 000000000..cb1187103 --- /dev/null +++ b/src/IconArrowCircleRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleRightOutlinedFilled as default } diff --git a/src/IconArrowCircleRightRoundedFilled.tsx b/src/IconArrowCircleRightRoundedFilled.tsx new file mode 100644 index 000000000..db4b73c1c --- /dev/null +++ b/src/IconArrowCircleRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleRightRoundedFilled as default } diff --git a/src/IconArrowCircleRightSharpFilled.tsx b/src/IconArrowCircleRightSharpFilled.tsx new file mode 100644 index 000000000..90cb6aec1 --- /dev/null +++ b/src/IconArrowCircleRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleRightSharpFilled as default } diff --git a/src/IconArrowCircleUpOutlinedFilled.tsx b/src/IconArrowCircleUpOutlinedFilled.tsx new file mode 100644 index 000000000..4e5ed68bd --- /dev/null +++ b/src/IconArrowCircleUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleUpOutlinedFilled as default } diff --git a/src/IconArrowCircleUpRoundedFilled.tsx b/src/IconArrowCircleUpRoundedFilled.tsx new file mode 100644 index 000000000..e171ca006 --- /dev/null +++ b/src/IconArrowCircleUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleUpRoundedFilled as default } diff --git a/src/IconArrowCircleUpSharpFilled.tsx b/src/IconArrowCircleUpSharpFilled.tsx new file mode 100644 index 000000000..0e35c8ba8 --- /dev/null +++ b/src/IconArrowCircleUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCircleUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCircleUpSharpFilled as default } diff --git a/src/IconArrowCoolDownOutlinedFilled.tsx b/src/IconArrowCoolDownOutlinedFilled.tsx new file mode 100644 index 000000000..a7ebe9581 --- /dev/null +++ b/src/IconArrowCoolDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCoolDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCoolDownOutlinedFilled as default } diff --git a/src/IconArrowCoolDownRoundedFilled.tsx b/src/IconArrowCoolDownRoundedFilled.tsx new file mode 100644 index 000000000..7a76b6cc4 --- /dev/null +++ b/src/IconArrowCoolDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCoolDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCoolDownRoundedFilled as default } diff --git a/src/IconArrowCoolDownSharpFilled.tsx b/src/IconArrowCoolDownSharpFilled.tsx new file mode 100644 index 000000000..4a9e41689 --- /dev/null +++ b/src/IconArrowCoolDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowCoolDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowCoolDownSharpFilled as default } diff --git a/src/IconArrowDownwardAltOutlinedFilled.tsx b/src/IconArrowDownwardAltOutlinedFilled.tsx new file mode 100644 index 000000000..7f6f85e82 --- /dev/null +++ b/src/IconArrowDownwardAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDownwardAltOutlinedFilled as default } diff --git a/src/IconArrowDownwardAltRoundedFilled.tsx b/src/IconArrowDownwardAltRoundedFilled.tsx new file mode 100644 index 000000000..d0e452b55 --- /dev/null +++ b/src/IconArrowDownwardAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDownwardAltRoundedFilled as default } diff --git a/src/IconArrowDownwardAltSharpFilled.tsx b/src/IconArrowDownwardAltSharpFilled.tsx new file mode 100644 index 000000000..3dd6dc4a2 --- /dev/null +++ b/src/IconArrowDownwardAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDownwardAltSharpFilled as default } diff --git a/src/IconArrowDownwardOutlinedFilled.tsx b/src/IconArrowDownwardOutlinedFilled.tsx new file mode 100644 index 000000000..38329d291 --- /dev/null +++ b/src/IconArrowDownwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDownwardOutlinedFilled as default } diff --git a/src/IconArrowDownwardRoundedFilled.tsx b/src/IconArrowDownwardRoundedFilled.tsx new file mode 100644 index 000000000..d112f2ae7 --- /dev/null +++ b/src/IconArrowDownwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDownwardRoundedFilled as default } diff --git a/src/IconArrowDownwardSharpFilled.tsx b/src/IconArrowDownwardSharpFilled.tsx new file mode 100644 index 000000000..a6c220f9f --- /dev/null +++ b/src/IconArrowDownwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDownwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDownwardSharpFilled as default } diff --git a/src/IconArrowDropDownCircleOutlinedFilled.tsx b/src/IconArrowDropDownCircleOutlinedFilled.tsx new file mode 100644 index 000000000..a0c9f631f --- /dev/null +++ b/src/IconArrowDropDownCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropDownCircleOutlinedFilled as default } diff --git a/src/IconArrowDropDownCircleRoundedFilled.tsx b/src/IconArrowDropDownCircleRoundedFilled.tsx new file mode 100644 index 000000000..aa4932a5a --- /dev/null +++ b/src/IconArrowDropDownCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropDownCircleRoundedFilled as default } diff --git a/src/IconArrowDropDownCircleSharpFilled.tsx b/src/IconArrowDropDownCircleSharpFilled.tsx new file mode 100644 index 000000000..86085a7e2 --- /dev/null +++ b/src/IconArrowDropDownCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropDownCircleSharpFilled as default } diff --git a/src/IconArrowDropDownOutlinedFilled.tsx b/src/IconArrowDropDownOutlinedFilled.tsx new file mode 100644 index 000000000..a6ebabe66 --- /dev/null +++ b/src/IconArrowDropDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropDownOutlinedFilled as default } diff --git a/src/IconArrowDropDownRoundedFilled.tsx b/src/IconArrowDropDownRoundedFilled.tsx new file mode 100644 index 000000000..33662b56f --- /dev/null +++ b/src/IconArrowDropDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropDownRoundedFilled as default } diff --git a/src/IconArrowDropDownSharpFilled.tsx b/src/IconArrowDropDownSharpFilled.tsx new file mode 100644 index 000000000..295e5514f --- /dev/null +++ b/src/IconArrowDropDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropDownSharpFilled as default } diff --git a/src/IconArrowDropUpOutlinedFilled.tsx b/src/IconArrowDropUpOutlinedFilled.tsx new file mode 100644 index 000000000..641de1aca --- /dev/null +++ b/src/IconArrowDropUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropUpOutlinedFilled as default } diff --git a/src/IconArrowDropUpRoundedFilled.tsx b/src/IconArrowDropUpRoundedFilled.tsx new file mode 100644 index 000000000..b76e66a28 --- /dev/null +++ b/src/IconArrowDropUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropUpRoundedFilled as default } diff --git a/src/IconArrowDropUpSharpFilled.tsx b/src/IconArrowDropUpSharpFilled.tsx new file mode 100644 index 000000000..80b35ac67 --- /dev/null +++ b/src/IconArrowDropUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowDropUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowDropUpSharpFilled as default } diff --git a/src/IconArrowForwardIosOutlinedFilled.tsx b/src/IconArrowForwardIosOutlinedFilled.tsx new file mode 100644 index 000000000..f19d2438a --- /dev/null +++ b/src/IconArrowForwardIosOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowForwardIosOutlinedFilled as default } diff --git a/src/IconArrowForwardIosRoundedFilled.tsx b/src/IconArrowForwardIosRoundedFilled.tsx new file mode 100644 index 000000000..2e561e4cc --- /dev/null +++ b/src/IconArrowForwardIosRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowForwardIosRoundedFilled as default } diff --git a/src/IconArrowForwardIosSharpFilled.tsx b/src/IconArrowForwardIosSharpFilled.tsx new file mode 100644 index 000000000..197cfcf0f --- /dev/null +++ b/src/IconArrowForwardIosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardIosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowForwardIosSharpFilled as default } diff --git a/src/IconArrowForwardOutlinedFilled.tsx b/src/IconArrowForwardOutlinedFilled.tsx new file mode 100644 index 000000000..c54b8d10b --- /dev/null +++ b/src/IconArrowForwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowForwardOutlinedFilled as default } diff --git a/src/IconArrowForwardRoundedFilled.tsx b/src/IconArrowForwardRoundedFilled.tsx new file mode 100644 index 000000000..8e3b9a309 --- /dev/null +++ b/src/IconArrowForwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowForwardRoundedFilled as default } diff --git a/src/IconArrowForwardSharpFilled.tsx b/src/IconArrowForwardSharpFilled.tsx new file mode 100644 index 000000000..a49975826 --- /dev/null +++ b/src/IconArrowForwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowForwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowForwardSharpFilled as default } diff --git a/src/IconArrowInsertOutlinedFilled.tsx b/src/IconArrowInsertOutlinedFilled.tsx new file mode 100644 index 000000000..6aa8811ea --- /dev/null +++ b/src/IconArrowInsertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowInsertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowInsertOutlinedFilled as default } diff --git a/src/IconArrowInsertRoundedFilled.tsx b/src/IconArrowInsertRoundedFilled.tsx new file mode 100644 index 000000000..6278e0cce --- /dev/null +++ b/src/IconArrowInsertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowInsertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowInsertRoundedFilled as default } diff --git a/src/IconArrowInsertSharpFilled.tsx b/src/IconArrowInsertSharpFilled.tsx new file mode 100644 index 000000000..355ea73bc --- /dev/null +++ b/src/IconArrowInsertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowInsertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowInsertSharpFilled as default } diff --git a/src/IconArrowLeftAltOutlinedFilled.tsx b/src/IconArrowLeftAltOutlinedFilled.tsx new file mode 100644 index 000000000..2bb3160d2 --- /dev/null +++ b/src/IconArrowLeftAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowLeftAltOutlinedFilled as default } diff --git a/src/IconArrowLeftAltRoundedFilled.tsx b/src/IconArrowLeftAltRoundedFilled.tsx new file mode 100644 index 000000000..7c8c1fa1d --- /dev/null +++ b/src/IconArrowLeftAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowLeftAltRoundedFilled as default } diff --git a/src/IconArrowLeftAltSharpFilled.tsx b/src/IconArrowLeftAltSharpFilled.tsx new file mode 100644 index 000000000..7d118093d --- /dev/null +++ b/src/IconArrowLeftAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowLeftAltSharpFilled as default } diff --git a/src/IconArrowLeftOutlinedFilled.tsx b/src/IconArrowLeftOutlinedFilled.tsx new file mode 100644 index 000000000..68188207c --- /dev/null +++ b/src/IconArrowLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowLeftOutlinedFilled as default } diff --git a/src/IconArrowLeftRoundedFilled.tsx b/src/IconArrowLeftRoundedFilled.tsx new file mode 100644 index 000000000..ba471c1b8 --- /dev/null +++ b/src/IconArrowLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowLeftRoundedFilled as default } diff --git a/src/IconArrowLeftSharpFilled.tsx b/src/IconArrowLeftSharpFilled.tsx new file mode 100644 index 000000000..a667b0346 --- /dev/null +++ b/src/IconArrowLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowLeftSharpFilled as default } diff --git a/src/IconArrowOrEdgeOutlinedFilled.tsx b/src/IconArrowOrEdgeOutlinedFilled.tsx new file mode 100644 index 000000000..b85f5cdfd --- /dev/null +++ b/src/IconArrowOrEdgeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOrEdgeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowOrEdgeOutlinedFilled as default } diff --git a/src/IconArrowOrEdgeRoundedFilled.tsx b/src/IconArrowOrEdgeRoundedFilled.tsx new file mode 100644 index 000000000..7e24748fa --- /dev/null +++ b/src/IconArrowOrEdgeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOrEdgeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowOrEdgeRoundedFilled as default } diff --git a/src/IconArrowOrEdgeSharpFilled.tsx b/src/IconArrowOrEdgeSharpFilled.tsx new file mode 100644 index 000000000..ff290aab6 --- /dev/null +++ b/src/IconArrowOrEdgeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOrEdgeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowOrEdgeSharpFilled as default } diff --git a/src/IconArrowOutwardOutlinedFilled.tsx b/src/IconArrowOutwardOutlinedFilled.tsx new file mode 100644 index 000000000..6fefc48cb --- /dev/null +++ b/src/IconArrowOutwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowOutwardOutlinedFilled as default } diff --git a/src/IconArrowOutwardRoundedFilled.tsx b/src/IconArrowOutwardRoundedFilled.tsx new file mode 100644 index 000000000..1720bc75f --- /dev/null +++ b/src/IconArrowOutwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowOutwardRoundedFilled as default } diff --git a/src/IconArrowOutwardSharpFilled.tsx b/src/IconArrowOutwardSharpFilled.tsx new file mode 100644 index 000000000..48c1956c6 --- /dev/null +++ b/src/IconArrowOutwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowOutwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowOutwardSharpFilled as default } diff --git a/src/IconArrowRangeOutlinedFilled.tsx b/src/IconArrowRangeOutlinedFilled.tsx new file mode 100644 index 000000000..658bab6c1 --- /dev/null +++ b/src/IconArrowRangeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRangeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRangeOutlinedFilled as default } diff --git a/src/IconArrowRangeRoundedFilled.tsx b/src/IconArrowRangeRoundedFilled.tsx new file mode 100644 index 000000000..305cc99f1 --- /dev/null +++ b/src/IconArrowRangeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRangeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRangeRoundedFilled as default } diff --git a/src/IconArrowRangeSharpFilled.tsx b/src/IconArrowRangeSharpFilled.tsx new file mode 100644 index 000000000..f1207700b --- /dev/null +++ b/src/IconArrowRangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRangeSharpFilled as default } diff --git a/src/IconArrowRightAltOutlinedFilled.tsx b/src/IconArrowRightAltOutlinedFilled.tsx new file mode 100644 index 000000000..849d70d4d --- /dev/null +++ b/src/IconArrowRightAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRightAltOutlinedFilled as default } diff --git a/src/IconArrowRightAltRoundedFilled.tsx b/src/IconArrowRightAltRoundedFilled.tsx new file mode 100644 index 000000000..d5230ee4a --- /dev/null +++ b/src/IconArrowRightAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRightAltRoundedFilled as default } diff --git a/src/IconArrowRightAltSharpFilled.tsx b/src/IconArrowRightAltSharpFilled.tsx new file mode 100644 index 000000000..908693264 --- /dev/null +++ b/src/IconArrowRightAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRightAltSharpFilled as default } diff --git a/src/IconArrowRightOutlinedFilled.tsx b/src/IconArrowRightOutlinedFilled.tsx new file mode 100644 index 000000000..7322fc785 --- /dev/null +++ b/src/IconArrowRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRightOutlinedFilled as default } diff --git a/src/IconArrowRightRoundedFilled.tsx b/src/IconArrowRightRoundedFilled.tsx new file mode 100644 index 000000000..8f3284393 --- /dev/null +++ b/src/IconArrowRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRightRoundedFilled as default } diff --git a/src/IconArrowRightSharpFilled.tsx b/src/IconArrowRightSharpFilled.tsx new file mode 100644 index 000000000..d2f937e1b --- /dev/null +++ b/src/IconArrowRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowRightSharpFilled as default } diff --git a/src/IconArrowSelectorToolOutlinedFilled.tsx b/src/IconArrowSelectorToolOutlinedFilled.tsx new file mode 100644 index 000000000..14455e025 --- /dev/null +++ b/src/IconArrowSelectorToolOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowSelectorToolOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowSelectorToolOutlinedFilled as default } diff --git a/src/IconArrowSelectorToolRoundedFilled.tsx b/src/IconArrowSelectorToolRoundedFilled.tsx new file mode 100644 index 000000000..8fb68b683 --- /dev/null +++ b/src/IconArrowSelectorToolRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowSelectorToolRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowSelectorToolRoundedFilled as default } diff --git a/src/IconArrowSelectorToolSharpFilled.tsx b/src/IconArrowSelectorToolSharpFilled.tsx new file mode 100644 index 000000000..21a9b9bd5 --- /dev/null +++ b/src/IconArrowSelectorToolSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowSelectorToolSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowSelectorToolSharpFilled as default } diff --git a/src/IconArrowSplitOutlinedFilled.tsx b/src/IconArrowSplitOutlinedFilled.tsx new file mode 100644 index 000000000..b7216a5d0 --- /dev/null +++ b/src/IconArrowSplitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowSplitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowSplitOutlinedFilled as default } diff --git a/src/IconArrowSplitRoundedFilled.tsx b/src/IconArrowSplitRoundedFilled.tsx new file mode 100644 index 000000000..f3edc900b --- /dev/null +++ b/src/IconArrowSplitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowSplitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowSplitRoundedFilled as default } diff --git a/src/IconArrowSplitSharpFilled.tsx b/src/IconArrowSplitSharpFilled.tsx new file mode 100644 index 000000000..7b1402a84 --- /dev/null +++ b/src/IconArrowSplitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowSplitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowSplitSharpFilled as default } diff --git a/src/IconArrowTopLeftOutlinedFilled.tsx b/src/IconArrowTopLeftOutlinedFilled.tsx new file mode 100644 index 000000000..8048bbe6f --- /dev/null +++ b/src/IconArrowTopLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowTopLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowTopLeftOutlinedFilled as default } diff --git a/src/IconArrowTopLeftRoundedFilled.tsx b/src/IconArrowTopLeftRoundedFilled.tsx new file mode 100644 index 000000000..8453da865 --- /dev/null +++ b/src/IconArrowTopLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowTopLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowTopLeftRoundedFilled as default } diff --git a/src/IconArrowTopLeftSharpFilled.tsx b/src/IconArrowTopLeftSharpFilled.tsx new file mode 100644 index 000000000..0a32b077a --- /dev/null +++ b/src/IconArrowTopLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowTopLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowTopLeftSharpFilled as default } diff --git a/src/IconArrowTopRightOutlinedFilled.tsx b/src/IconArrowTopRightOutlinedFilled.tsx new file mode 100644 index 000000000..c860db3d6 --- /dev/null +++ b/src/IconArrowTopRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowTopRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowTopRightOutlinedFilled as default } diff --git a/src/IconArrowTopRightRoundedFilled.tsx b/src/IconArrowTopRightRoundedFilled.tsx new file mode 100644 index 000000000..2ff797759 --- /dev/null +++ b/src/IconArrowTopRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowTopRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowTopRightRoundedFilled as default } diff --git a/src/IconArrowTopRightSharpFilled.tsx b/src/IconArrowTopRightSharpFilled.tsx new file mode 100644 index 000000000..edbbf321c --- /dev/null +++ b/src/IconArrowTopRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowTopRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowTopRightSharpFilled as default } diff --git a/src/IconArrowUploadProgressOutlinedFilled.tsx b/src/IconArrowUploadProgressOutlinedFilled.tsx new file mode 100644 index 000000000..a1495eb4b --- /dev/null +++ b/src/IconArrowUploadProgressOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUploadProgressOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUploadProgressOutlinedFilled as default } diff --git a/src/IconArrowUploadProgressRoundedFilled.tsx b/src/IconArrowUploadProgressRoundedFilled.tsx new file mode 100644 index 000000000..71aacc566 --- /dev/null +++ b/src/IconArrowUploadProgressRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUploadProgressRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUploadProgressRoundedFilled as default } diff --git a/src/IconArrowUploadProgressSharpFilled.tsx b/src/IconArrowUploadProgressSharpFilled.tsx new file mode 100644 index 000000000..194dd2e4e --- /dev/null +++ b/src/IconArrowUploadProgressSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUploadProgressSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUploadProgressSharpFilled as default } diff --git a/src/IconArrowUploadReadyOutlinedFilled.tsx b/src/IconArrowUploadReadyOutlinedFilled.tsx new file mode 100644 index 000000000..fc9d08914 --- /dev/null +++ b/src/IconArrowUploadReadyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUploadReadyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUploadReadyOutlinedFilled as default } diff --git a/src/IconArrowUploadReadyRoundedFilled.tsx b/src/IconArrowUploadReadyRoundedFilled.tsx new file mode 100644 index 000000000..fcfc166b1 --- /dev/null +++ b/src/IconArrowUploadReadyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUploadReadyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUploadReadyRoundedFilled as default } diff --git a/src/IconArrowUploadReadySharpFilled.tsx b/src/IconArrowUploadReadySharpFilled.tsx new file mode 100644 index 000000000..e9fccdbcf --- /dev/null +++ b/src/IconArrowUploadReadySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUploadReadySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUploadReadySharpFilled as default } diff --git a/src/IconArrowUpwardAltOutlinedFilled.tsx b/src/IconArrowUpwardAltOutlinedFilled.tsx new file mode 100644 index 000000000..e3192a682 --- /dev/null +++ b/src/IconArrowUpwardAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUpwardAltOutlinedFilled as default } diff --git a/src/IconArrowUpwardAltRoundedFilled.tsx b/src/IconArrowUpwardAltRoundedFilled.tsx new file mode 100644 index 000000000..ea237d3e5 --- /dev/null +++ b/src/IconArrowUpwardAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUpwardAltRoundedFilled as default } diff --git a/src/IconArrowUpwardAltSharpFilled.tsx b/src/IconArrowUpwardAltSharpFilled.tsx new file mode 100644 index 000000000..c546b6cb8 --- /dev/null +++ b/src/IconArrowUpwardAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUpwardAltSharpFilled as default } diff --git a/src/IconArrowUpwardOutlinedFilled.tsx b/src/IconArrowUpwardOutlinedFilled.tsx new file mode 100644 index 000000000..c319bec6a --- /dev/null +++ b/src/IconArrowUpwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUpwardOutlinedFilled as default } diff --git a/src/IconArrowUpwardRoundedFilled.tsx b/src/IconArrowUpwardRoundedFilled.tsx new file mode 100644 index 000000000..7b23a8920 --- /dev/null +++ b/src/IconArrowUpwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUpwardRoundedFilled as default } diff --git a/src/IconArrowUpwardSharpFilled.tsx b/src/IconArrowUpwardSharpFilled.tsx new file mode 100644 index 000000000..9136c1031 --- /dev/null +++ b/src/IconArrowUpwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowUpwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowUpwardSharpFilled as default } diff --git a/src/IconArrowWarmUpOutlinedFilled.tsx b/src/IconArrowWarmUpOutlinedFilled.tsx new file mode 100644 index 000000000..c3783f7cc --- /dev/null +++ b/src/IconArrowWarmUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowWarmUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowWarmUpOutlinedFilled as default } diff --git a/src/IconArrowWarmUpRoundedFilled.tsx b/src/IconArrowWarmUpRoundedFilled.tsx new file mode 100644 index 000000000..a2e37aa14 --- /dev/null +++ b/src/IconArrowWarmUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowWarmUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowWarmUpRoundedFilled as default } diff --git a/src/IconArrowWarmUpSharpFilled.tsx b/src/IconArrowWarmUpSharpFilled.tsx new file mode 100644 index 000000000..db406e159 --- /dev/null +++ b/src/IconArrowWarmUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowWarmUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowWarmUpSharpFilled as default } diff --git a/src/IconArrowsMoreDownOutlinedFilled.tsx b/src/IconArrowsMoreDownOutlinedFilled.tsx new file mode 100644 index 000000000..30e80259e --- /dev/null +++ b/src/IconArrowsMoreDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsMoreDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsMoreDownOutlinedFilled as default } diff --git a/src/IconArrowsMoreDownRoundedFilled.tsx b/src/IconArrowsMoreDownRoundedFilled.tsx new file mode 100644 index 000000000..1f2475b4d --- /dev/null +++ b/src/IconArrowsMoreDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsMoreDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsMoreDownRoundedFilled as default } diff --git a/src/IconArrowsMoreDownSharpFilled.tsx b/src/IconArrowsMoreDownSharpFilled.tsx new file mode 100644 index 000000000..de2b31d58 --- /dev/null +++ b/src/IconArrowsMoreDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsMoreDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsMoreDownSharpFilled as default } diff --git a/src/IconArrowsMoreUpOutlinedFilled.tsx b/src/IconArrowsMoreUpOutlinedFilled.tsx new file mode 100644 index 000000000..024529d93 --- /dev/null +++ b/src/IconArrowsMoreUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsMoreUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsMoreUpOutlinedFilled as default } diff --git a/src/IconArrowsMoreUpRoundedFilled.tsx b/src/IconArrowsMoreUpRoundedFilled.tsx new file mode 100644 index 000000000..5ed8db676 --- /dev/null +++ b/src/IconArrowsMoreUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsMoreUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsMoreUpRoundedFilled as default } diff --git a/src/IconArrowsMoreUpSharpFilled.tsx b/src/IconArrowsMoreUpSharpFilled.tsx new file mode 100644 index 000000000..3a0680a20 --- /dev/null +++ b/src/IconArrowsMoreUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsMoreUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsMoreUpSharpFilled as default } diff --git a/src/IconArrowsOutwardOutlinedFilled.tsx b/src/IconArrowsOutwardOutlinedFilled.tsx new file mode 100644 index 000000000..ba549b217 --- /dev/null +++ b/src/IconArrowsOutwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsOutwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsOutwardOutlinedFilled as default } diff --git a/src/IconArrowsOutwardRoundedFilled.tsx b/src/IconArrowsOutwardRoundedFilled.tsx new file mode 100644 index 000000000..33f227aae --- /dev/null +++ b/src/IconArrowsOutwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsOutwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsOutwardRoundedFilled as default } diff --git a/src/IconArrowsOutwardSharpFilled.tsx b/src/IconArrowsOutwardSharpFilled.tsx new file mode 100644 index 000000000..85cf30aa2 --- /dev/null +++ b/src/IconArrowsOutwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArrowsOutwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArrowsOutwardSharpFilled as default } diff --git a/src/IconArtTrackOutlinedFilled.tsx b/src/IconArtTrackOutlinedFilled.tsx new file mode 100644 index 000000000..d38199210 --- /dev/null +++ b/src/IconArtTrackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtTrackOutlinedFilled as default } diff --git a/src/IconArtTrackRoundedFilled.tsx b/src/IconArtTrackRoundedFilled.tsx new file mode 100644 index 000000000..56ef1e873 --- /dev/null +++ b/src/IconArtTrackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtTrackRoundedFilled as default } diff --git a/src/IconArtTrackSharpFilled.tsx b/src/IconArtTrackSharpFilled.tsx new file mode 100644 index 000000000..dd60cbb48 --- /dev/null +++ b/src/IconArtTrackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtTrackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtTrackSharpFilled as default } diff --git a/src/IconArticleOutlinedFilled.tsx b/src/IconArticleOutlinedFilled.tsx new file mode 100644 index 000000000..291890464 --- /dev/null +++ b/src/IconArticleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArticleOutlinedFilled as default } diff --git a/src/IconArticleRoundedFilled.tsx b/src/IconArticleRoundedFilled.tsx new file mode 100644 index 000000000..1df21856b --- /dev/null +++ b/src/IconArticleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArticleRoundedFilled as default } diff --git a/src/IconArticleSharpFilled.tsx b/src/IconArticleSharpFilled.tsx new file mode 100644 index 000000000..8b026d8bd --- /dev/null +++ b/src/IconArticleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArticleSharpFilled as default } diff --git a/src/IconArticleShortcutOutlinedFilled.tsx b/src/IconArticleShortcutOutlinedFilled.tsx new file mode 100644 index 000000000..f81d57261 --- /dev/null +++ b/src/IconArticleShortcutOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleShortcutOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArticleShortcutOutlinedFilled as default } diff --git a/src/IconArticleShortcutRoundedFilled.tsx b/src/IconArticleShortcutRoundedFilled.tsx new file mode 100644 index 000000000..b04f362e3 --- /dev/null +++ b/src/IconArticleShortcutRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleShortcutRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconArticleShortcutRoundedFilled as default } diff --git a/src/IconArticleShortcutSharpFilled.tsx b/src/IconArticleShortcutSharpFilled.tsx new file mode 100644 index 000000000..faeb897e5 --- /dev/null +++ b/src/IconArticleShortcutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArticleShortcutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArticleShortcutSharpFilled as default } diff --git a/src/IconArtistOutlinedFilled.tsx b/src/IconArtistOutlinedFilled.tsx new file mode 100644 index 000000000..4d4264b31 --- /dev/null +++ b/src/IconArtistOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtistOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtistOutlinedFilled as default } diff --git a/src/IconArtistRoundedFilled.tsx b/src/IconArtistRoundedFilled.tsx new file mode 100644 index 000000000..255501a19 --- /dev/null +++ b/src/IconArtistRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtistRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtistRoundedFilled as default } diff --git a/src/IconArtistSharpFilled.tsx b/src/IconArtistSharpFilled.tsx new file mode 100644 index 000000000..4e4ed3adb --- /dev/null +++ b/src/IconArtistSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconArtistSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconArtistSharpFilled as default } diff --git a/src/IconAspectRatioOutlinedFilled.tsx b/src/IconAspectRatioOutlinedFilled.tsx new file mode 100644 index 000000000..7beece997 --- /dev/null +++ b/src/IconAspectRatioOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAspectRatioOutlinedFilled as default } diff --git a/src/IconAspectRatioRoundedFilled.tsx b/src/IconAspectRatioRoundedFilled.tsx new file mode 100644 index 000000000..ad76b5553 --- /dev/null +++ b/src/IconAspectRatioRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAspectRatioRoundedFilled as default } diff --git a/src/IconAspectRatioSharpFilled.tsx b/src/IconAspectRatioSharpFilled.tsx new file mode 100644 index 000000000..8ebc666ed --- /dev/null +++ b/src/IconAspectRatioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAspectRatioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAspectRatioSharpFilled as default } diff --git a/src/IconAssignmentAddOutlinedFilled.tsx b/src/IconAssignmentAddOutlinedFilled.tsx new file mode 100644 index 000000000..c44fc5614 --- /dev/null +++ b/src/IconAssignmentAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentAddOutlinedFilled as default } diff --git a/src/IconAssignmentAddRoundedFilled.tsx b/src/IconAssignmentAddRoundedFilled.tsx new file mode 100644 index 000000000..8102b4ebb --- /dev/null +++ b/src/IconAssignmentAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentAddRoundedFilled as default } diff --git a/src/IconAssignmentAddSharpFilled.tsx b/src/IconAssignmentAddSharpFilled.tsx new file mode 100644 index 000000000..21629240f --- /dev/null +++ b/src/IconAssignmentAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentAddSharpFilled as default } diff --git a/src/IconAssignmentIndOutlinedFilled.tsx b/src/IconAssignmentIndOutlinedFilled.tsx new file mode 100644 index 000000000..6233730ae --- /dev/null +++ b/src/IconAssignmentIndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentIndOutlinedFilled as default } diff --git a/src/IconAssignmentIndRoundedFilled.tsx b/src/IconAssignmentIndRoundedFilled.tsx new file mode 100644 index 000000000..e95d5f199 --- /dev/null +++ b/src/IconAssignmentIndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentIndRoundedFilled as default } diff --git a/src/IconAssignmentIndSharpFilled.tsx b/src/IconAssignmentIndSharpFilled.tsx new file mode 100644 index 000000000..13a15d1e9 --- /dev/null +++ b/src/IconAssignmentIndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentIndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentIndSharpFilled as default } diff --git a/src/IconAssignmentLateOutlinedFilled.tsx b/src/IconAssignmentLateOutlinedFilled.tsx new file mode 100644 index 000000000..0614c01e4 --- /dev/null +++ b/src/IconAssignmentLateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentLateOutlinedFilled as default } diff --git a/src/IconAssignmentLateRoundedFilled.tsx b/src/IconAssignmentLateRoundedFilled.tsx new file mode 100644 index 000000000..2243e171f --- /dev/null +++ b/src/IconAssignmentLateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentLateRoundedFilled as default } diff --git a/src/IconAssignmentLateSharpFilled.tsx b/src/IconAssignmentLateSharpFilled.tsx new file mode 100644 index 000000000..c250f3b91 --- /dev/null +++ b/src/IconAssignmentLateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentLateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentLateSharpFilled as default } diff --git a/src/IconAssignmentOutlinedFilled.tsx b/src/IconAssignmentOutlinedFilled.tsx new file mode 100644 index 000000000..a0085c699 --- /dev/null +++ b/src/IconAssignmentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentOutlinedFilled as default } diff --git a/src/IconAssignmentReturnOutlinedFilled.tsx b/src/IconAssignmentReturnOutlinedFilled.tsx new file mode 100644 index 000000000..0b39125b8 --- /dev/null +++ b/src/IconAssignmentReturnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentReturnOutlinedFilled as default } diff --git a/src/IconAssignmentReturnRoundedFilled.tsx b/src/IconAssignmentReturnRoundedFilled.tsx new file mode 100644 index 000000000..32d580318 --- /dev/null +++ b/src/IconAssignmentReturnRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentReturnRoundedFilled as default } diff --git a/src/IconAssignmentReturnSharpFilled.tsx b/src/IconAssignmentReturnSharpFilled.tsx new file mode 100644 index 000000000..6747a6ad7 --- /dev/null +++ b/src/IconAssignmentReturnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentReturnSharpFilled as default } diff --git a/src/IconAssignmentReturnedOutlinedFilled.tsx b/src/IconAssignmentReturnedOutlinedFilled.tsx new file mode 100644 index 000000000..e909b3110 --- /dev/null +++ b/src/IconAssignmentReturnedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentReturnedOutlinedFilled as default } diff --git a/src/IconAssignmentReturnedRoundedFilled.tsx b/src/IconAssignmentReturnedRoundedFilled.tsx new file mode 100644 index 000000000..7bf45b8ea --- /dev/null +++ b/src/IconAssignmentReturnedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentReturnedRoundedFilled as default } diff --git a/src/IconAssignmentReturnedSharpFilled.tsx b/src/IconAssignmentReturnedSharpFilled.tsx new file mode 100644 index 000000000..c03874f6a --- /dev/null +++ b/src/IconAssignmentReturnedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentReturnedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentReturnedSharpFilled as default } diff --git a/src/IconAssignmentRoundedFilled.tsx b/src/IconAssignmentRoundedFilled.tsx new file mode 100644 index 000000000..f0108a58e --- /dev/null +++ b/src/IconAssignmentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentRoundedFilled as default } diff --git a/src/IconAssignmentSharpFilled.tsx b/src/IconAssignmentSharpFilled.tsx new file mode 100644 index 000000000..729345dab --- /dev/null +++ b/src/IconAssignmentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentSharpFilled as default } diff --git a/src/IconAssignmentTurnedInOutlinedFilled.tsx b/src/IconAssignmentTurnedInOutlinedFilled.tsx new file mode 100644 index 000000000..5cb18454d --- /dev/null +++ b/src/IconAssignmentTurnedInOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentTurnedInOutlinedFilled as default } diff --git a/src/IconAssignmentTurnedInRoundedFilled.tsx b/src/IconAssignmentTurnedInRoundedFilled.tsx new file mode 100644 index 000000000..78c307952 --- /dev/null +++ b/src/IconAssignmentTurnedInRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentTurnedInRoundedFilled as default } diff --git a/src/IconAssignmentTurnedInSharpFilled.tsx b/src/IconAssignmentTurnedInSharpFilled.tsx new file mode 100644 index 000000000..1f07b3887 --- /dev/null +++ b/src/IconAssignmentTurnedInSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssignmentTurnedInSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssignmentTurnedInSharpFilled as default } diff --git a/src/IconAssistWalkerOutlinedFilled.tsx b/src/IconAssistWalkerOutlinedFilled.tsx new file mode 100644 index 000000000..d005654e4 --- /dev/null +++ b/src/IconAssistWalkerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistWalkerOutlinedFilled as default } diff --git a/src/IconAssistWalkerRoundedFilled.tsx b/src/IconAssistWalkerRoundedFilled.tsx new file mode 100644 index 000000000..685cef711 --- /dev/null +++ b/src/IconAssistWalkerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistWalkerRoundedFilled as default } diff --git a/src/IconAssistWalkerSharpFilled.tsx b/src/IconAssistWalkerSharpFilled.tsx new file mode 100644 index 000000000..4f92a60fa --- /dev/null +++ b/src/IconAssistWalkerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistWalkerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistWalkerSharpFilled as default } diff --git a/src/IconAssistantDeviceOutlinedFilled.tsx b/src/IconAssistantDeviceOutlinedFilled.tsx new file mode 100644 index 000000000..59dd84aa3 --- /dev/null +++ b/src/IconAssistantDeviceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDeviceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantDeviceOutlinedFilled as default } diff --git a/src/IconAssistantDeviceRoundedFilled.tsx b/src/IconAssistantDeviceRoundedFilled.tsx new file mode 100644 index 000000000..d6a56cecd --- /dev/null +++ b/src/IconAssistantDeviceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDeviceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantDeviceRoundedFilled as default } diff --git a/src/IconAssistantDeviceSharpFilled.tsx b/src/IconAssistantDeviceSharpFilled.tsx new file mode 100644 index 000000000..edc38715e --- /dev/null +++ b/src/IconAssistantDeviceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDeviceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantDeviceSharpFilled as default } diff --git a/src/IconAssistantDirectionOutlinedFilled.tsx b/src/IconAssistantDirectionOutlinedFilled.tsx new file mode 100644 index 000000000..0caed6e44 --- /dev/null +++ b/src/IconAssistantDirectionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantDirectionOutlinedFilled as default } diff --git a/src/IconAssistantDirectionRoundedFilled.tsx b/src/IconAssistantDirectionRoundedFilled.tsx new file mode 100644 index 000000000..ab4b2c446 --- /dev/null +++ b/src/IconAssistantDirectionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantDirectionRoundedFilled as default } diff --git a/src/IconAssistantDirectionSharpFilled.tsx b/src/IconAssistantDirectionSharpFilled.tsx new file mode 100644 index 000000000..64903223b --- /dev/null +++ b/src/IconAssistantDirectionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantDirectionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantDirectionSharpFilled as default } diff --git a/src/IconAssistantNavigationOutlinedFilled.tsx b/src/IconAssistantNavigationOutlinedFilled.tsx new file mode 100644 index 000000000..11dd36264 --- /dev/null +++ b/src/IconAssistantNavigationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantNavigationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantNavigationOutlinedFilled as default } diff --git a/src/IconAssistantNavigationRoundedFilled.tsx b/src/IconAssistantNavigationRoundedFilled.tsx new file mode 100644 index 000000000..e11ada2c6 --- /dev/null +++ b/src/IconAssistantNavigationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantNavigationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantNavigationRoundedFilled as default } diff --git a/src/IconAssistantNavigationSharpFilled.tsx b/src/IconAssistantNavigationSharpFilled.tsx new file mode 100644 index 000000000..f8610ebcb --- /dev/null +++ b/src/IconAssistantNavigationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantNavigationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantNavigationSharpFilled as default } diff --git a/src/IconAssistantOnHubOutlinedFilled.tsx b/src/IconAssistantOnHubOutlinedFilled.tsx new file mode 100644 index 000000000..b68f2b8ae --- /dev/null +++ b/src/IconAssistantOnHubOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantOnHubOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantOnHubOutlinedFilled as default } diff --git a/src/IconAssistantOnHubRoundedFilled.tsx b/src/IconAssistantOnHubRoundedFilled.tsx new file mode 100644 index 000000000..03f7e38bc --- /dev/null +++ b/src/IconAssistantOnHubRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantOnHubRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantOnHubRoundedFilled as default } diff --git a/src/IconAssistantOnHubSharpFilled.tsx b/src/IconAssistantOnHubSharpFilled.tsx new file mode 100644 index 000000000..557c95c92 --- /dev/null +++ b/src/IconAssistantOnHubSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssistantOnHubSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssistantOnHubSharpFilled as default } diff --git a/src/IconAssuredWorkloadOutlinedFilled.tsx b/src/IconAssuredWorkloadOutlinedFilled.tsx new file mode 100644 index 000000000..8e5632fad --- /dev/null +++ b/src/IconAssuredWorkloadOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssuredWorkloadOutlinedFilled as default } diff --git a/src/IconAssuredWorkloadRoundedFilled.tsx b/src/IconAssuredWorkloadRoundedFilled.tsx new file mode 100644 index 000000000..06be8bdbb --- /dev/null +++ b/src/IconAssuredWorkloadRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAssuredWorkloadRoundedFilled as default } diff --git a/src/IconAssuredWorkloadSharpFilled.tsx b/src/IconAssuredWorkloadSharpFilled.tsx new file mode 100644 index 000000000..3d0b6d414 --- /dev/null +++ b/src/IconAssuredWorkloadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAssuredWorkloadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAssuredWorkloadSharpFilled as default } diff --git a/src/IconAsteriskOutlinedFilled.tsx b/src/IconAsteriskOutlinedFilled.tsx new file mode 100644 index 000000000..6768d4ecc --- /dev/null +++ b/src/IconAsteriskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAsteriskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAsteriskOutlinedFilled as default } diff --git a/src/IconAsteriskRoundedFilled.tsx b/src/IconAsteriskRoundedFilled.tsx new file mode 100644 index 000000000..919af36c3 --- /dev/null +++ b/src/IconAsteriskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAsteriskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAsteriskRoundedFilled as default } diff --git a/src/IconAsteriskSharpFilled.tsx b/src/IconAsteriskSharpFilled.tsx new file mode 100644 index 000000000..ce2eb8f1c --- /dev/null +++ b/src/IconAsteriskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAsteriskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAsteriskSharpFilled as default } diff --git a/src/IconAtmOutlinedFilled.tsx b/src/IconAtmOutlinedFilled.tsx new file mode 100644 index 000000000..2ffd96fc5 --- /dev/null +++ b/src/IconAtmOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAtmOutlinedFilled as default } diff --git a/src/IconAtmRoundedFilled.tsx b/src/IconAtmRoundedFilled.tsx new file mode 100644 index 000000000..5f6fdee9b --- /dev/null +++ b/src/IconAtmRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAtmRoundedFilled as default } diff --git a/src/IconAtmSharpFilled.tsx b/src/IconAtmSharpFilled.tsx new file mode 100644 index 000000000..42e99b2eb --- /dev/null +++ b/src/IconAtmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAtmSharpFilled as default } diff --git a/src/IconAtrOutlinedFilled.tsx b/src/IconAtrOutlinedFilled.tsx new file mode 100644 index 000000000..63bfb5fe4 --- /dev/null +++ b/src/IconAtrOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtrOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAtrOutlinedFilled as default } diff --git a/src/IconAtrRoundedFilled.tsx b/src/IconAtrRoundedFilled.tsx new file mode 100644 index 000000000..1a28c3615 --- /dev/null +++ b/src/IconAtrRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtrRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAtrRoundedFilled as default } diff --git a/src/IconAtrSharpFilled.tsx b/src/IconAtrSharpFilled.tsx new file mode 100644 index 000000000..46fba9e92 --- /dev/null +++ b/src/IconAtrSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAtrSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAtrSharpFilled as default } diff --git a/src/IconAttachEmailOutlinedFilled.tsx b/src/IconAttachEmailOutlinedFilled.tsx new file mode 100644 index 000000000..44ca80e1e --- /dev/null +++ b/src/IconAttachEmailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachEmailOutlinedFilled as default } diff --git a/src/IconAttachEmailRoundedFilled.tsx b/src/IconAttachEmailRoundedFilled.tsx new file mode 100644 index 000000000..0468409a9 --- /dev/null +++ b/src/IconAttachEmailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachEmailRoundedFilled as default } diff --git a/src/IconAttachEmailSharpFilled.tsx b/src/IconAttachEmailSharpFilled.tsx new file mode 100644 index 000000000..e80f40b9d --- /dev/null +++ b/src/IconAttachEmailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachEmailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachEmailSharpFilled as default } diff --git a/src/IconAttachFileAddOutlinedFilled.tsx b/src/IconAttachFileAddOutlinedFilled.tsx new file mode 100644 index 000000000..9cafbae6b --- /dev/null +++ b/src/IconAttachFileAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileAddOutlinedFilled as default } diff --git a/src/IconAttachFileAddRoundedFilled.tsx b/src/IconAttachFileAddRoundedFilled.tsx new file mode 100644 index 000000000..8d4757196 --- /dev/null +++ b/src/IconAttachFileAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileAddRoundedFilled as default } diff --git a/src/IconAttachFileAddSharpFilled.tsx b/src/IconAttachFileAddSharpFilled.tsx new file mode 100644 index 000000000..1a8e5fd70 --- /dev/null +++ b/src/IconAttachFileAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileAddSharpFilled as default } diff --git a/src/IconAttachFileOffOutlinedFilled.tsx b/src/IconAttachFileOffOutlinedFilled.tsx new file mode 100644 index 000000000..b4da7cfd0 --- /dev/null +++ b/src/IconAttachFileOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileOffOutlinedFilled as default } diff --git a/src/IconAttachFileOffRoundedFilled.tsx b/src/IconAttachFileOffRoundedFilled.tsx new file mode 100644 index 000000000..36037aade --- /dev/null +++ b/src/IconAttachFileOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileOffRoundedFilled as default } diff --git a/src/IconAttachFileOffSharpFilled.tsx b/src/IconAttachFileOffSharpFilled.tsx new file mode 100644 index 000000000..ae5dafc61 --- /dev/null +++ b/src/IconAttachFileOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileOffSharpFilled as default } diff --git a/src/IconAttachFileOutlinedFilled.tsx b/src/IconAttachFileOutlinedFilled.tsx new file mode 100644 index 000000000..59612c135 --- /dev/null +++ b/src/IconAttachFileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileOutlinedFilled as default } diff --git a/src/IconAttachFileRoundedFilled.tsx b/src/IconAttachFileRoundedFilled.tsx new file mode 100644 index 000000000..6a43767be --- /dev/null +++ b/src/IconAttachFileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileRoundedFilled as default } diff --git a/src/IconAttachFileSharpFilled.tsx b/src/IconAttachFileSharpFilled.tsx new file mode 100644 index 000000000..8a06f738c --- /dev/null +++ b/src/IconAttachFileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachFileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachFileSharpFilled as default } diff --git a/src/IconAttachMoneyOutlinedFilled.tsx b/src/IconAttachMoneyOutlinedFilled.tsx new file mode 100644 index 000000000..e32c1962c --- /dev/null +++ b/src/IconAttachMoneyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachMoneyOutlinedFilled as default } diff --git a/src/IconAttachMoneyRoundedFilled.tsx b/src/IconAttachMoneyRoundedFilled.tsx new file mode 100644 index 000000000..d5ac9e90e --- /dev/null +++ b/src/IconAttachMoneyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachMoneyRoundedFilled as default } diff --git a/src/IconAttachMoneySharpFilled.tsx b/src/IconAttachMoneySharpFilled.tsx new file mode 100644 index 000000000..d64b40805 --- /dev/null +++ b/src/IconAttachMoneySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachMoneySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachMoneySharpFilled as default } diff --git a/src/IconAttachmentOutlinedFilled.tsx b/src/IconAttachmentOutlinedFilled.tsx new file mode 100644 index 000000000..bb7c37fb1 --- /dev/null +++ b/src/IconAttachmentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachmentOutlinedFilled as default } diff --git a/src/IconAttachmentRoundedFilled.tsx b/src/IconAttachmentRoundedFilled.tsx new file mode 100644 index 000000000..ca3fbf44a --- /dev/null +++ b/src/IconAttachmentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachmentRoundedFilled as default } diff --git a/src/IconAttachmentSharpFilled.tsx b/src/IconAttachmentSharpFilled.tsx new file mode 100644 index 000000000..edf31bfb7 --- /dev/null +++ b/src/IconAttachmentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttachmentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttachmentSharpFilled as default } diff --git a/src/IconAttractionsOutlinedFilled.tsx b/src/IconAttractionsOutlinedFilled.tsx new file mode 100644 index 000000000..d162ffec8 --- /dev/null +++ b/src/IconAttractionsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttractionsOutlinedFilled as default } diff --git a/src/IconAttractionsRoundedFilled.tsx b/src/IconAttractionsRoundedFilled.tsx new file mode 100644 index 000000000..22e551ac0 --- /dev/null +++ b/src/IconAttractionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttractionsRoundedFilled as default } diff --git a/src/IconAttractionsSharpFilled.tsx b/src/IconAttractionsSharpFilled.tsx new file mode 100644 index 000000000..145debe5d --- /dev/null +++ b/src/IconAttractionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttractionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttractionsSharpFilled as default } diff --git a/src/IconAttributionOutlinedFilled.tsx b/src/IconAttributionOutlinedFilled.tsx new file mode 100644 index 000000000..11ee3aac1 --- /dev/null +++ b/src/IconAttributionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttributionOutlinedFilled as default } diff --git a/src/IconAttributionRoundedFilled.tsx b/src/IconAttributionRoundedFilled.tsx new file mode 100644 index 000000000..9bb871224 --- /dev/null +++ b/src/IconAttributionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttributionRoundedFilled as default } diff --git a/src/IconAttributionSharpFilled.tsx b/src/IconAttributionSharpFilled.tsx new file mode 100644 index 000000000..52105d541 --- /dev/null +++ b/src/IconAttributionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAttributionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAttributionSharpFilled as default } diff --git a/src/IconAudioDescriptionOutlinedFilled.tsx b/src/IconAudioDescriptionOutlinedFilled.tsx new file mode 100644 index 000000000..0c6fb2217 --- /dev/null +++ b/src/IconAudioDescriptionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioDescriptionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioDescriptionOutlinedFilled as default } diff --git a/src/IconAudioDescriptionRoundedFilled.tsx b/src/IconAudioDescriptionRoundedFilled.tsx new file mode 100644 index 000000000..e376ff801 --- /dev/null +++ b/src/IconAudioDescriptionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioDescriptionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioDescriptionRoundedFilled as default } diff --git a/src/IconAudioDescriptionSharpFilled.tsx b/src/IconAudioDescriptionSharpFilled.tsx new file mode 100644 index 000000000..113fdc4bf --- /dev/null +++ b/src/IconAudioDescriptionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioDescriptionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioDescriptionSharpFilled as default } diff --git a/src/IconAudioFileOutlinedFilled.tsx b/src/IconAudioFileOutlinedFilled.tsx new file mode 100644 index 000000000..e4fb31250 --- /dev/null +++ b/src/IconAudioFileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioFileOutlinedFilled as default } diff --git a/src/IconAudioFileRoundedFilled.tsx b/src/IconAudioFileRoundedFilled.tsx new file mode 100644 index 000000000..592919d6c --- /dev/null +++ b/src/IconAudioFileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioFileRoundedFilled as default } diff --git a/src/IconAudioFileSharpFilled.tsx b/src/IconAudioFileSharpFilled.tsx new file mode 100644 index 000000000..8854e3da2 --- /dev/null +++ b/src/IconAudioFileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioFileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioFileSharpFilled as default } diff --git a/src/IconAudioVideoReceiverOutlinedFilled.tsx b/src/IconAudioVideoReceiverOutlinedFilled.tsx new file mode 100644 index 000000000..a729220d6 --- /dev/null +++ b/src/IconAudioVideoReceiverOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioVideoReceiverOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioVideoReceiverOutlinedFilled as default } diff --git a/src/IconAudioVideoReceiverRoundedFilled.tsx b/src/IconAudioVideoReceiverRoundedFilled.tsx new file mode 100644 index 000000000..9235b4dc6 --- /dev/null +++ b/src/IconAudioVideoReceiverRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioVideoReceiverRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioVideoReceiverRoundedFilled as default } diff --git a/src/IconAudioVideoReceiverSharpFilled.tsx b/src/IconAudioVideoReceiverSharpFilled.tsx new file mode 100644 index 000000000..0e869eb4f --- /dev/null +++ b/src/IconAudioVideoReceiverSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAudioVideoReceiverSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAudioVideoReceiverSharpFilled as default } diff --git a/src/IconAutoAwesomeMosaicOutlinedFilled.tsx b/src/IconAutoAwesomeMosaicOutlinedFilled.tsx new file mode 100644 index 000000000..f2b21e07e --- /dev/null +++ b/src/IconAutoAwesomeMosaicOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoAwesomeMosaicOutlinedFilled as default } diff --git a/src/IconAutoAwesomeMosaicRoundedFilled.tsx b/src/IconAutoAwesomeMosaicRoundedFilled.tsx new file mode 100644 index 000000000..867cda131 --- /dev/null +++ b/src/IconAutoAwesomeMosaicRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoAwesomeMosaicRoundedFilled as default } diff --git a/src/IconAutoAwesomeMosaicSharpFilled.tsx b/src/IconAutoAwesomeMosaicSharpFilled.tsx new file mode 100644 index 000000000..4a4bfc475 --- /dev/null +++ b/src/IconAutoAwesomeMosaicSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMosaicSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoAwesomeMosaicSharpFilled as default } diff --git a/src/IconAutoAwesomeMotionOutlinedFilled.tsx b/src/IconAutoAwesomeMotionOutlinedFilled.tsx new file mode 100644 index 000000000..a74424b85 --- /dev/null +++ b/src/IconAutoAwesomeMotionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoAwesomeMotionOutlinedFilled as default } diff --git a/src/IconAutoAwesomeMotionRoundedFilled.tsx b/src/IconAutoAwesomeMotionRoundedFilled.tsx new file mode 100644 index 000000000..86972787b --- /dev/null +++ b/src/IconAutoAwesomeMotionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoAwesomeMotionRoundedFilled as default } diff --git a/src/IconAutoAwesomeMotionSharpFilled.tsx b/src/IconAutoAwesomeMotionSharpFilled.tsx new file mode 100644 index 000000000..c88c3c8e7 --- /dev/null +++ b/src/IconAutoAwesomeMotionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoAwesomeMotionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoAwesomeMotionSharpFilled as default } diff --git a/src/IconAutoDeleteOutlinedFilled.tsx b/src/IconAutoDeleteOutlinedFilled.tsx new file mode 100644 index 000000000..847fcf544 --- /dev/null +++ b/src/IconAutoDeleteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoDeleteOutlinedFilled as default } diff --git a/src/IconAutoDeleteRoundedFilled.tsx b/src/IconAutoDeleteRoundedFilled.tsx new file mode 100644 index 000000000..b4fe83c2b --- /dev/null +++ b/src/IconAutoDeleteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoDeleteRoundedFilled as default } diff --git a/src/IconAutoDeleteSharpFilled.tsx b/src/IconAutoDeleteSharpFilled.tsx new file mode 100644 index 000000000..de7ca4b7d --- /dev/null +++ b/src/IconAutoDeleteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoDeleteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoDeleteSharpFilled as default } diff --git a/src/IconAutoReadPauseOutlinedFilled.tsx b/src/IconAutoReadPauseOutlinedFilled.tsx new file mode 100644 index 000000000..20c4a6d07 --- /dev/null +++ b/src/IconAutoReadPauseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoReadPauseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoReadPauseOutlinedFilled as default } diff --git a/src/IconAutoReadPauseRoundedFilled.tsx b/src/IconAutoReadPauseRoundedFilled.tsx new file mode 100644 index 000000000..e44b24f79 --- /dev/null +++ b/src/IconAutoReadPauseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoReadPauseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoReadPauseRoundedFilled as default } diff --git a/src/IconAutoReadPauseSharpFilled.tsx b/src/IconAutoReadPauseSharpFilled.tsx new file mode 100644 index 000000000..9d4e4c34c --- /dev/null +++ b/src/IconAutoReadPauseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoReadPauseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoReadPauseSharpFilled as default } diff --git a/src/IconAutoReadPlayOutlinedFilled.tsx b/src/IconAutoReadPlayOutlinedFilled.tsx new file mode 100644 index 000000000..a465aad4f --- /dev/null +++ b/src/IconAutoReadPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoReadPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoReadPlayOutlinedFilled as default } diff --git a/src/IconAutoReadPlayRoundedFilled.tsx b/src/IconAutoReadPlayRoundedFilled.tsx new file mode 100644 index 000000000..11f77b5bf --- /dev/null +++ b/src/IconAutoReadPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoReadPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoReadPlayRoundedFilled as default } diff --git a/src/IconAutoReadPlaySharpFilled.tsx b/src/IconAutoReadPlaySharpFilled.tsx new file mode 100644 index 000000000..adb05a172 --- /dev/null +++ b/src/IconAutoReadPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoReadPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoReadPlaySharpFilled as default } diff --git a/src/IconAutoStoriesOutlinedFilled.tsx b/src/IconAutoStoriesOutlinedFilled.tsx new file mode 100644 index 000000000..ac1af5221 --- /dev/null +++ b/src/IconAutoStoriesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoStoriesOutlinedFilled as default } diff --git a/src/IconAutoStoriesRoundedFilled.tsx b/src/IconAutoStoriesRoundedFilled.tsx new file mode 100644 index 000000000..2dbd14b8a --- /dev/null +++ b/src/IconAutoStoriesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoStoriesRoundedFilled as default } diff --git a/src/IconAutoStoriesSharpFilled.tsx b/src/IconAutoStoriesSharpFilled.tsx new file mode 100644 index 000000000..dbcb820e7 --- /dev/null +++ b/src/IconAutoStoriesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoStoriesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoStoriesSharpFilled as default } diff --git a/src/IconAutoTowingOutlinedFilled.tsx b/src/IconAutoTowingOutlinedFilled.tsx new file mode 100644 index 000000000..91df27743 --- /dev/null +++ b/src/IconAutoTowingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoTowingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoTowingOutlinedFilled as default } diff --git a/src/IconAutoTowingRoundedFilled.tsx b/src/IconAutoTowingRoundedFilled.tsx new file mode 100644 index 000000000..8ed04515e --- /dev/null +++ b/src/IconAutoTowingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoTowingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoTowingRoundedFilled as default } diff --git a/src/IconAutoTowingSharpFilled.tsx b/src/IconAutoTowingSharpFilled.tsx new file mode 100644 index 000000000..9b8365fd0 --- /dev/null +++ b/src/IconAutoTowingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoTowingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoTowingSharpFilled as default } diff --git a/src/IconAutoTransmissionOutlinedFilled.tsx b/src/IconAutoTransmissionOutlinedFilled.tsx new file mode 100644 index 000000000..6e5f5767b --- /dev/null +++ b/src/IconAutoTransmissionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoTransmissionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoTransmissionOutlinedFilled as default } diff --git a/src/IconAutoTransmissionRoundedFilled.tsx b/src/IconAutoTransmissionRoundedFilled.tsx new file mode 100644 index 000000000..4c7e11327 --- /dev/null +++ b/src/IconAutoTransmissionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoTransmissionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoTransmissionRoundedFilled as default } diff --git a/src/IconAutoTransmissionSharpFilled.tsx b/src/IconAutoTransmissionSharpFilled.tsx new file mode 100644 index 000000000..916899c10 --- /dev/null +++ b/src/IconAutoTransmissionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoTransmissionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoTransmissionSharpFilled as default } diff --git a/src/IconAutofpsSelectOutlinedFilled.tsx b/src/IconAutofpsSelectOutlinedFilled.tsx new file mode 100644 index 000000000..6d117e80c --- /dev/null +++ b/src/IconAutofpsSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutofpsSelectOutlinedFilled as default } diff --git a/src/IconAutofpsSelectRoundedFilled.tsx b/src/IconAutofpsSelectRoundedFilled.tsx new file mode 100644 index 000000000..a1ca51375 --- /dev/null +++ b/src/IconAutofpsSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutofpsSelectRoundedFilled as default } diff --git a/src/IconAutofpsSelectSharpFilled.tsx b/src/IconAutofpsSelectSharpFilled.tsx new file mode 100644 index 000000000..431f889d3 --- /dev/null +++ b/src/IconAutofpsSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutofpsSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutofpsSelectSharpFilled as default } diff --git a/src/IconAutomationOutlinedFilled.tsx b/src/IconAutomationOutlinedFilled.tsx new file mode 100644 index 000000000..c9017b141 --- /dev/null +++ b/src/IconAutomationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutomationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutomationOutlinedFilled as default } diff --git a/src/IconAutomationRoundedFilled.tsx b/src/IconAutomationRoundedFilled.tsx new file mode 100644 index 000000000..a1550dc3c --- /dev/null +++ b/src/IconAutomationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutomationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutomationRoundedFilled as default } diff --git a/src/IconAutomationSharpFilled.tsx b/src/IconAutomationSharpFilled.tsx new file mode 100644 index 000000000..240f16128 --- /dev/null +++ b/src/IconAutomationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutomationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutomationSharpFilled as default } diff --git a/src/IconAutopauseOutlinedFilled.tsx b/src/IconAutopauseOutlinedFilled.tsx new file mode 100644 index 000000000..0ab77f94d --- /dev/null +++ b/src/IconAutopauseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutopauseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutopauseOutlinedFilled as default } diff --git a/src/IconAutopauseRoundedFilled.tsx b/src/IconAutopauseRoundedFilled.tsx new file mode 100644 index 000000000..ac96b4841 --- /dev/null +++ b/src/IconAutopauseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutopauseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutopauseRoundedFilled as default } diff --git a/src/IconAutopauseSharpFilled.tsx b/src/IconAutopauseSharpFilled.tsx new file mode 100644 index 000000000..2855e78a9 --- /dev/null +++ b/src/IconAutopauseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutopauseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutopauseSharpFilled as default } diff --git a/src/IconAutoplayOutlinedFilled.tsx b/src/IconAutoplayOutlinedFilled.tsx new file mode 100644 index 000000000..fc5f1bf41 --- /dev/null +++ b/src/IconAutoplayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoplayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoplayOutlinedFilled as default } diff --git a/src/IconAutoplayRoundedFilled.tsx b/src/IconAutoplayRoundedFilled.tsx new file mode 100644 index 000000000..c278ffda8 --- /dev/null +++ b/src/IconAutoplayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoplayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoplayRoundedFilled as default } diff --git a/src/IconAutoplaySharpFilled.tsx b/src/IconAutoplaySharpFilled.tsx new file mode 100644 index 000000000..3014afcf2 --- /dev/null +++ b/src/IconAutoplaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutoplaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutoplaySharpFilled as default } diff --git a/src/IconAutorenewOutlinedFilled.tsx b/src/IconAutorenewOutlinedFilled.tsx new file mode 100644 index 000000000..21b256833 --- /dev/null +++ b/src/IconAutorenewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutorenewOutlinedFilled as default } diff --git a/src/IconAutorenewRoundedFilled.tsx b/src/IconAutorenewRoundedFilled.tsx new file mode 100644 index 000000000..a3ff95d84 --- /dev/null +++ b/src/IconAutorenewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutorenewRoundedFilled as default } diff --git a/src/IconAutorenewSharpFilled.tsx b/src/IconAutorenewSharpFilled.tsx new file mode 100644 index 000000000..f9521d249 --- /dev/null +++ b/src/IconAutorenewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutorenewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutorenewSharpFilled as default } diff --git a/src/IconAutostopOutlinedFilled.tsx b/src/IconAutostopOutlinedFilled.tsx new file mode 100644 index 000000000..376df06cd --- /dev/null +++ b/src/IconAutostopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutostopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutostopOutlinedFilled as default } diff --git a/src/IconAutostopRoundedFilled.tsx b/src/IconAutostopRoundedFilled.tsx new file mode 100644 index 000000000..3cb5b5ef2 --- /dev/null +++ b/src/IconAutostopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutostopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutostopRoundedFilled as default } diff --git a/src/IconAutostopSharpFilled.tsx b/src/IconAutostopSharpFilled.tsx new file mode 100644 index 000000000..3441991fe --- /dev/null +++ b/src/IconAutostopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAutostopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAutostopSharpFilled as default } diff --git a/src/IconAv1OutlinedFilled.tsx b/src/IconAv1OutlinedFilled.tsx new file mode 100644 index 000000000..f13d5736f --- /dev/null +++ b/src/IconAv1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAv1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAv1OutlinedFilled as default } diff --git a/src/IconAv1RoundedFilled.tsx b/src/IconAv1RoundedFilled.tsx new file mode 100644 index 000000000..2562ab02d --- /dev/null +++ b/src/IconAv1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAv1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAv1RoundedFilled as default } diff --git a/src/IconAv1SharpFilled.tsx b/src/IconAv1SharpFilled.tsx new file mode 100644 index 000000000..1f8d4aaad --- /dev/null +++ b/src/IconAv1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAv1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAv1SharpFilled as default } diff --git a/src/IconAvTimerOutlinedFilled.tsx b/src/IconAvTimerOutlinedFilled.tsx new file mode 100644 index 000000000..f991aea6e --- /dev/null +++ b/src/IconAvTimerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvTimerOutlinedFilled as default } diff --git a/src/IconAvTimerRoundedFilled.tsx b/src/IconAvTimerRoundedFilled.tsx new file mode 100644 index 000000000..aeb90a239 --- /dev/null +++ b/src/IconAvTimerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvTimerRoundedFilled as default } diff --git a/src/IconAvTimerSharpFilled.tsx b/src/IconAvTimerSharpFilled.tsx new file mode 100644 index 000000000..93716081d --- /dev/null +++ b/src/IconAvTimerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvTimerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvTimerSharpFilled as default } diff --git a/src/IconAvcOutlinedFilled.tsx b/src/IconAvcOutlinedFilled.tsx new file mode 100644 index 000000000..eb384ce86 --- /dev/null +++ b/src/IconAvcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvcOutlinedFilled as default } diff --git a/src/IconAvcRoundedFilled.tsx b/src/IconAvcRoundedFilled.tsx new file mode 100644 index 000000000..2be639d78 --- /dev/null +++ b/src/IconAvcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvcRoundedFilled as default } diff --git a/src/IconAvcSharpFilled.tsx b/src/IconAvcSharpFilled.tsx new file mode 100644 index 000000000..50fc52f84 --- /dev/null +++ b/src/IconAvcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvcSharpFilled as default } diff --git a/src/IconAvgPaceOutlinedFilled.tsx b/src/IconAvgPaceOutlinedFilled.tsx new file mode 100644 index 000000000..bd98cc713 --- /dev/null +++ b/src/IconAvgPaceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvgPaceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvgPaceOutlinedFilled as default } diff --git a/src/IconAvgPaceRoundedFilled.tsx b/src/IconAvgPaceRoundedFilled.tsx new file mode 100644 index 000000000..dc9e21b72 --- /dev/null +++ b/src/IconAvgPaceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvgPaceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvgPaceRoundedFilled as default } diff --git a/src/IconAvgPaceSharpFilled.tsx b/src/IconAvgPaceSharpFilled.tsx new file mode 100644 index 000000000..4d004e8c9 --- /dev/null +++ b/src/IconAvgPaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvgPaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvgPaceSharpFilled as default } diff --git a/src/IconAvgTimeOutlinedFilled.tsx b/src/IconAvgTimeOutlinedFilled.tsx new file mode 100644 index 000000000..3c9588cbb --- /dev/null +++ b/src/IconAvgTimeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvgTimeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvgTimeOutlinedFilled as default } diff --git a/src/IconAvgTimeRoundedFilled.tsx b/src/IconAvgTimeRoundedFilled.tsx new file mode 100644 index 000000000..fb05cb659 --- /dev/null +++ b/src/IconAvgTimeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvgTimeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvgTimeRoundedFilled as default } diff --git a/src/IconAvgTimeSharpFilled.tsx b/src/IconAvgTimeSharpFilled.tsx new file mode 100644 index 000000000..befa473e6 --- /dev/null +++ b/src/IconAvgTimeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAvgTimeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAvgTimeSharpFilled as default } diff --git a/src/IconAwardStarOutlinedFilled.tsx b/src/IconAwardStarOutlinedFilled.tsx new file mode 100644 index 000000000..9a0a4ccf7 --- /dev/null +++ b/src/IconAwardStarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAwardStarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAwardStarOutlinedFilled as default } diff --git a/src/IconAwardStarRoundedFilled.tsx b/src/IconAwardStarRoundedFilled.tsx new file mode 100644 index 000000000..954476bc1 --- /dev/null +++ b/src/IconAwardStarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAwardStarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAwardStarRoundedFilled as default } diff --git a/src/IconAwardStarSharpFilled.tsx b/src/IconAwardStarSharpFilled.tsx new file mode 100644 index 000000000..3b3b780aa --- /dev/null +++ b/src/IconAwardStarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAwardStarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAwardStarSharpFilled as default } diff --git a/src/IconAzmOutlinedFilled.tsx b/src/IconAzmOutlinedFilled.tsx new file mode 100644 index 000000000..812c63863 --- /dev/null +++ b/src/IconAzmOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAzmOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAzmOutlinedFilled as default } diff --git a/src/IconAzmRoundedFilled.tsx b/src/IconAzmRoundedFilled.tsx new file mode 100644 index 000000000..097efde99 --- /dev/null +++ b/src/IconAzmRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAzmRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAzmRoundedFilled as default } diff --git a/src/IconAzmSharpFilled.tsx b/src/IconAzmSharpFilled.tsx new file mode 100644 index 000000000..eac8b1930 --- /dev/null +++ b/src/IconAzmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconAzmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconAzmSharpFilled as default } diff --git a/src/IconBabyChangingStationOutlinedFilled.tsx b/src/IconBabyChangingStationOutlinedFilled.tsx new file mode 100644 index 000000000..574b0ba42 --- /dev/null +++ b/src/IconBabyChangingStationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBabyChangingStationOutlinedFilled as default } diff --git a/src/IconBabyChangingStationRoundedFilled.tsx b/src/IconBabyChangingStationRoundedFilled.tsx new file mode 100644 index 000000000..f0f66893e --- /dev/null +++ b/src/IconBabyChangingStationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBabyChangingStationRoundedFilled as default } diff --git a/src/IconBabyChangingStationSharpFilled.tsx b/src/IconBabyChangingStationSharpFilled.tsx new file mode 100644 index 000000000..9ee63b010 --- /dev/null +++ b/src/IconBabyChangingStationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBabyChangingStationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBabyChangingStationSharpFilled as default } diff --git a/src/IconBackHandOutlinedFilled.tsx b/src/IconBackHandOutlinedFilled.tsx new file mode 100644 index 000000000..0dc09d69c --- /dev/null +++ b/src/IconBackHandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackHandOutlinedFilled as default } diff --git a/src/IconBackHandRoundedFilled.tsx b/src/IconBackHandRoundedFilled.tsx new file mode 100644 index 000000000..6123fc097 --- /dev/null +++ b/src/IconBackHandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackHandRoundedFilled as default } diff --git a/src/IconBackHandSharpFilled.tsx b/src/IconBackHandSharpFilled.tsx new file mode 100644 index 000000000..12b372066 --- /dev/null +++ b/src/IconBackHandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackHandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackHandSharpFilled as default } diff --git a/src/IconBackToTabOutlinedFilled.tsx b/src/IconBackToTabOutlinedFilled.tsx new file mode 100644 index 000000000..6f850666c --- /dev/null +++ b/src/IconBackToTabOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackToTabOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackToTabOutlinedFilled as default } diff --git a/src/IconBackToTabRoundedFilled.tsx b/src/IconBackToTabRoundedFilled.tsx new file mode 100644 index 000000000..559f1045c --- /dev/null +++ b/src/IconBackToTabRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackToTabRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackToTabRoundedFilled as default } diff --git a/src/IconBackToTabSharpFilled.tsx b/src/IconBackToTabSharpFilled.tsx new file mode 100644 index 000000000..758be5909 --- /dev/null +++ b/src/IconBackToTabSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackToTabSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackToTabSharpFilled as default } diff --git a/src/IconBackgroundDotLargeOutlinedFilled.tsx b/src/IconBackgroundDotLargeOutlinedFilled.tsx new file mode 100644 index 000000000..f50e12d68 --- /dev/null +++ b/src/IconBackgroundDotLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundDotLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundDotLargeOutlinedFilled as default } diff --git a/src/IconBackgroundDotLargeRoundedFilled.tsx b/src/IconBackgroundDotLargeRoundedFilled.tsx new file mode 100644 index 000000000..64ad47bfe --- /dev/null +++ b/src/IconBackgroundDotLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundDotLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundDotLargeRoundedFilled as default } diff --git a/src/IconBackgroundDotLargeSharpFilled.tsx b/src/IconBackgroundDotLargeSharpFilled.tsx new file mode 100644 index 000000000..4a2bab0ec --- /dev/null +++ b/src/IconBackgroundDotLargeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundDotLargeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundDotLargeSharpFilled as default } diff --git a/src/IconBackgroundDotSmallOutlinedFilled.tsx b/src/IconBackgroundDotSmallOutlinedFilled.tsx new file mode 100644 index 000000000..9b4395866 --- /dev/null +++ b/src/IconBackgroundDotSmallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundDotSmallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundDotSmallOutlinedFilled as default } diff --git a/src/IconBackgroundDotSmallRoundedFilled.tsx b/src/IconBackgroundDotSmallRoundedFilled.tsx new file mode 100644 index 000000000..8b9168073 --- /dev/null +++ b/src/IconBackgroundDotSmallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundDotSmallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundDotSmallRoundedFilled as default } diff --git a/src/IconBackgroundDotSmallSharpFilled.tsx b/src/IconBackgroundDotSmallSharpFilled.tsx new file mode 100644 index 000000000..c680f4f42 --- /dev/null +++ b/src/IconBackgroundDotSmallSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundDotSmallSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundDotSmallSharpFilled as default } diff --git a/src/IconBackgroundGridSmallOutlinedFilled.tsx b/src/IconBackgroundGridSmallOutlinedFilled.tsx new file mode 100644 index 000000000..cd4f26087 --- /dev/null +++ b/src/IconBackgroundGridSmallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundGridSmallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundGridSmallOutlinedFilled as default } diff --git a/src/IconBackgroundGridSmallRoundedFilled.tsx b/src/IconBackgroundGridSmallRoundedFilled.tsx new file mode 100644 index 000000000..316ed0fce --- /dev/null +++ b/src/IconBackgroundGridSmallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundGridSmallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundGridSmallRoundedFilled as default } diff --git a/src/IconBackgroundGridSmallSharpFilled.tsx b/src/IconBackgroundGridSmallSharpFilled.tsx new file mode 100644 index 000000000..49e7ca4d9 --- /dev/null +++ b/src/IconBackgroundGridSmallSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundGridSmallSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundGridSmallSharpFilled as default } diff --git a/src/IconBackgroundReplaceOutlinedFilled.tsx b/src/IconBackgroundReplaceOutlinedFilled.tsx new file mode 100644 index 000000000..0e89015b7 --- /dev/null +++ b/src/IconBackgroundReplaceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundReplaceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundReplaceOutlinedFilled as default } diff --git a/src/IconBackgroundReplaceRoundedFilled.tsx b/src/IconBackgroundReplaceRoundedFilled.tsx new file mode 100644 index 000000000..20ef10317 --- /dev/null +++ b/src/IconBackgroundReplaceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundReplaceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundReplaceRoundedFilled as default } diff --git a/src/IconBackgroundReplaceSharpFilled.tsx b/src/IconBackgroundReplaceSharpFilled.tsx new file mode 100644 index 000000000..daa9b3d3e --- /dev/null +++ b/src/IconBackgroundReplaceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackgroundReplaceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBackgroundReplaceSharpFilled as default } diff --git a/src/IconBacklightHighOffOutlinedFilled.tsx b/src/IconBacklightHighOffOutlinedFilled.tsx new file mode 100644 index 000000000..4c9014bfa --- /dev/null +++ b/src/IconBacklightHighOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightHighOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightHighOffOutlinedFilled as default } diff --git a/src/IconBacklightHighOffRoundedFilled.tsx b/src/IconBacklightHighOffRoundedFilled.tsx new file mode 100644 index 000000000..d19202a9e --- /dev/null +++ b/src/IconBacklightHighOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightHighOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightHighOffRoundedFilled as default } diff --git a/src/IconBacklightHighOffSharpFilled.tsx b/src/IconBacklightHighOffSharpFilled.tsx new file mode 100644 index 000000000..f02bb19f9 --- /dev/null +++ b/src/IconBacklightHighOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightHighOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightHighOffSharpFilled as default } diff --git a/src/IconBacklightHighOutlinedFilled.tsx b/src/IconBacklightHighOutlinedFilled.tsx new file mode 100644 index 000000000..e43faedac --- /dev/null +++ b/src/IconBacklightHighOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightHighOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightHighOutlinedFilled as default } diff --git a/src/IconBacklightHighRoundedFilled.tsx b/src/IconBacklightHighRoundedFilled.tsx new file mode 100644 index 000000000..abeebd8ee --- /dev/null +++ b/src/IconBacklightHighRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightHighRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightHighRoundedFilled as default } diff --git a/src/IconBacklightHighSharpFilled.tsx b/src/IconBacklightHighSharpFilled.tsx new file mode 100644 index 000000000..03f792f96 --- /dev/null +++ b/src/IconBacklightHighSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightHighSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightHighSharpFilled as default } diff --git a/src/IconBacklightLowOutlinedFilled.tsx b/src/IconBacklightLowOutlinedFilled.tsx new file mode 100644 index 000000000..4f5f9c2c3 --- /dev/null +++ b/src/IconBacklightLowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightLowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightLowOutlinedFilled as default } diff --git a/src/IconBacklightLowRoundedFilled.tsx b/src/IconBacklightLowRoundedFilled.tsx new file mode 100644 index 000000000..db9e55ede --- /dev/null +++ b/src/IconBacklightLowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightLowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightLowRoundedFilled as default } diff --git a/src/IconBacklightLowSharpFilled.tsx b/src/IconBacklightLowSharpFilled.tsx new file mode 100644 index 000000000..5738004e7 --- /dev/null +++ b/src/IconBacklightLowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBacklightLowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBacklightLowSharpFilled as default } diff --git a/src/IconBackpackOutlinedFilled.tsx b/src/IconBackpackOutlinedFilled.tsx new file mode 100644 index 000000000..3daa56cbb --- /dev/null +++ b/src/IconBackpackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackpackOutlinedFilled as default } diff --git a/src/IconBackpackRoundedFilled.tsx b/src/IconBackpackRoundedFilled.tsx new file mode 100644 index 000000000..20c216729 --- /dev/null +++ b/src/IconBackpackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackpackRoundedFilled as default } diff --git a/src/IconBackpackSharpFilled.tsx b/src/IconBackpackSharpFilled.tsx new file mode 100644 index 000000000..2a324b619 --- /dev/null +++ b/src/IconBackpackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackpackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackpackSharpFilled as default } diff --git a/src/IconBackspaceOutlinedFilled.tsx b/src/IconBackspaceOutlinedFilled.tsx new file mode 100644 index 000000000..6e04cca70 --- /dev/null +++ b/src/IconBackspaceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackspaceOutlinedFilled as default } diff --git a/src/IconBackspaceRoundedFilled.tsx b/src/IconBackspaceRoundedFilled.tsx new file mode 100644 index 000000000..60626c5ad --- /dev/null +++ b/src/IconBackspaceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackspaceRoundedFilled as default } diff --git a/src/IconBackspaceSharpFilled.tsx b/src/IconBackspaceSharpFilled.tsx new file mode 100644 index 000000000..2a90597ea --- /dev/null +++ b/src/IconBackspaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackspaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackspaceSharpFilled as default } diff --git a/src/IconBackupOutlinedFilled.tsx b/src/IconBackupOutlinedFilled.tsx new file mode 100644 index 000000000..9146f4c90 --- /dev/null +++ b/src/IconBackupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackupOutlinedFilled as default } diff --git a/src/IconBackupRoundedFilled.tsx b/src/IconBackupRoundedFilled.tsx new file mode 100644 index 000000000..4ff85e612 --- /dev/null +++ b/src/IconBackupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackupRoundedFilled as default } diff --git a/src/IconBackupSharpFilled.tsx b/src/IconBackupSharpFilled.tsx new file mode 100644 index 000000000..d11c9d791 --- /dev/null +++ b/src/IconBackupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackupSharpFilled as default } diff --git a/src/IconBackupTableOutlinedFilled.tsx b/src/IconBackupTableOutlinedFilled.tsx new file mode 100644 index 000000000..d541c88ed --- /dev/null +++ b/src/IconBackupTableOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackupTableOutlinedFilled as default } diff --git a/src/IconBackupTableRoundedFilled.tsx b/src/IconBackupTableRoundedFilled.tsx new file mode 100644 index 000000000..d4933c339 --- /dev/null +++ b/src/IconBackupTableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackupTableRoundedFilled as default } diff --git a/src/IconBackupTableSharpFilled.tsx b/src/IconBackupTableSharpFilled.tsx new file mode 100644 index 000000000..da7880c30 --- /dev/null +++ b/src/IconBackupTableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBackupTableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBackupTableSharpFilled as default } diff --git a/src/IconBadgeCriticalBatteryOutlinedFilled.tsx b/src/IconBadgeCriticalBatteryOutlinedFilled.tsx new file mode 100644 index 000000000..528faa96c --- /dev/null +++ b/src/IconBadgeCriticalBatteryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeCriticalBatteryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBadgeCriticalBatteryOutlinedFilled as default } diff --git a/src/IconBadgeCriticalBatteryRoundedFilled.tsx b/src/IconBadgeCriticalBatteryRoundedFilled.tsx new file mode 100644 index 000000000..27b8726ea --- /dev/null +++ b/src/IconBadgeCriticalBatteryRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeCriticalBatteryRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBadgeCriticalBatteryRoundedFilled as default } diff --git a/src/IconBadgeCriticalBatterySharpFilled.tsx b/src/IconBadgeCriticalBatterySharpFilled.tsx new file mode 100644 index 000000000..948099d73 --- /dev/null +++ b/src/IconBadgeCriticalBatterySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeCriticalBatterySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBadgeCriticalBatterySharpFilled as default } diff --git a/src/IconBadgeOutlinedFilled.tsx b/src/IconBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..80fd7f45f --- /dev/null +++ b/src/IconBadgeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBadgeOutlinedFilled as default } diff --git a/src/IconBadgeRoundedFilled.tsx b/src/IconBadgeRoundedFilled.tsx new file mode 100644 index 000000000..32fbae9e0 --- /dev/null +++ b/src/IconBadgeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBadgeRoundedFilled as default } diff --git a/src/IconBadgeSharpFilled.tsx b/src/IconBadgeSharpFilled.tsx new file mode 100644 index 000000000..9b2e834a8 --- /dev/null +++ b/src/IconBadgeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBadgeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBadgeSharpFilled as default } diff --git a/src/IconBakeryDiningOutlinedFilled.tsx b/src/IconBakeryDiningOutlinedFilled.tsx new file mode 100644 index 000000000..671f772c3 --- /dev/null +++ b/src/IconBakeryDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBakeryDiningOutlinedFilled as default } diff --git a/src/IconBakeryDiningRoundedFilled.tsx b/src/IconBakeryDiningRoundedFilled.tsx new file mode 100644 index 000000000..ca2eecae4 --- /dev/null +++ b/src/IconBakeryDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBakeryDiningRoundedFilled as default } diff --git a/src/IconBakeryDiningSharpFilled.tsx b/src/IconBakeryDiningSharpFilled.tsx new file mode 100644 index 000000000..4c4d83926 --- /dev/null +++ b/src/IconBakeryDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBakeryDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBakeryDiningSharpFilled as default } diff --git a/src/IconBalanceOutlinedFilled.tsx b/src/IconBalanceOutlinedFilled.tsx new file mode 100644 index 000000000..76e93f7e4 --- /dev/null +++ b/src/IconBalanceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBalanceOutlinedFilled as default } diff --git a/src/IconBalanceRoundedFilled.tsx b/src/IconBalanceRoundedFilled.tsx new file mode 100644 index 000000000..d88ad25f1 --- /dev/null +++ b/src/IconBalanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBalanceRoundedFilled as default } diff --git a/src/IconBalanceSharpFilled.tsx b/src/IconBalanceSharpFilled.tsx new file mode 100644 index 000000000..1e52a96b7 --- /dev/null +++ b/src/IconBalanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBalanceSharpFilled as default } diff --git a/src/IconBalconyOutlinedFilled.tsx b/src/IconBalconyOutlinedFilled.tsx new file mode 100644 index 000000000..2ba2e4e89 --- /dev/null +++ b/src/IconBalconyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBalconyOutlinedFilled as default } diff --git a/src/IconBalconyRoundedFilled.tsx b/src/IconBalconyRoundedFilled.tsx new file mode 100644 index 000000000..1deb7d71b --- /dev/null +++ b/src/IconBalconyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBalconyRoundedFilled as default } diff --git a/src/IconBalconySharpFilled.tsx b/src/IconBalconySharpFilled.tsx new file mode 100644 index 000000000..33a4626a8 --- /dev/null +++ b/src/IconBalconySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBalconySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBalconySharpFilled as default } diff --git a/src/IconBallotOutlinedFilled.tsx b/src/IconBallotOutlinedFilled.tsx new file mode 100644 index 000000000..732331d98 --- /dev/null +++ b/src/IconBallotOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBallotOutlinedFilled as default } diff --git a/src/IconBallotRoundedFilled.tsx b/src/IconBallotRoundedFilled.tsx new file mode 100644 index 000000000..218d98060 --- /dev/null +++ b/src/IconBallotRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBallotRoundedFilled as default } diff --git a/src/IconBallotSharpFilled.tsx b/src/IconBallotSharpFilled.tsx new file mode 100644 index 000000000..0130eede8 --- /dev/null +++ b/src/IconBallotSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBallotSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBallotSharpFilled as default } diff --git a/src/IconBarChart4BarsOutlinedFilled.tsx b/src/IconBarChart4BarsOutlinedFilled.tsx new file mode 100644 index 000000000..4673eabb4 --- /dev/null +++ b/src/IconBarChart4BarsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChart4BarsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChart4BarsOutlinedFilled as default } diff --git a/src/IconBarChart4BarsRoundedFilled.tsx b/src/IconBarChart4BarsRoundedFilled.tsx new file mode 100644 index 000000000..d673c1ed4 --- /dev/null +++ b/src/IconBarChart4BarsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChart4BarsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChart4BarsRoundedFilled as default } diff --git a/src/IconBarChart4BarsSharpFilled.tsx b/src/IconBarChart4BarsSharpFilled.tsx new file mode 100644 index 000000000..fe2052f43 --- /dev/null +++ b/src/IconBarChart4BarsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChart4BarsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChart4BarsSharpFilled as default } diff --git a/src/IconBarChartOffOutlinedFilled.tsx b/src/IconBarChartOffOutlinedFilled.tsx new file mode 100644 index 000000000..6d4fdef02 --- /dev/null +++ b/src/IconBarChartOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChartOffOutlinedFilled as default } diff --git a/src/IconBarChartOffRoundedFilled.tsx b/src/IconBarChartOffRoundedFilled.tsx new file mode 100644 index 000000000..2a221ce59 --- /dev/null +++ b/src/IconBarChartOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChartOffRoundedFilled as default } diff --git a/src/IconBarChartOffSharpFilled.tsx b/src/IconBarChartOffSharpFilled.tsx new file mode 100644 index 000000000..c2601fc34 --- /dev/null +++ b/src/IconBarChartOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChartOffSharpFilled as default } diff --git a/src/IconBarChartOutlinedFilled.tsx b/src/IconBarChartOutlinedFilled.tsx new file mode 100644 index 000000000..95ea7c1f8 --- /dev/null +++ b/src/IconBarChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChartOutlinedFilled as default } diff --git a/src/IconBarChartRoundedFilled.tsx b/src/IconBarChartRoundedFilled.tsx new file mode 100644 index 000000000..1233d77f0 --- /dev/null +++ b/src/IconBarChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChartRoundedFilled as default } diff --git a/src/IconBarChartSharpFilled.tsx b/src/IconBarChartSharpFilled.tsx new file mode 100644 index 000000000..994b4f6ae --- /dev/null +++ b/src/IconBarChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarChartSharpFilled as default } diff --git a/src/IconBarcodeOutlinedFilled.tsx b/src/IconBarcodeOutlinedFilled.tsx new file mode 100644 index 000000000..e0c39953e --- /dev/null +++ b/src/IconBarcodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeOutlinedFilled as default } diff --git a/src/IconBarcodeReaderOutlinedFilled.tsx b/src/IconBarcodeReaderOutlinedFilled.tsx new file mode 100644 index 000000000..0f5f9107c --- /dev/null +++ b/src/IconBarcodeReaderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeReaderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeReaderOutlinedFilled as default } diff --git a/src/IconBarcodeReaderRoundedFilled.tsx b/src/IconBarcodeReaderRoundedFilled.tsx new file mode 100644 index 000000000..47ec1acd0 --- /dev/null +++ b/src/IconBarcodeReaderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeReaderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeReaderRoundedFilled as default } diff --git a/src/IconBarcodeReaderSharpFilled.tsx b/src/IconBarcodeReaderSharpFilled.tsx new file mode 100644 index 000000000..1fdb90bb5 --- /dev/null +++ b/src/IconBarcodeReaderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeReaderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeReaderSharpFilled as default } diff --git a/src/IconBarcodeRoundedFilled.tsx b/src/IconBarcodeRoundedFilled.tsx new file mode 100644 index 000000000..5781c272e --- /dev/null +++ b/src/IconBarcodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeRoundedFilled as default } diff --git a/src/IconBarcodeScannerOutlinedFilled.tsx b/src/IconBarcodeScannerOutlinedFilled.tsx new file mode 100644 index 000000000..de78ebb0e --- /dev/null +++ b/src/IconBarcodeScannerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeScannerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeScannerOutlinedFilled as default } diff --git a/src/IconBarcodeScannerRoundedFilled.tsx b/src/IconBarcodeScannerRoundedFilled.tsx new file mode 100644 index 000000000..c450175bb --- /dev/null +++ b/src/IconBarcodeScannerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeScannerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeScannerRoundedFilled as default } diff --git a/src/IconBarcodeScannerSharpFilled.tsx b/src/IconBarcodeScannerSharpFilled.tsx new file mode 100644 index 000000000..707544b14 --- /dev/null +++ b/src/IconBarcodeScannerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeScannerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeScannerSharpFilled as default } diff --git a/src/IconBarcodeSharpFilled.tsx b/src/IconBarcodeSharpFilled.tsx new file mode 100644 index 000000000..8c5cf3950 --- /dev/null +++ b/src/IconBarcodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarcodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarcodeSharpFilled as default } diff --git a/src/IconBarefootOutlinedFilled.tsx b/src/IconBarefootOutlinedFilled.tsx new file mode 100644 index 000000000..9a786889b --- /dev/null +++ b/src/IconBarefootOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarefootOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarefootOutlinedFilled as default } diff --git a/src/IconBarefootRoundedFilled.tsx b/src/IconBarefootRoundedFilled.tsx new file mode 100644 index 000000000..e5066038b --- /dev/null +++ b/src/IconBarefootRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarefootRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarefootRoundedFilled as default } diff --git a/src/IconBarefootSharpFilled.tsx b/src/IconBarefootSharpFilled.tsx new file mode 100644 index 000000000..571280603 --- /dev/null +++ b/src/IconBarefootSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBarefootSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBarefootSharpFilled as default } diff --git a/src/IconBatchPredictionOutlinedFilled.tsx b/src/IconBatchPredictionOutlinedFilled.tsx new file mode 100644 index 000000000..5a6bd385d --- /dev/null +++ b/src/IconBatchPredictionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatchPredictionOutlinedFilled as default } diff --git a/src/IconBatchPredictionRoundedFilled.tsx b/src/IconBatchPredictionRoundedFilled.tsx new file mode 100644 index 000000000..ee69dda5d --- /dev/null +++ b/src/IconBatchPredictionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatchPredictionRoundedFilled as default } diff --git a/src/IconBatchPredictionSharpFilled.tsx b/src/IconBatchPredictionSharpFilled.tsx new file mode 100644 index 000000000..fbef53f39 --- /dev/null +++ b/src/IconBatchPredictionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatchPredictionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatchPredictionSharpFilled as default } diff --git a/src/IconBathOutdoorOutlinedFilled.tsx b/src/IconBathOutdoorOutlinedFilled.tsx new file mode 100644 index 000000000..00fe46251 --- /dev/null +++ b/src/IconBathOutdoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathOutdoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathOutdoorOutlinedFilled as default } diff --git a/src/IconBathOutdoorRoundedFilled.tsx b/src/IconBathOutdoorRoundedFilled.tsx new file mode 100644 index 000000000..6d6ab437d --- /dev/null +++ b/src/IconBathOutdoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathOutdoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathOutdoorRoundedFilled as default } diff --git a/src/IconBathOutdoorSharpFilled.tsx b/src/IconBathOutdoorSharpFilled.tsx new file mode 100644 index 000000000..2a43f6221 --- /dev/null +++ b/src/IconBathOutdoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathOutdoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathOutdoorSharpFilled as default } diff --git a/src/IconBathPrivateOutlinedFilled.tsx b/src/IconBathPrivateOutlinedFilled.tsx new file mode 100644 index 000000000..54832ef47 --- /dev/null +++ b/src/IconBathPrivateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathPrivateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathPrivateOutlinedFilled as default } diff --git a/src/IconBathPrivateRoundedFilled.tsx b/src/IconBathPrivateRoundedFilled.tsx new file mode 100644 index 000000000..9b2c5f74e --- /dev/null +++ b/src/IconBathPrivateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathPrivateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathPrivateRoundedFilled as default } diff --git a/src/IconBathPrivateSharpFilled.tsx b/src/IconBathPrivateSharpFilled.tsx new file mode 100644 index 000000000..6922e6514 --- /dev/null +++ b/src/IconBathPrivateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathPrivateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathPrivateSharpFilled as default } diff --git a/src/IconBathPublicLargeOutlinedFilled.tsx b/src/IconBathPublicLargeOutlinedFilled.tsx new file mode 100644 index 000000000..a27ff876f --- /dev/null +++ b/src/IconBathPublicLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathPublicLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBathPublicLargeOutlinedFilled as default } diff --git a/src/IconBathPublicLargeRoundedFilled.tsx b/src/IconBathPublicLargeRoundedFilled.tsx new file mode 100644 index 000000000..1b89db8bc --- /dev/null +++ b/src/IconBathPublicLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathPublicLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBathPublicLargeRoundedFilled as default } diff --git a/src/IconBathPublicLargeSharpFilled.tsx b/src/IconBathPublicLargeSharpFilled.tsx new file mode 100644 index 000000000..922f64844 --- /dev/null +++ b/src/IconBathPublicLargeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathPublicLargeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathPublicLargeSharpFilled as default } diff --git a/src/IconBathroomOutlinedFilled.tsx b/src/IconBathroomOutlinedFilled.tsx new file mode 100644 index 000000000..ed8e6f585 --- /dev/null +++ b/src/IconBathroomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathroomOutlinedFilled as default } diff --git a/src/IconBathroomRoundedFilled.tsx b/src/IconBathroomRoundedFilled.tsx new file mode 100644 index 000000000..444bb8652 --- /dev/null +++ b/src/IconBathroomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathroomRoundedFilled as default } diff --git a/src/IconBathroomSharpFilled.tsx b/src/IconBathroomSharpFilled.tsx new file mode 100644 index 000000000..28b289bb0 --- /dev/null +++ b/src/IconBathroomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathroomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathroomSharpFilled as default } diff --git a/src/IconBathtubOutlinedFilled.tsx b/src/IconBathtubOutlinedFilled.tsx new file mode 100644 index 000000000..d7d69a27c --- /dev/null +++ b/src/IconBathtubOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathtubOutlinedFilled as default } diff --git a/src/IconBathtubRoundedFilled.tsx b/src/IconBathtubRoundedFilled.tsx new file mode 100644 index 000000000..19ea8fda8 --- /dev/null +++ b/src/IconBathtubRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathtubRoundedFilled as default } diff --git a/src/IconBathtubSharpFilled.tsx b/src/IconBathtubSharpFilled.tsx new file mode 100644 index 000000000..e322ad89f --- /dev/null +++ b/src/IconBathtubSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBathtubSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBathtubSharpFilled as default } diff --git a/src/IconBattery0BarOutlinedFilled.tsx b/src/IconBattery0BarOutlinedFilled.tsx new file mode 100644 index 000000000..d0dddfa77 --- /dev/null +++ b/src/IconBattery0BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery0BarOutlinedFilled as default } diff --git a/src/IconBattery0BarRoundedFilled.tsx b/src/IconBattery0BarRoundedFilled.tsx new file mode 100644 index 000000000..17db5b9c3 --- /dev/null +++ b/src/IconBattery0BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery0BarRoundedFilled as default } diff --git a/src/IconBattery0BarSharpFilled.tsx b/src/IconBattery0BarSharpFilled.tsx new file mode 100644 index 000000000..6d9449956 --- /dev/null +++ b/src/IconBattery0BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery0BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery0BarSharpFilled as default } diff --git a/src/IconBattery1BarOutlinedFilled.tsx b/src/IconBattery1BarOutlinedFilled.tsx new file mode 100644 index 000000000..481a806f4 --- /dev/null +++ b/src/IconBattery1BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery1BarOutlinedFilled as default } diff --git a/src/IconBattery1BarRoundedFilled.tsx b/src/IconBattery1BarRoundedFilled.tsx new file mode 100644 index 000000000..ffaa39320 --- /dev/null +++ b/src/IconBattery1BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery1BarRoundedFilled as default } diff --git a/src/IconBattery1BarSharpFilled.tsx b/src/IconBattery1BarSharpFilled.tsx new file mode 100644 index 000000000..d2319a3d5 --- /dev/null +++ b/src/IconBattery1BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery1BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery1BarSharpFilled as default } diff --git a/src/IconBattery2BarOutlinedFilled.tsx b/src/IconBattery2BarOutlinedFilled.tsx new file mode 100644 index 000000000..4efbefbea --- /dev/null +++ b/src/IconBattery2BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery2BarOutlinedFilled as default } diff --git a/src/IconBattery2BarRoundedFilled.tsx b/src/IconBattery2BarRoundedFilled.tsx new file mode 100644 index 000000000..64f0d40a2 --- /dev/null +++ b/src/IconBattery2BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery2BarRoundedFilled as default } diff --git a/src/IconBattery2BarSharpFilled.tsx b/src/IconBattery2BarSharpFilled.tsx new file mode 100644 index 000000000..1e3b63e28 --- /dev/null +++ b/src/IconBattery2BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery2BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery2BarSharpFilled as default } diff --git a/src/IconBattery3BarOutlinedFilled.tsx b/src/IconBattery3BarOutlinedFilled.tsx new file mode 100644 index 000000000..5acd2a829 --- /dev/null +++ b/src/IconBattery3BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery3BarOutlinedFilled as default } diff --git a/src/IconBattery3BarRoundedFilled.tsx b/src/IconBattery3BarRoundedFilled.tsx new file mode 100644 index 000000000..c968849fd --- /dev/null +++ b/src/IconBattery3BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery3BarRoundedFilled as default } diff --git a/src/IconBattery3BarSharpFilled.tsx b/src/IconBattery3BarSharpFilled.tsx new file mode 100644 index 000000000..296472b8d --- /dev/null +++ b/src/IconBattery3BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery3BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery3BarSharpFilled as default } diff --git a/src/IconBattery4BarOutlinedFilled.tsx b/src/IconBattery4BarOutlinedFilled.tsx new file mode 100644 index 000000000..92c84220a --- /dev/null +++ b/src/IconBattery4BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery4BarOutlinedFilled as default } diff --git a/src/IconBattery4BarRoundedFilled.tsx b/src/IconBattery4BarRoundedFilled.tsx new file mode 100644 index 000000000..521a8c2e2 --- /dev/null +++ b/src/IconBattery4BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery4BarRoundedFilled as default } diff --git a/src/IconBattery4BarSharpFilled.tsx b/src/IconBattery4BarSharpFilled.tsx new file mode 100644 index 000000000..531187687 --- /dev/null +++ b/src/IconBattery4BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery4BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery4BarSharpFilled as default } diff --git a/src/IconBattery5BarOutlinedFilled.tsx b/src/IconBattery5BarOutlinedFilled.tsx new file mode 100644 index 000000000..78be869c8 --- /dev/null +++ b/src/IconBattery5BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery5BarOutlinedFilled as default } diff --git a/src/IconBattery5BarRoundedFilled.tsx b/src/IconBattery5BarRoundedFilled.tsx new file mode 100644 index 000000000..8edea9bf7 --- /dev/null +++ b/src/IconBattery5BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery5BarRoundedFilled as default } diff --git a/src/IconBattery5BarSharpFilled.tsx b/src/IconBattery5BarSharpFilled.tsx new file mode 100644 index 000000000..872654acd --- /dev/null +++ b/src/IconBattery5BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery5BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery5BarSharpFilled as default } diff --git a/src/IconBattery6BarOutlinedFilled.tsx b/src/IconBattery6BarOutlinedFilled.tsx new file mode 100644 index 000000000..4b26237f3 --- /dev/null +++ b/src/IconBattery6BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery6BarOutlinedFilled as default } diff --git a/src/IconBattery6BarRoundedFilled.tsx b/src/IconBattery6BarRoundedFilled.tsx new file mode 100644 index 000000000..abe44bb8f --- /dev/null +++ b/src/IconBattery6BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery6BarRoundedFilled as default } diff --git a/src/IconBattery6BarSharpFilled.tsx b/src/IconBattery6BarSharpFilled.tsx new file mode 100644 index 000000000..d164390b5 --- /dev/null +++ b/src/IconBattery6BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBattery6BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBattery6BarSharpFilled as default } diff --git a/src/IconBatteryAlertOutlinedFilled.tsx b/src/IconBatteryAlertOutlinedFilled.tsx new file mode 100644 index 000000000..6f1213d23 --- /dev/null +++ b/src/IconBatteryAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryAlertOutlinedFilled as default } diff --git a/src/IconBatteryAlertRoundedFilled.tsx b/src/IconBatteryAlertRoundedFilled.tsx new file mode 100644 index 000000000..7e302a077 --- /dev/null +++ b/src/IconBatteryAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryAlertRoundedFilled as default } diff --git a/src/IconBatteryAlertSharpFilled.tsx b/src/IconBatteryAlertSharpFilled.tsx new file mode 100644 index 000000000..2e4328e02 --- /dev/null +++ b/src/IconBatteryAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryAlertSharpFilled as default } diff --git a/src/IconBatteryChangeOutlinedFilled.tsx b/src/IconBatteryChangeOutlinedFilled.tsx new file mode 100644 index 000000000..3b51171ce --- /dev/null +++ b/src/IconBatteryChangeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChangeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryChangeOutlinedFilled as default } diff --git a/src/IconBatteryChangeRoundedFilled.tsx b/src/IconBatteryChangeRoundedFilled.tsx new file mode 100644 index 000000000..c31eb997d --- /dev/null +++ b/src/IconBatteryChangeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChangeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryChangeRoundedFilled as default } diff --git a/src/IconBatteryChangeSharpFilled.tsx b/src/IconBatteryChangeSharpFilled.tsx new file mode 100644 index 000000000..ddb878c07 --- /dev/null +++ b/src/IconBatteryChangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryChangeSharpFilled as default } diff --git a/src/IconBatteryCharging20OutlinedFilled.tsx b/src/IconBatteryCharging20OutlinedFilled.tsx new file mode 100644 index 000000000..ce7ed2a8a --- /dev/null +++ b/src/IconBatteryCharging20OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging20OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging20OutlinedFilled as default } diff --git a/src/IconBatteryCharging20RoundedFilled.tsx b/src/IconBatteryCharging20RoundedFilled.tsx new file mode 100644 index 000000000..aa0091d23 --- /dev/null +++ b/src/IconBatteryCharging20RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging20RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging20RoundedFilled as default } diff --git a/src/IconBatteryCharging20SharpFilled.tsx b/src/IconBatteryCharging20SharpFilled.tsx new file mode 100644 index 000000000..2132a6b1c --- /dev/null +++ b/src/IconBatteryCharging20SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging20SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging20SharpFilled as default } diff --git a/src/IconBatteryCharging30OutlinedFilled.tsx b/src/IconBatteryCharging30OutlinedFilled.tsx new file mode 100644 index 000000000..bb4e684e3 --- /dev/null +++ b/src/IconBatteryCharging30OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging30OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging30OutlinedFilled as default } diff --git a/src/IconBatteryCharging30RoundedFilled.tsx b/src/IconBatteryCharging30RoundedFilled.tsx new file mode 100644 index 000000000..d217f077b --- /dev/null +++ b/src/IconBatteryCharging30RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging30RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging30RoundedFilled as default } diff --git a/src/IconBatteryCharging30SharpFilled.tsx b/src/IconBatteryCharging30SharpFilled.tsx new file mode 100644 index 000000000..63ffd84d7 --- /dev/null +++ b/src/IconBatteryCharging30SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging30SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging30SharpFilled as default } diff --git a/src/IconBatteryCharging50OutlinedFilled.tsx b/src/IconBatteryCharging50OutlinedFilled.tsx new file mode 100644 index 000000000..b50cd4085 --- /dev/null +++ b/src/IconBatteryCharging50OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging50OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging50OutlinedFilled as default } diff --git a/src/IconBatteryCharging50RoundedFilled.tsx b/src/IconBatteryCharging50RoundedFilled.tsx new file mode 100644 index 000000000..1e7630fef --- /dev/null +++ b/src/IconBatteryCharging50RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging50RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging50RoundedFilled as default } diff --git a/src/IconBatteryCharging50SharpFilled.tsx b/src/IconBatteryCharging50SharpFilled.tsx new file mode 100644 index 000000000..ab8aed95f --- /dev/null +++ b/src/IconBatteryCharging50SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging50SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging50SharpFilled as default } diff --git a/src/IconBatteryCharging60OutlinedFilled.tsx b/src/IconBatteryCharging60OutlinedFilled.tsx new file mode 100644 index 000000000..a7fced0a0 --- /dev/null +++ b/src/IconBatteryCharging60OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging60OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging60OutlinedFilled as default } diff --git a/src/IconBatteryCharging60RoundedFilled.tsx b/src/IconBatteryCharging60RoundedFilled.tsx new file mode 100644 index 000000000..4c97b54f1 --- /dev/null +++ b/src/IconBatteryCharging60RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging60RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging60RoundedFilled as default } diff --git a/src/IconBatteryCharging60SharpFilled.tsx b/src/IconBatteryCharging60SharpFilled.tsx new file mode 100644 index 000000000..8bafafd50 --- /dev/null +++ b/src/IconBatteryCharging60SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging60SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging60SharpFilled as default } diff --git a/src/IconBatteryCharging80OutlinedFilled.tsx b/src/IconBatteryCharging80OutlinedFilled.tsx new file mode 100644 index 000000000..2060ab934 --- /dev/null +++ b/src/IconBatteryCharging80OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging80OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging80OutlinedFilled as default } diff --git a/src/IconBatteryCharging80RoundedFilled.tsx b/src/IconBatteryCharging80RoundedFilled.tsx new file mode 100644 index 000000000..21f278e7d --- /dev/null +++ b/src/IconBatteryCharging80RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging80RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging80RoundedFilled as default } diff --git a/src/IconBatteryCharging80SharpFilled.tsx b/src/IconBatteryCharging80SharpFilled.tsx new file mode 100644 index 000000000..13e3be5ca --- /dev/null +++ b/src/IconBatteryCharging80SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging80SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging80SharpFilled as default } diff --git a/src/IconBatteryCharging90OutlinedFilled.tsx b/src/IconBatteryCharging90OutlinedFilled.tsx new file mode 100644 index 000000000..0c99af4c4 --- /dev/null +++ b/src/IconBatteryCharging90OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging90OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging90OutlinedFilled as default } diff --git a/src/IconBatteryCharging90RoundedFilled.tsx b/src/IconBatteryCharging90RoundedFilled.tsx new file mode 100644 index 000000000..a05d67aba --- /dev/null +++ b/src/IconBatteryCharging90RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging90RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging90RoundedFilled as default } diff --git a/src/IconBatteryCharging90SharpFilled.tsx b/src/IconBatteryCharging90SharpFilled.tsx new file mode 100644 index 000000000..dce3872f4 --- /dev/null +++ b/src/IconBatteryCharging90SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryCharging90SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryCharging90SharpFilled as default } diff --git a/src/IconBatteryChargingFullOutlinedFilled.tsx b/src/IconBatteryChargingFullOutlinedFilled.tsx new file mode 100644 index 000000000..bf2f0808b --- /dev/null +++ b/src/IconBatteryChargingFullOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryChargingFullOutlinedFilled as default } diff --git a/src/IconBatteryChargingFullRoundedFilled.tsx b/src/IconBatteryChargingFullRoundedFilled.tsx new file mode 100644 index 000000000..d2859969a --- /dev/null +++ b/src/IconBatteryChargingFullRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryChargingFullRoundedFilled as default } diff --git a/src/IconBatteryChargingFullSharpFilled.tsx b/src/IconBatteryChargingFullSharpFilled.tsx new file mode 100644 index 000000000..3140d8490 --- /dev/null +++ b/src/IconBatteryChargingFullSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryChargingFullSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryChargingFullSharpFilled as default } diff --git a/src/IconBatteryErrorOutlinedFilled.tsx b/src/IconBatteryErrorOutlinedFilled.tsx new file mode 100644 index 000000000..2e1c058f9 --- /dev/null +++ b/src/IconBatteryErrorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryErrorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryErrorOutlinedFilled as default } diff --git a/src/IconBatteryErrorRoundedFilled.tsx b/src/IconBatteryErrorRoundedFilled.tsx new file mode 100644 index 000000000..169ff1bdd --- /dev/null +++ b/src/IconBatteryErrorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryErrorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryErrorRoundedFilled as default } diff --git a/src/IconBatteryErrorSharpFilled.tsx b/src/IconBatteryErrorSharpFilled.tsx new file mode 100644 index 000000000..a665730d4 --- /dev/null +++ b/src/IconBatteryErrorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryErrorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryErrorSharpFilled as default } diff --git a/src/IconBatteryFullAltOutlinedFilled.tsx b/src/IconBatteryFullAltOutlinedFilled.tsx new file mode 100644 index 000000000..dc59237d3 --- /dev/null +++ b/src/IconBatteryFullAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryFullAltOutlinedFilled as default } diff --git a/src/IconBatteryFullAltRoundedFilled.tsx b/src/IconBatteryFullAltRoundedFilled.tsx new file mode 100644 index 000000000..6316c8746 --- /dev/null +++ b/src/IconBatteryFullAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryFullAltRoundedFilled as default } diff --git a/src/IconBatteryFullAltSharpFilled.tsx b/src/IconBatteryFullAltSharpFilled.tsx new file mode 100644 index 000000000..95b4bbfd2 --- /dev/null +++ b/src/IconBatteryFullAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryFullAltSharpFilled as default } diff --git a/src/IconBatteryFullOutlinedFilled.tsx b/src/IconBatteryFullOutlinedFilled.tsx new file mode 100644 index 000000000..7734ee6b6 --- /dev/null +++ b/src/IconBatteryFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryFullOutlinedFilled as default } diff --git a/src/IconBatteryFullRoundedFilled.tsx b/src/IconBatteryFullRoundedFilled.tsx new file mode 100644 index 000000000..22f050c0f --- /dev/null +++ b/src/IconBatteryFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryFullRoundedFilled as default } diff --git a/src/IconBatteryFullSharpFilled.tsx b/src/IconBatteryFullSharpFilled.tsx new file mode 100644 index 000000000..6ca88036c --- /dev/null +++ b/src/IconBatteryFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryFullSharpFilled as default } diff --git a/src/IconBatteryHoriz000OutlinedFilled.tsx b/src/IconBatteryHoriz000OutlinedFilled.tsx new file mode 100644 index 000000000..3e92c887a --- /dev/null +++ b/src/IconBatteryHoriz000OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz000OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz000OutlinedFilled as default } diff --git a/src/IconBatteryHoriz000RoundedFilled.tsx b/src/IconBatteryHoriz000RoundedFilled.tsx new file mode 100644 index 000000000..57365b9aa --- /dev/null +++ b/src/IconBatteryHoriz000RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz000RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz000RoundedFilled as default } diff --git a/src/IconBatteryHoriz000SharpFilled.tsx b/src/IconBatteryHoriz000SharpFilled.tsx new file mode 100644 index 000000000..3c0e4b6e0 --- /dev/null +++ b/src/IconBatteryHoriz000SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz000SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz000SharpFilled as default } diff --git a/src/IconBatteryHoriz050OutlinedFilled.tsx b/src/IconBatteryHoriz050OutlinedFilled.tsx new file mode 100644 index 000000000..7c3685bcb --- /dev/null +++ b/src/IconBatteryHoriz050OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz050OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz050OutlinedFilled as default } diff --git a/src/IconBatteryHoriz050RoundedFilled.tsx b/src/IconBatteryHoriz050RoundedFilled.tsx new file mode 100644 index 000000000..a62a56191 --- /dev/null +++ b/src/IconBatteryHoriz050RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz050RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz050RoundedFilled as default } diff --git a/src/IconBatteryHoriz050Sharp.tsx b/src/IconBatteryHoriz050SharpFilled.tsx similarity index 68% rename from src/IconBatteryHoriz050Sharp.tsx rename to src/IconBatteryHoriz050SharpFilled.tsx index 081453a4b..cfb17ec00 100644 --- a/src/IconBatteryHoriz050Sharp.tsx +++ b/src/IconBatteryHoriz050SharpFilled.tsx @@ -1,11 +1,11 @@ import React from 'react' import { IconProps } from './types' -const IconBatteryHoriz050Sharp: React.FC = ({ ...props }) => ( +const IconBatteryHoriz050SharpFilled: React.FC = ({ ...props }) => ( {props.title && {props.title}} ) -export { IconBatteryHoriz050Sharp as default } +export { IconBatteryHoriz050SharpFilled as default } diff --git a/src/IconBatteryHoriz075OutlinedFilled.tsx b/src/IconBatteryHoriz075OutlinedFilled.tsx new file mode 100644 index 000000000..95b9e6ae9 --- /dev/null +++ b/src/IconBatteryHoriz075OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz075OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz075OutlinedFilled as default } diff --git a/src/IconBatteryHoriz075RoundedFilled.tsx b/src/IconBatteryHoriz075RoundedFilled.tsx new file mode 100644 index 000000000..8a5b28343 --- /dev/null +++ b/src/IconBatteryHoriz075RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz075RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz075RoundedFilled as default } diff --git a/src/IconBatteryHoriz075SharpFilled.tsx b/src/IconBatteryHoriz075SharpFilled.tsx new file mode 100644 index 000000000..bb3ed3fc7 --- /dev/null +++ b/src/IconBatteryHoriz075SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryHoriz075SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryHoriz075SharpFilled as default } diff --git a/src/IconBatteryLowOutlinedFilled.tsx b/src/IconBatteryLowOutlinedFilled.tsx new file mode 100644 index 000000000..91c72029b --- /dev/null +++ b/src/IconBatteryLowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryLowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryLowOutlinedFilled as default } diff --git a/src/IconBatteryLowRoundedFilled.tsx b/src/IconBatteryLowRoundedFilled.tsx new file mode 100644 index 000000000..518662116 --- /dev/null +++ b/src/IconBatteryLowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryLowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryLowRoundedFilled as default } diff --git a/src/IconBatteryLowSharpFilled.tsx b/src/IconBatteryLowSharpFilled.tsx new file mode 100644 index 000000000..00d11c422 --- /dev/null +++ b/src/IconBatteryLowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryLowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryLowSharpFilled as default } diff --git a/src/IconBatteryPlusOutlinedFilled.tsx b/src/IconBatteryPlusOutlinedFilled.tsx new file mode 100644 index 000000000..652ebbd96 --- /dev/null +++ b/src/IconBatteryPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryPlusOutlinedFilled as default } diff --git a/src/IconBatteryPlusRoundedFilled.tsx b/src/IconBatteryPlusRoundedFilled.tsx new file mode 100644 index 000000000..1bb298fb8 --- /dev/null +++ b/src/IconBatteryPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryPlusRoundedFilled as default } diff --git a/src/IconBatteryPlusSharpFilled.tsx b/src/IconBatteryPlusSharpFilled.tsx new file mode 100644 index 000000000..6a3a1ab60 --- /dev/null +++ b/src/IconBatteryPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryPlusSharpFilled as default } diff --git a/src/IconBatteryProfileOutlinedFilled.tsx b/src/IconBatteryProfileOutlinedFilled.tsx new file mode 100644 index 000000000..03769b89a --- /dev/null +++ b/src/IconBatteryProfileOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryProfileOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryProfileOutlinedFilled as default } diff --git a/src/IconBatteryProfileRoundedFilled.tsx b/src/IconBatteryProfileRoundedFilled.tsx new file mode 100644 index 000000000..068e3a9d8 --- /dev/null +++ b/src/IconBatteryProfileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryProfileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryProfileRoundedFilled as default } diff --git a/src/IconBatteryProfileSharpFilled.tsx b/src/IconBatteryProfileSharpFilled.tsx new file mode 100644 index 000000000..0cd6b0b1a --- /dev/null +++ b/src/IconBatteryProfileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryProfileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryProfileSharpFilled as default } diff --git a/src/IconBatterySaverOutlinedFilled.tsx b/src/IconBatterySaverOutlinedFilled.tsx new file mode 100644 index 000000000..9c578304d --- /dev/null +++ b/src/IconBatterySaverOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatterySaverOutlinedFilled as default } diff --git a/src/IconBatterySaverRoundedFilled.tsx b/src/IconBatterySaverRoundedFilled.tsx new file mode 100644 index 000000000..0f2e9d892 --- /dev/null +++ b/src/IconBatterySaverRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatterySaverRoundedFilled as default } diff --git a/src/IconBatterySaverSharpFilled.tsx b/src/IconBatterySaverSharpFilled.tsx new file mode 100644 index 000000000..3c6e0422d --- /dev/null +++ b/src/IconBatterySaverSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatterySaverSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatterySaverSharpFilled as default } diff --git a/src/IconBatteryShareOutlinedFilled.tsx b/src/IconBatteryShareOutlinedFilled.tsx new file mode 100644 index 000000000..f8917732c --- /dev/null +++ b/src/IconBatteryShareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryShareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryShareOutlinedFilled as default } diff --git a/src/IconBatteryShareRoundedFilled.tsx b/src/IconBatteryShareRoundedFilled.tsx new file mode 100644 index 000000000..70a4875b8 --- /dev/null +++ b/src/IconBatteryShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryShareRoundedFilled as default } diff --git a/src/IconBatteryShareSharpFilled.tsx b/src/IconBatteryShareSharpFilled.tsx new file mode 100644 index 000000000..4c0b99cff --- /dev/null +++ b/src/IconBatteryShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryShareSharpFilled as default } diff --git a/src/IconBatteryStatusGoodOutlinedFilled.tsx b/src/IconBatteryStatusGoodOutlinedFilled.tsx new file mode 100644 index 000000000..8e2be532b --- /dev/null +++ b/src/IconBatteryStatusGoodOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStatusGoodOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryStatusGoodOutlinedFilled as default } diff --git a/src/IconBatteryStatusGoodRoundedFilled.tsx b/src/IconBatteryStatusGoodRoundedFilled.tsx new file mode 100644 index 000000000..50ea24bc1 --- /dev/null +++ b/src/IconBatteryStatusGoodRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStatusGoodRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryStatusGoodRoundedFilled as default } diff --git a/src/IconBatteryStatusGoodSharpFilled.tsx b/src/IconBatteryStatusGoodSharpFilled.tsx new file mode 100644 index 000000000..383829b8a --- /dev/null +++ b/src/IconBatteryStatusGoodSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryStatusGoodSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryStatusGoodSharpFilled as default } diff --git a/src/IconBatteryUnknownOutlinedFilled.tsx b/src/IconBatteryUnknownOutlinedFilled.tsx new file mode 100644 index 000000000..7cbcd4239 --- /dev/null +++ b/src/IconBatteryUnknownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryUnknownOutlinedFilled as default } diff --git a/src/IconBatteryUnknownRoundedFilled.tsx b/src/IconBatteryUnknownRoundedFilled.tsx new file mode 100644 index 000000000..6fa29cb2b --- /dev/null +++ b/src/IconBatteryUnknownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryUnknownRoundedFilled as default } diff --git a/src/IconBatteryUnknownSharpFilled.tsx b/src/IconBatteryUnknownSharpFilled.tsx new file mode 100644 index 000000000..a8285c367 --- /dev/null +++ b/src/IconBatteryUnknownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryUnknownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryUnknownSharpFilled as default } diff --git a/src/IconBatteryVeryLowOutlinedFilled.tsx b/src/IconBatteryVeryLowOutlinedFilled.tsx new file mode 100644 index 000000000..2c8fcab0f --- /dev/null +++ b/src/IconBatteryVeryLowOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryVeryLowOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryVeryLowOutlinedFilled as default } diff --git a/src/IconBatteryVeryLowRoundedFilled.tsx b/src/IconBatteryVeryLowRoundedFilled.tsx new file mode 100644 index 000000000..b61d03813 --- /dev/null +++ b/src/IconBatteryVeryLowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryVeryLowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryVeryLowRoundedFilled as default } diff --git a/src/IconBatteryVeryLowSharpFilled.tsx b/src/IconBatteryVeryLowSharpFilled.tsx new file mode 100644 index 000000000..eb859548b --- /dev/null +++ b/src/IconBatteryVeryLowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBatteryVeryLowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBatteryVeryLowSharpFilled as default } diff --git a/src/IconBeachAccessOutlinedFilled.tsx b/src/IconBeachAccessOutlinedFilled.tsx new file mode 100644 index 000000000..1f2a47627 --- /dev/null +++ b/src/IconBeachAccessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBeachAccessOutlinedFilled as default } diff --git a/src/IconBeachAccessRoundedFilled.tsx b/src/IconBeachAccessRoundedFilled.tsx new file mode 100644 index 000000000..a2f8d733b --- /dev/null +++ b/src/IconBeachAccessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBeachAccessRoundedFilled as default } diff --git a/src/IconBeachAccessSharpFilled.tsx b/src/IconBeachAccessSharpFilled.tsx new file mode 100644 index 000000000..a322c3ca8 --- /dev/null +++ b/src/IconBeachAccessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeachAccessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBeachAccessSharpFilled as default } diff --git a/src/IconBedOutlinedFilled.tsx b/src/IconBedOutlinedFilled.tsx new file mode 100644 index 000000000..72eea6983 --- /dev/null +++ b/src/IconBedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedOutlinedFilled as default } diff --git a/src/IconBedRoundedFilled.tsx b/src/IconBedRoundedFilled.tsx new file mode 100644 index 000000000..8c6fa0a83 --- /dev/null +++ b/src/IconBedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedRoundedFilled as default } diff --git a/src/IconBedSharpFilled.tsx b/src/IconBedSharpFilled.tsx new file mode 100644 index 000000000..e6f284c4c --- /dev/null +++ b/src/IconBedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedSharpFilled as default } diff --git a/src/IconBedroomBabyOutlinedFilled.tsx b/src/IconBedroomBabyOutlinedFilled.tsx new file mode 100644 index 000000000..0d07fc85f --- /dev/null +++ b/src/IconBedroomBabyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomBabyOutlinedFilled as default } diff --git a/src/IconBedroomBabyRoundedFilled.tsx b/src/IconBedroomBabyRoundedFilled.tsx new file mode 100644 index 000000000..4fbbcc544 --- /dev/null +++ b/src/IconBedroomBabyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomBabyRoundedFilled as default } diff --git a/src/IconBedroomBabySharpFilled.tsx b/src/IconBedroomBabySharpFilled.tsx new file mode 100644 index 000000000..6f5971953 --- /dev/null +++ b/src/IconBedroomBabySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomBabySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomBabySharpFilled as default } diff --git a/src/IconBedroomChildOutlinedFilled.tsx b/src/IconBedroomChildOutlinedFilled.tsx new file mode 100644 index 000000000..2f85377fb --- /dev/null +++ b/src/IconBedroomChildOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomChildOutlinedFilled as default } diff --git a/src/IconBedroomChildRoundedFilled.tsx b/src/IconBedroomChildRoundedFilled.tsx new file mode 100644 index 000000000..efbdc89a6 --- /dev/null +++ b/src/IconBedroomChildRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomChildRoundedFilled as default } diff --git a/src/IconBedroomChildSharpFilled.tsx b/src/IconBedroomChildSharpFilled.tsx new file mode 100644 index 000000000..60000e15e --- /dev/null +++ b/src/IconBedroomChildSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomChildSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomChildSharpFilled as default } diff --git a/src/IconBedroomParentOutlinedFilled.tsx b/src/IconBedroomParentOutlinedFilled.tsx new file mode 100644 index 000000000..6e26f8591 --- /dev/null +++ b/src/IconBedroomParentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomParentOutlinedFilled as default } diff --git a/src/IconBedroomParentRoundedFilled.tsx b/src/IconBedroomParentRoundedFilled.tsx new file mode 100644 index 000000000..89caf8947 --- /dev/null +++ b/src/IconBedroomParentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomParentRoundedFilled as default } diff --git a/src/IconBedroomParentSharpFilled.tsx b/src/IconBedroomParentSharpFilled.tsx new file mode 100644 index 000000000..40ae173dc --- /dev/null +++ b/src/IconBedroomParentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedroomParentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedroomParentSharpFilled as default } diff --git a/src/IconBedtimeOffOutlinedFilled.tsx b/src/IconBedtimeOffOutlinedFilled.tsx new file mode 100644 index 000000000..38ed54767 --- /dev/null +++ b/src/IconBedtimeOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedtimeOffOutlinedFilled as default } diff --git a/src/IconBedtimeOffRoundedFilled.tsx b/src/IconBedtimeOffRoundedFilled.tsx new file mode 100644 index 000000000..0ce0e38ae --- /dev/null +++ b/src/IconBedtimeOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedtimeOffRoundedFilled as default } diff --git a/src/IconBedtimeOffSharpFilled.tsx b/src/IconBedtimeOffSharpFilled.tsx new file mode 100644 index 000000000..d024a1383 --- /dev/null +++ b/src/IconBedtimeOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedtimeOffSharpFilled as default } diff --git a/src/IconBedtimeOutlinedFilled.tsx b/src/IconBedtimeOutlinedFilled.tsx new file mode 100644 index 000000000..ca11cf16c --- /dev/null +++ b/src/IconBedtimeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedtimeOutlinedFilled as default } diff --git a/src/IconBedtimeRoundedFilled.tsx b/src/IconBedtimeRoundedFilled.tsx new file mode 100644 index 000000000..1d1eccf21 --- /dev/null +++ b/src/IconBedtimeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedtimeRoundedFilled as default } diff --git a/src/IconBedtimeSharpFilled.tsx b/src/IconBedtimeSharpFilled.tsx new file mode 100644 index 000000000..5fac1a472 --- /dev/null +++ b/src/IconBedtimeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBedtimeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBedtimeSharpFilled as default } diff --git a/src/IconBeenhereOutlinedFilled.tsx b/src/IconBeenhereOutlinedFilled.tsx new file mode 100644 index 000000000..f4e10525a --- /dev/null +++ b/src/IconBeenhereOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBeenhereOutlinedFilled as default } diff --git a/src/IconBeenhereRoundedFilled.tsx b/src/IconBeenhereRoundedFilled.tsx new file mode 100644 index 000000000..9f5f0aae4 --- /dev/null +++ b/src/IconBeenhereRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBeenhereRoundedFilled as default } diff --git a/src/IconBeenhereSharpFilled.tsx b/src/IconBeenhereSharpFilled.tsx new file mode 100644 index 000000000..480874126 --- /dev/null +++ b/src/IconBeenhereSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBeenhereSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBeenhereSharpFilled as default } diff --git a/src/IconBentoOutlinedFilled.tsx b/src/IconBentoOutlinedFilled.tsx new file mode 100644 index 000000000..abdd95fa5 --- /dev/null +++ b/src/IconBentoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBentoOutlinedFilled as default } diff --git a/src/IconBentoRoundedFilled.tsx b/src/IconBentoRoundedFilled.tsx new file mode 100644 index 000000000..678a0d178 --- /dev/null +++ b/src/IconBentoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBentoRoundedFilled as default } diff --git a/src/IconBentoSharpFilled.tsx b/src/IconBentoSharpFilled.tsx new file mode 100644 index 000000000..d3eab49d0 --- /dev/null +++ b/src/IconBentoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBentoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBentoSharpFilled as default } diff --git a/src/IconBiaOutlinedFilled.tsx b/src/IconBiaOutlinedFilled.tsx new file mode 100644 index 000000000..256e52961 --- /dev/null +++ b/src/IconBiaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBiaOutlinedFilled as default } diff --git a/src/IconBiaRoundedFilled.tsx b/src/IconBiaRoundedFilled.tsx new file mode 100644 index 000000000..1c88afad2 --- /dev/null +++ b/src/IconBiaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBiaRoundedFilled as default } diff --git a/src/IconBiaSharpFilled.tsx b/src/IconBiaSharpFilled.tsx new file mode 100644 index 000000000..1f360d904 --- /dev/null +++ b/src/IconBiaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBiaSharpFilled as default } diff --git a/src/IconBidLandscapeDisabledOutlinedFilled.tsx b/src/IconBidLandscapeDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..4f142759b --- /dev/null +++ b/src/IconBidLandscapeDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBidLandscapeDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBidLandscapeDisabledOutlinedFilled as default } diff --git a/src/IconBidLandscapeDisabledRoundedFilled.tsx b/src/IconBidLandscapeDisabledRoundedFilled.tsx new file mode 100644 index 000000000..c7ce10629 --- /dev/null +++ b/src/IconBidLandscapeDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBidLandscapeDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBidLandscapeDisabledRoundedFilled as default } diff --git a/src/IconBidLandscapeDisabledSharpFilled.tsx b/src/IconBidLandscapeDisabledSharpFilled.tsx new file mode 100644 index 000000000..06ff41fc9 --- /dev/null +++ b/src/IconBidLandscapeDisabledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBidLandscapeDisabledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBidLandscapeDisabledSharpFilled as default } diff --git a/src/IconBidLandscapeOutlinedFilled.tsx b/src/IconBidLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..950ec6c06 --- /dev/null +++ b/src/IconBidLandscapeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBidLandscapeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBidLandscapeOutlinedFilled as default } diff --git a/src/IconBidLandscapeRoundedFilled.tsx b/src/IconBidLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..1180f70d3 --- /dev/null +++ b/src/IconBidLandscapeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBidLandscapeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBidLandscapeRoundedFilled as default } diff --git a/src/IconBidLandscapeSharpFilled.tsx b/src/IconBidLandscapeSharpFilled.tsx new file mode 100644 index 000000000..3da8919ed --- /dev/null +++ b/src/IconBidLandscapeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBidLandscapeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBidLandscapeSharpFilled as default } diff --git a/src/IconBigtopUpdatesOutlinedFilled.tsx b/src/IconBigtopUpdatesOutlinedFilled.tsx new file mode 100644 index 000000000..500e9bb0d --- /dev/null +++ b/src/IconBigtopUpdatesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBigtopUpdatesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBigtopUpdatesOutlinedFilled as default } diff --git a/src/IconBigtopUpdatesRoundedFilled.tsx b/src/IconBigtopUpdatesRoundedFilled.tsx new file mode 100644 index 000000000..7d168834a --- /dev/null +++ b/src/IconBigtopUpdatesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBigtopUpdatesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBigtopUpdatesRoundedFilled as default } diff --git a/src/IconBigtopUpdatesSharpFilled.tsx b/src/IconBigtopUpdatesSharpFilled.tsx new file mode 100644 index 000000000..138c20cdf --- /dev/null +++ b/src/IconBigtopUpdatesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBigtopUpdatesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBigtopUpdatesSharpFilled as default } diff --git a/src/IconBikeDockOutlinedFilled.tsx b/src/IconBikeDockOutlinedFilled.tsx new file mode 100644 index 000000000..b435f105e --- /dev/null +++ b/src/IconBikeDockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeDockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeDockOutlinedFilled as default } diff --git a/src/IconBikeDockRoundedFilled.tsx b/src/IconBikeDockRoundedFilled.tsx new file mode 100644 index 000000000..92e339f32 --- /dev/null +++ b/src/IconBikeDockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeDockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeDockRoundedFilled as default } diff --git a/src/IconBikeDockSharpFilled.tsx b/src/IconBikeDockSharpFilled.tsx new file mode 100644 index 000000000..aa89cc902 --- /dev/null +++ b/src/IconBikeDockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeDockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeDockSharpFilled as default } diff --git a/src/IconBikeLaneOutlinedFilled.tsx b/src/IconBikeLaneOutlinedFilled.tsx new file mode 100644 index 000000000..0cee25792 --- /dev/null +++ b/src/IconBikeLaneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeLaneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeLaneOutlinedFilled as default } diff --git a/src/IconBikeLaneRoundedFilled.tsx b/src/IconBikeLaneRoundedFilled.tsx new file mode 100644 index 000000000..6d2b409cf --- /dev/null +++ b/src/IconBikeLaneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeLaneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeLaneRoundedFilled as default } diff --git a/src/IconBikeLaneSharpFilled.tsx b/src/IconBikeLaneSharpFilled.tsx new file mode 100644 index 000000000..9ffd87b49 --- /dev/null +++ b/src/IconBikeLaneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeLaneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeLaneSharpFilled as default } diff --git a/src/IconBikeScooterOutlinedFilled.tsx b/src/IconBikeScooterOutlinedFilled.tsx new file mode 100644 index 000000000..f7d7241a2 --- /dev/null +++ b/src/IconBikeScooterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeScooterOutlinedFilled as default } diff --git a/src/IconBikeScooterRoundedFilled.tsx b/src/IconBikeScooterRoundedFilled.tsx new file mode 100644 index 000000000..7cf3ea32e --- /dev/null +++ b/src/IconBikeScooterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeScooterRoundedFilled as default } diff --git a/src/IconBikeScooterSharpFilled.tsx b/src/IconBikeScooterSharpFilled.tsx new file mode 100644 index 000000000..4cf252126 --- /dev/null +++ b/src/IconBikeScooterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBikeScooterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBikeScooterSharpFilled as default } diff --git a/src/IconBiotechOutlinedFilled.tsx b/src/IconBiotechOutlinedFilled.tsx new file mode 100644 index 000000000..b6276114f --- /dev/null +++ b/src/IconBiotechOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBiotechOutlinedFilled as default } diff --git a/src/IconBiotechRoundedFilled.tsx b/src/IconBiotechRoundedFilled.tsx new file mode 100644 index 000000000..b32938875 --- /dev/null +++ b/src/IconBiotechRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBiotechRoundedFilled as default } diff --git a/src/IconBiotechSharpFilled.tsx b/src/IconBiotechSharpFilled.tsx new file mode 100644 index 000000000..c7c42fc77 --- /dev/null +++ b/src/IconBiotechSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBiotechSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBiotechSharpFilled as default } diff --git a/src/IconBlanketOutlinedFilled.tsx b/src/IconBlanketOutlinedFilled.tsx new file mode 100644 index 000000000..1c441d4be --- /dev/null +++ b/src/IconBlanketOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlanketOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlanketOutlinedFilled as default } diff --git a/src/IconBlanketRoundedFilled.tsx b/src/IconBlanketRoundedFilled.tsx new file mode 100644 index 000000000..1a6d09284 --- /dev/null +++ b/src/IconBlanketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlanketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlanketRoundedFilled as default } diff --git a/src/IconBlanketSharpFilled.tsx b/src/IconBlanketSharpFilled.tsx new file mode 100644 index 000000000..9353009c6 --- /dev/null +++ b/src/IconBlanketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlanketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlanketSharpFilled as default } diff --git a/src/IconBlenderOutlinedFilled.tsx b/src/IconBlenderOutlinedFilled.tsx new file mode 100644 index 000000000..c4d04f71a --- /dev/null +++ b/src/IconBlenderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlenderOutlinedFilled as default } diff --git a/src/IconBlenderRoundedFilled.tsx b/src/IconBlenderRoundedFilled.tsx new file mode 100644 index 000000000..85b2e2e9b --- /dev/null +++ b/src/IconBlenderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlenderRoundedFilled as default } diff --git a/src/IconBlenderSharpFilled.tsx b/src/IconBlenderSharpFilled.tsx new file mode 100644 index 000000000..cff6001e2 --- /dev/null +++ b/src/IconBlenderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlenderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlenderSharpFilled as default } diff --git a/src/IconBlindOutlinedFilled.tsx b/src/IconBlindOutlinedFilled.tsx new file mode 100644 index 000000000..7a187d500 --- /dev/null +++ b/src/IconBlindOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindOutlinedFilled as default } diff --git a/src/IconBlindRoundedFilled.tsx b/src/IconBlindRoundedFilled.tsx new file mode 100644 index 000000000..ac39e320f --- /dev/null +++ b/src/IconBlindRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindRoundedFilled as default } diff --git a/src/IconBlindSharpFilled.tsx b/src/IconBlindSharpFilled.tsx new file mode 100644 index 000000000..de67521e2 --- /dev/null +++ b/src/IconBlindSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindSharpFilled as default } diff --git a/src/IconBlindsClosedOutlinedFilled.tsx b/src/IconBlindsClosedOutlinedFilled.tsx new file mode 100644 index 000000000..3345024d1 --- /dev/null +++ b/src/IconBlindsClosedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindsClosedOutlinedFilled as default } diff --git a/src/IconBlindsClosedRoundedFilled.tsx b/src/IconBlindsClosedRoundedFilled.tsx new file mode 100644 index 000000000..79a1ba1a1 --- /dev/null +++ b/src/IconBlindsClosedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindsClosedRoundedFilled as default } diff --git a/src/IconBlindsClosedSharpFilled.tsx b/src/IconBlindsClosedSharpFilled.tsx new file mode 100644 index 000000000..4eefcca20 --- /dev/null +++ b/src/IconBlindsClosedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsClosedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindsClosedSharpFilled as default } diff --git a/src/IconBlindsOutlinedFilled.tsx b/src/IconBlindsOutlinedFilled.tsx new file mode 100644 index 000000000..0cfde19dc --- /dev/null +++ b/src/IconBlindsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindsOutlinedFilled as default } diff --git a/src/IconBlindsRoundedFilled.tsx b/src/IconBlindsRoundedFilled.tsx new file mode 100644 index 000000000..6a416f081 --- /dev/null +++ b/src/IconBlindsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindsRoundedFilled as default } diff --git a/src/IconBlindsSharpFilled.tsx b/src/IconBlindsSharpFilled.tsx new file mode 100644 index 000000000..081fd60b7 --- /dev/null +++ b/src/IconBlindsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlindsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlindsSharpFilled as default } diff --git a/src/IconBlockOutlinedFilled.tsx b/src/IconBlockOutlinedFilled.tsx new file mode 100644 index 000000000..2f6a26ab3 --- /dev/null +++ b/src/IconBlockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlockOutlinedFilled as default } diff --git a/src/IconBlockRoundedFilled.tsx b/src/IconBlockRoundedFilled.tsx new file mode 100644 index 000000000..3d07f4d35 --- /dev/null +++ b/src/IconBlockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlockRoundedFilled as default } diff --git a/src/IconBlockSharpFilled.tsx b/src/IconBlockSharpFilled.tsx new file mode 100644 index 000000000..5aeda79d6 --- /dev/null +++ b/src/IconBlockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlockSharpFilled as default } diff --git a/src/IconBloodPressureOutlinedFilled.tsx b/src/IconBloodPressureOutlinedFilled.tsx new file mode 100644 index 000000000..4af29de40 --- /dev/null +++ b/src/IconBloodPressureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodPressureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBloodPressureOutlinedFilled as default } diff --git a/src/IconBloodPressureRoundedFilled.tsx b/src/IconBloodPressureRoundedFilled.tsx new file mode 100644 index 000000000..01c8cce7b --- /dev/null +++ b/src/IconBloodPressureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodPressureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBloodPressureRoundedFilled as default } diff --git a/src/IconBloodPressureSharpFilled.tsx b/src/IconBloodPressureSharpFilled.tsx new file mode 100644 index 000000000..7f9298700 --- /dev/null +++ b/src/IconBloodPressureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodPressureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBloodPressureSharpFilled as default } diff --git a/src/IconBloodtypeOutlinedFilled.tsx b/src/IconBloodtypeOutlinedFilled.tsx new file mode 100644 index 000000000..8352151e5 --- /dev/null +++ b/src/IconBloodtypeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBloodtypeOutlinedFilled as default } diff --git a/src/IconBloodtypeRoundedFilled.tsx b/src/IconBloodtypeRoundedFilled.tsx new file mode 100644 index 000000000..2183121fd --- /dev/null +++ b/src/IconBloodtypeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBloodtypeRoundedFilled as default } diff --git a/src/IconBloodtypeSharpFilled.tsx b/src/IconBloodtypeSharpFilled.tsx new file mode 100644 index 000000000..de9a8b24a --- /dev/null +++ b/src/IconBloodtypeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBloodtypeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBloodtypeSharpFilled as default } diff --git a/src/IconBluetoothConnectedOutlinedFilled.tsx b/src/IconBluetoothConnectedOutlinedFilled.tsx new file mode 100644 index 000000000..0e121a2c8 --- /dev/null +++ b/src/IconBluetoothConnectedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothConnectedOutlinedFilled as default } diff --git a/src/IconBluetoothConnectedRoundedFilled.tsx b/src/IconBluetoothConnectedRoundedFilled.tsx new file mode 100644 index 000000000..14d4e6202 --- /dev/null +++ b/src/IconBluetoothConnectedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothConnectedRoundedFilled as default } diff --git a/src/IconBluetoothConnectedSharpFilled.tsx b/src/IconBluetoothConnectedSharpFilled.tsx new file mode 100644 index 000000000..b5ddf96de --- /dev/null +++ b/src/IconBluetoothConnectedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothConnectedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothConnectedSharpFilled as default } diff --git a/src/IconBluetoothDisabledOutlinedFilled.tsx b/src/IconBluetoothDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..335e3fd3f --- /dev/null +++ b/src/IconBluetoothDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothDisabledOutlinedFilled as default } diff --git a/src/IconBluetoothDisabledRoundedFilled.tsx b/src/IconBluetoothDisabledRoundedFilled.tsx new file mode 100644 index 000000000..7a0b8f206 --- /dev/null +++ b/src/IconBluetoothDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothDisabledRoundedFilled as default } diff --git a/src/IconBluetoothDisabledSharpFilled.tsx b/src/IconBluetoothDisabledSharpFilled.tsx new file mode 100644 index 000000000..6e07867b9 --- /dev/null +++ b/src/IconBluetoothDisabledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDisabledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothDisabledSharpFilled as default } diff --git a/src/IconBluetoothDriveOutlinedFilled.tsx b/src/IconBluetoothDriveOutlinedFilled.tsx new file mode 100644 index 000000000..7b7af85b0 --- /dev/null +++ b/src/IconBluetoothDriveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothDriveOutlinedFilled as default } diff --git a/src/IconBluetoothDriveRoundedFilled.tsx b/src/IconBluetoothDriveRoundedFilled.tsx new file mode 100644 index 000000000..3550ac320 --- /dev/null +++ b/src/IconBluetoothDriveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothDriveRoundedFilled as default } diff --git a/src/IconBluetoothDriveSharpFilled.tsx b/src/IconBluetoothDriveSharpFilled.tsx new file mode 100644 index 000000000..674734f9d --- /dev/null +++ b/src/IconBluetoothDriveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothDriveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothDriveSharpFilled as default } diff --git a/src/IconBluetoothOutlinedFilled.tsx b/src/IconBluetoothOutlinedFilled.tsx new file mode 100644 index 000000000..c6b38197e --- /dev/null +++ b/src/IconBluetoothOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothOutlinedFilled as default } diff --git a/src/IconBluetoothRoundedFilled.tsx b/src/IconBluetoothRoundedFilled.tsx new file mode 100644 index 000000000..2a81fe9bd --- /dev/null +++ b/src/IconBluetoothRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothRoundedFilled as default } diff --git a/src/IconBluetoothSearchingOutlinedFilled.tsx b/src/IconBluetoothSearchingOutlinedFilled.tsx new file mode 100644 index 000000000..97012de52 --- /dev/null +++ b/src/IconBluetoothSearchingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothSearchingOutlinedFilled as default } diff --git a/src/IconBluetoothSearchingRoundedFilled.tsx b/src/IconBluetoothSearchingRoundedFilled.tsx new file mode 100644 index 000000000..d4e265bc9 --- /dev/null +++ b/src/IconBluetoothSearchingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothSearchingRoundedFilled as default } diff --git a/src/IconBluetoothSearchingSharpFilled.tsx b/src/IconBluetoothSearchingSharpFilled.tsx new file mode 100644 index 000000000..9b6807865 --- /dev/null +++ b/src/IconBluetoothSearchingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSearchingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothSearchingSharpFilled as default } diff --git a/src/IconBluetoothSharpFilled.tsx b/src/IconBluetoothSharpFilled.tsx new file mode 100644 index 000000000..ac54a86d1 --- /dev/null +++ b/src/IconBluetoothSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBluetoothSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBluetoothSharpFilled as default } diff --git a/src/IconBlurCircularOutlinedFilled.tsx b/src/IconBlurCircularOutlinedFilled.tsx new file mode 100644 index 000000000..4de446a9c --- /dev/null +++ b/src/IconBlurCircularOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurCircularOutlinedFilled as default } diff --git a/src/IconBlurCircularRoundedFilled.tsx b/src/IconBlurCircularRoundedFilled.tsx new file mode 100644 index 000000000..c4fd50c69 --- /dev/null +++ b/src/IconBlurCircularRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurCircularRoundedFilled as default } diff --git a/src/IconBlurCircularSharpFilled.tsx b/src/IconBlurCircularSharpFilled.tsx new file mode 100644 index 000000000..7f49bccbc --- /dev/null +++ b/src/IconBlurCircularSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurCircularSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurCircularSharpFilled as default } diff --git a/src/IconBlurLinearOutlinedFilled.tsx b/src/IconBlurLinearOutlinedFilled.tsx new file mode 100644 index 000000000..680ad9870 --- /dev/null +++ b/src/IconBlurLinearOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurLinearOutlinedFilled as default } diff --git a/src/IconBlurLinearRoundedFilled.tsx b/src/IconBlurLinearRoundedFilled.tsx new file mode 100644 index 000000000..a7245a9f4 --- /dev/null +++ b/src/IconBlurLinearRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurLinearRoundedFilled as default } diff --git a/src/IconBlurLinearSharpFilled.tsx b/src/IconBlurLinearSharpFilled.tsx new file mode 100644 index 000000000..5a3ff768d --- /dev/null +++ b/src/IconBlurLinearSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurLinearSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurLinearSharpFilled as default } diff --git a/src/IconBlurMediumOutlinedFilled.tsx b/src/IconBlurMediumOutlinedFilled.tsx new file mode 100644 index 000000000..b1f850923 --- /dev/null +++ b/src/IconBlurMediumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurMediumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurMediumOutlinedFilled as default } diff --git a/src/IconBlurMediumRoundedFilled.tsx b/src/IconBlurMediumRoundedFilled.tsx new file mode 100644 index 000000000..0349ece6d --- /dev/null +++ b/src/IconBlurMediumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurMediumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurMediumRoundedFilled as default } diff --git a/src/IconBlurMediumSharpFilled.tsx b/src/IconBlurMediumSharpFilled.tsx new file mode 100644 index 000000000..c2491e366 --- /dev/null +++ b/src/IconBlurMediumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurMediumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurMediumSharpFilled as default } diff --git a/src/IconBlurOffOutlinedFilled.tsx b/src/IconBlurOffOutlinedFilled.tsx new file mode 100644 index 000000000..4b380efa4 --- /dev/null +++ b/src/IconBlurOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurOffOutlinedFilled as default } diff --git a/src/IconBlurOffRoundedFilled.tsx b/src/IconBlurOffRoundedFilled.tsx new file mode 100644 index 000000000..03f9a715e --- /dev/null +++ b/src/IconBlurOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurOffRoundedFilled as default } diff --git a/src/IconBlurOffSharpFilled.tsx b/src/IconBlurOffSharpFilled.tsx new file mode 100644 index 000000000..7e34a8bc1 --- /dev/null +++ b/src/IconBlurOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurOffSharpFilled as default } diff --git a/src/IconBlurOnOutlinedFilled.tsx b/src/IconBlurOnOutlinedFilled.tsx new file mode 100644 index 000000000..4b6314003 --- /dev/null +++ b/src/IconBlurOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurOnOutlinedFilled as default } diff --git a/src/IconBlurOnRoundedFilled.tsx b/src/IconBlurOnRoundedFilled.tsx new file mode 100644 index 000000000..d7217ddd0 --- /dev/null +++ b/src/IconBlurOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurOnRoundedFilled as default } diff --git a/src/IconBlurOnSharpFilled.tsx b/src/IconBlurOnSharpFilled.tsx new file mode 100644 index 000000000..2f7a76ae1 --- /dev/null +++ b/src/IconBlurOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurOnSharpFilled as default } diff --git a/src/IconBlurShortOutlinedFilled.tsx b/src/IconBlurShortOutlinedFilled.tsx new file mode 100644 index 000000000..fb48ec87e --- /dev/null +++ b/src/IconBlurShortOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurShortOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurShortOutlinedFilled as default } diff --git a/src/IconBlurShortRoundedFilled.tsx b/src/IconBlurShortRoundedFilled.tsx new file mode 100644 index 000000000..98976a09e --- /dev/null +++ b/src/IconBlurShortRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurShortRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurShortRoundedFilled as default } diff --git a/src/IconBlurShortSharpFilled.tsx b/src/IconBlurShortSharpFilled.tsx new file mode 100644 index 000000000..e0248dfb9 --- /dev/null +++ b/src/IconBlurShortSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBlurShortSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBlurShortSharpFilled as default } diff --git a/src/IconBodyFatOutlinedFilled.tsx b/src/IconBodyFatOutlinedFilled.tsx new file mode 100644 index 000000000..200bf5042 --- /dev/null +++ b/src/IconBodyFatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBodyFatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBodyFatOutlinedFilled as default } diff --git a/src/IconBodyFatRoundedFilled.tsx b/src/IconBodyFatRoundedFilled.tsx new file mode 100644 index 000000000..bd96adba1 --- /dev/null +++ b/src/IconBodyFatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBodyFatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBodyFatRoundedFilled as default } diff --git a/src/IconBodyFatSharpFilled.tsx b/src/IconBodyFatSharpFilled.tsx new file mode 100644 index 000000000..75a4cd5db --- /dev/null +++ b/src/IconBodyFatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBodyFatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBodyFatSharpFilled as default } diff --git a/src/IconBodySystemOutlinedFilled.tsx b/src/IconBodySystemOutlinedFilled.tsx new file mode 100644 index 000000000..3381adcc9 --- /dev/null +++ b/src/IconBodySystemOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBodySystemOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBodySystemOutlinedFilled as default } diff --git a/src/IconBodySystemRoundedFilled.tsx b/src/IconBodySystemRoundedFilled.tsx new file mode 100644 index 000000000..3ea11057e --- /dev/null +++ b/src/IconBodySystemRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBodySystemRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBodySystemRoundedFilled as default } diff --git a/src/IconBodySystemSharpFilled.tsx b/src/IconBodySystemSharpFilled.tsx new file mode 100644 index 000000000..a9ab4a2d8 --- /dev/null +++ b/src/IconBodySystemSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBodySystemSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBodySystemSharpFilled as default } diff --git a/src/IconBoltOutlinedFilled.tsx b/src/IconBoltOutlinedFilled.tsx new file mode 100644 index 000000000..a8ec9aecb --- /dev/null +++ b/src/IconBoltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoltOutlinedFilled as default } diff --git a/src/IconBoltRoundedFilled.tsx b/src/IconBoltRoundedFilled.tsx new file mode 100644 index 000000000..6a7dd7098 --- /dev/null +++ b/src/IconBoltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoltRoundedFilled as default } diff --git a/src/IconBoltSharpFilled.tsx b/src/IconBoltSharpFilled.tsx new file mode 100644 index 000000000..ed3b42660 --- /dev/null +++ b/src/IconBoltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoltSharpFilled as default } diff --git a/src/IconBombOutlinedFilled.tsx b/src/IconBombOutlinedFilled.tsx new file mode 100644 index 000000000..09a6b3a94 --- /dev/null +++ b/src/IconBombOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBombOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBombOutlinedFilled as default } diff --git a/src/IconBombRoundedFilled.tsx b/src/IconBombRoundedFilled.tsx new file mode 100644 index 000000000..33acaa4e2 --- /dev/null +++ b/src/IconBombRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBombRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBombRoundedFilled as default } diff --git a/src/IconBombSharpFilled.tsx b/src/IconBombSharpFilled.tsx new file mode 100644 index 000000000..c37f6f58b --- /dev/null +++ b/src/IconBombSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBombSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBombSharpFilled as default } diff --git a/src/IconBook2OutlinedFilled.tsx b/src/IconBook2OutlinedFilled.tsx new file mode 100644 index 000000000..499f91b0f --- /dev/null +++ b/src/IconBook2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook2OutlinedFilled as default } diff --git a/src/IconBook2RoundedFilled.tsx b/src/IconBook2RoundedFilled.tsx new file mode 100644 index 000000000..6af93c762 --- /dev/null +++ b/src/IconBook2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook2RoundedFilled as default } diff --git a/src/IconBook2SharpFilled.tsx b/src/IconBook2SharpFilled.tsx new file mode 100644 index 000000000..58ffba217 --- /dev/null +++ b/src/IconBook2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook2SharpFilled as default } diff --git a/src/IconBook3OutlinedFilled.tsx b/src/IconBook3OutlinedFilled.tsx new file mode 100644 index 000000000..e66cc08a2 --- /dev/null +++ b/src/IconBook3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook3OutlinedFilled as default } diff --git a/src/IconBook3RoundedFilled.tsx b/src/IconBook3RoundedFilled.tsx new file mode 100644 index 000000000..85ee006c6 --- /dev/null +++ b/src/IconBook3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook3RoundedFilled as default } diff --git a/src/IconBook3SharpFilled.tsx b/src/IconBook3SharpFilled.tsx new file mode 100644 index 000000000..fd2657dba --- /dev/null +++ b/src/IconBook3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook3SharpFilled as default } diff --git a/src/IconBook4OutlinedFilled.tsx b/src/IconBook4OutlinedFilled.tsx new file mode 100644 index 000000000..d10f5663b --- /dev/null +++ b/src/IconBook4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook4OutlinedFilled as default } diff --git a/src/IconBook4RoundedFilled.tsx b/src/IconBook4RoundedFilled.tsx new file mode 100644 index 000000000..0e7de6a46 --- /dev/null +++ b/src/IconBook4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook4RoundedFilled as default } diff --git a/src/IconBook4SharpFilled.tsx b/src/IconBook4SharpFilled.tsx new file mode 100644 index 000000000..7078e60d9 --- /dev/null +++ b/src/IconBook4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook4SharpFilled as default } diff --git a/src/IconBook5OutlinedFilled.tsx b/src/IconBook5OutlinedFilled.tsx new file mode 100644 index 000000000..518f8de28 --- /dev/null +++ b/src/IconBook5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook5OutlinedFilled as default } diff --git a/src/IconBook5RoundedFilled.tsx b/src/IconBook5RoundedFilled.tsx new file mode 100644 index 000000000..9b539c37d --- /dev/null +++ b/src/IconBook5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook5RoundedFilled as default } diff --git a/src/IconBook5SharpFilled.tsx b/src/IconBook5SharpFilled.tsx new file mode 100644 index 000000000..53f042e4a --- /dev/null +++ b/src/IconBook5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBook5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBook5SharpFilled as default } diff --git a/src/IconBookOnlineOutlinedFilled.tsx b/src/IconBookOnlineOutlinedFilled.tsx new file mode 100644 index 000000000..c7b7f4296 --- /dev/null +++ b/src/IconBookOnlineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookOnlineOutlinedFilled as default } diff --git a/src/IconBookOnlineRoundedFilled.tsx b/src/IconBookOnlineRoundedFilled.tsx new file mode 100644 index 000000000..49a7e82c9 --- /dev/null +++ b/src/IconBookOnlineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookOnlineRoundedFilled as default } diff --git a/src/IconBookOnlineSharpFilled.tsx b/src/IconBookOnlineSharpFilled.tsx new file mode 100644 index 000000000..57f7b7515 --- /dev/null +++ b/src/IconBookOnlineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOnlineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookOnlineSharpFilled as default } diff --git a/src/IconBookOutlinedFilled.tsx b/src/IconBookOutlinedFilled.tsx new file mode 100644 index 000000000..9354e441b --- /dev/null +++ b/src/IconBookOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookOutlinedFilled as default } diff --git a/src/IconBookRoundedFilled.tsx b/src/IconBookRoundedFilled.tsx new file mode 100644 index 000000000..b8286788a --- /dev/null +++ b/src/IconBookRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookRoundedFilled as default } diff --git a/src/IconBookSharpFilled.tsx b/src/IconBookSharpFilled.tsx new file mode 100644 index 000000000..8a59fe473 --- /dev/null +++ b/src/IconBookSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookSharpFilled as default } diff --git a/src/IconBookmarkAddOutlinedFilled.tsx b/src/IconBookmarkAddOutlinedFilled.tsx new file mode 100644 index 000000000..bbe53e669 --- /dev/null +++ b/src/IconBookmarkAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkAddOutlinedFilled as default } diff --git a/src/IconBookmarkAddRoundedFilled.tsx b/src/IconBookmarkAddRoundedFilled.tsx new file mode 100644 index 000000000..701214c4e --- /dev/null +++ b/src/IconBookmarkAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkAddRoundedFilled as default } diff --git a/src/IconBookmarkAddSharpFilled.tsx b/src/IconBookmarkAddSharpFilled.tsx new file mode 100644 index 000000000..ceba1db4b --- /dev/null +++ b/src/IconBookmarkAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkAddSharpFilled as default } diff --git a/src/IconBookmarkAddedOutlinedFilled.tsx b/src/IconBookmarkAddedOutlinedFilled.tsx new file mode 100644 index 000000000..75c322e43 --- /dev/null +++ b/src/IconBookmarkAddedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkAddedOutlinedFilled as default } diff --git a/src/IconBookmarkAddedRoundedFilled.tsx b/src/IconBookmarkAddedRoundedFilled.tsx new file mode 100644 index 000000000..d7d367200 --- /dev/null +++ b/src/IconBookmarkAddedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkAddedRoundedFilled as default } diff --git a/src/IconBookmarkAddedSharpFilled.tsx b/src/IconBookmarkAddedSharpFilled.tsx new file mode 100644 index 000000000..a508b714b --- /dev/null +++ b/src/IconBookmarkAddedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkAddedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkAddedSharpFilled as default } diff --git a/src/IconBookmarkBagOutlinedFilled.tsx b/src/IconBookmarkBagOutlinedFilled.tsx new file mode 100644 index 000000000..cbe96820f --- /dev/null +++ b/src/IconBookmarkBagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkBagOutlinedFilled as default } diff --git a/src/IconBookmarkBagRoundedFilled.tsx b/src/IconBookmarkBagRoundedFilled.tsx new file mode 100644 index 000000000..2a8ff224e --- /dev/null +++ b/src/IconBookmarkBagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkBagRoundedFilled as default } diff --git a/src/IconBookmarkBagSharpFilled.tsx b/src/IconBookmarkBagSharpFilled.tsx new file mode 100644 index 000000000..e2f91292c --- /dev/null +++ b/src/IconBookmarkBagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkBagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkBagSharpFilled as default } diff --git a/src/IconBookmarkCheckOutlinedFilled.tsx b/src/IconBookmarkCheckOutlinedFilled.tsx new file mode 100644 index 000000000..3ec5b69a4 --- /dev/null +++ b/src/IconBookmarkCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkCheckOutlinedFilled as default } diff --git a/src/IconBookmarkCheckRoundedFilled.tsx b/src/IconBookmarkCheckRoundedFilled.tsx new file mode 100644 index 000000000..2bd93a384 --- /dev/null +++ b/src/IconBookmarkCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkCheckRoundedFilled as default } diff --git a/src/IconBookmarkCheckSharpFilled.tsx b/src/IconBookmarkCheckSharpFilled.tsx new file mode 100644 index 000000000..cdd77ebf6 --- /dev/null +++ b/src/IconBookmarkCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkCheckSharpFilled as default } diff --git a/src/IconBookmarkFlagOutlinedFilled.tsx b/src/IconBookmarkFlagOutlinedFilled.tsx new file mode 100644 index 000000000..63a4e7f9f --- /dev/null +++ b/src/IconBookmarkFlagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkFlagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkFlagOutlinedFilled as default } diff --git a/src/IconBookmarkFlagRoundedFilled.tsx b/src/IconBookmarkFlagRoundedFilled.tsx new file mode 100644 index 000000000..a1baa54a7 --- /dev/null +++ b/src/IconBookmarkFlagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkFlagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkFlagRoundedFilled as default } diff --git a/src/IconBookmarkFlagSharpFilled.tsx b/src/IconBookmarkFlagSharpFilled.tsx new file mode 100644 index 000000000..f05d22328 --- /dev/null +++ b/src/IconBookmarkFlagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkFlagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkFlagSharpFilled as default } diff --git a/src/IconBookmarkHeartOutlinedFilled.tsx b/src/IconBookmarkHeartOutlinedFilled.tsx new file mode 100644 index 000000000..7a42dba5a --- /dev/null +++ b/src/IconBookmarkHeartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkHeartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkHeartOutlinedFilled as default } diff --git a/src/IconBookmarkHeartRoundedFilled.tsx b/src/IconBookmarkHeartRoundedFilled.tsx new file mode 100644 index 000000000..0d1455c31 --- /dev/null +++ b/src/IconBookmarkHeartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkHeartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkHeartRoundedFilled as default } diff --git a/src/IconBookmarkHeartSharpFilled.tsx b/src/IconBookmarkHeartSharpFilled.tsx new file mode 100644 index 000000000..b0930b0d3 --- /dev/null +++ b/src/IconBookmarkHeartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkHeartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkHeartSharpFilled as default } diff --git a/src/IconBookmarkManagerOutlinedFilled.tsx b/src/IconBookmarkManagerOutlinedFilled.tsx new file mode 100644 index 000000000..26798038b --- /dev/null +++ b/src/IconBookmarkManagerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkManagerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkManagerOutlinedFilled as default } diff --git a/src/IconBookmarkManagerRoundedFilled.tsx b/src/IconBookmarkManagerRoundedFilled.tsx new file mode 100644 index 000000000..0e66f251b --- /dev/null +++ b/src/IconBookmarkManagerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkManagerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkManagerRoundedFilled as default } diff --git a/src/IconBookmarkManagerSharpFilled.tsx b/src/IconBookmarkManagerSharpFilled.tsx new file mode 100644 index 000000000..1c52b6dd1 --- /dev/null +++ b/src/IconBookmarkManagerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkManagerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkManagerSharpFilled as default } diff --git a/src/IconBookmarkOutlinedFilled.tsx b/src/IconBookmarkOutlinedFilled.tsx new file mode 100644 index 000000000..019f0b1b1 --- /dev/null +++ b/src/IconBookmarkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkOutlinedFilled as default } diff --git a/src/IconBookmarkRemoveOutlinedFilled.tsx b/src/IconBookmarkRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..1bd50a1f8 --- /dev/null +++ b/src/IconBookmarkRemoveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkRemoveOutlinedFilled as default } diff --git a/src/IconBookmarkRemoveRoundedFilled.tsx b/src/IconBookmarkRemoveRoundedFilled.tsx new file mode 100644 index 000000000..452c73044 --- /dev/null +++ b/src/IconBookmarkRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkRemoveRoundedFilled as default } diff --git a/src/IconBookmarkRemoveSharpFilled.tsx b/src/IconBookmarkRemoveSharpFilled.tsx new file mode 100644 index 000000000..4d7ac8fa5 --- /dev/null +++ b/src/IconBookmarkRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkRemoveSharpFilled as default } diff --git a/src/IconBookmarkRoundedFilled.tsx b/src/IconBookmarkRoundedFilled.tsx new file mode 100644 index 000000000..b2bfbdae1 --- /dev/null +++ b/src/IconBookmarkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkRoundedFilled as default } diff --git a/src/IconBookmarkSharpFilled.tsx b/src/IconBookmarkSharpFilled.tsx new file mode 100644 index 000000000..1c3921be2 --- /dev/null +++ b/src/IconBookmarkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkSharpFilled as default } diff --git a/src/IconBookmarkStarOutlinedFilled.tsx b/src/IconBookmarkStarOutlinedFilled.tsx new file mode 100644 index 000000000..aa3f8ad4d --- /dev/null +++ b/src/IconBookmarkStarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkStarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkStarOutlinedFilled as default } diff --git a/src/IconBookmarkStarRoundedFilled.tsx b/src/IconBookmarkStarRoundedFilled.tsx new file mode 100644 index 000000000..5f441a5e5 --- /dev/null +++ b/src/IconBookmarkStarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkStarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkStarRoundedFilled as default } diff --git a/src/IconBookmarkStarSharpFilled.tsx b/src/IconBookmarkStarSharpFilled.tsx new file mode 100644 index 000000000..1bd73e243 --- /dev/null +++ b/src/IconBookmarkStarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarkStarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarkStarSharpFilled as default } diff --git a/src/IconBookmarksOutlinedFilled.tsx b/src/IconBookmarksOutlinedFilled.tsx new file mode 100644 index 000000000..029c4ec3e --- /dev/null +++ b/src/IconBookmarksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarksOutlinedFilled as default } diff --git a/src/IconBookmarksRoundedFilled.tsx b/src/IconBookmarksRoundedFilled.tsx new file mode 100644 index 000000000..4956e8b61 --- /dev/null +++ b/src/IconBookmarksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarksRoundedFilled as default } diff --git a/src/IconBookmarksSharpFilled.tsx b/src/IconBookmarksSharpFilled.tsx new file mode 100644 index 000000000..0016268b6 --- /dev/null +++ b/src/IconBookmarksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBookmarksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBookmarksSharpFilled as default } diff --git a/src/IconBorderAllOutlinedFilled.tsx b/src/IconBorderAllOutlinedFilled.tsx new file mode 100644 index 000000000..17c856d75 --- /dev/null +++ b/src/IconBorderAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderAllOutlinedFilled as default } diff --git a/src/IconBorderAllRoundedFilled.tsx b/src/IconBorderAllRoundedFilled.tsx new file mode 100644 index 000000000..208cd2d69 --- /dev/null +++ b/src/IconBorderAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderAllRoundedFilled as default } diff --git a/src/IconBorderAllSharpFilled.tsx b/src/IconBorderAllSharpFilled.tsx new file mode 100644 index 000000000..911a8e534 --- /dev/null +++ b/src/IconBorderAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderAllSharpFilled as default } diff --git a/src/IconBorderBottomOutlinedFilled.tsx b/src/IconBorderBottomOutlinedFilled.tsx new file mode 100644 index 000000000..698c8ad57 --- /dev/null +++ b/src/IconBorderBottomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderBottomOutlinedFilled as default } diff --git a/src/IconBorderBottomRoundedFilled.tsx b/src/IconBorderBottomRoundedFilled.tsx new file mode 100644 index 000000000..acecb657d --- /dev/null +++ b/src/IconBorderBottomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderBottomRoundedFilled as default } diff --git a/src/IconBorderBottomSharpFilled.tsx b/src/IconBorderBottomSharpFilled.tsx new file mode 100644 index 000000000..34b756501 --- /dev/null +++ b/src/IconBorderBottomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderBottomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderBottomSharpFilled as default } diff --git a/src/IconBorderClearOutlinedFilled.tsx b/src/IconBorderClearOutlinedFilled.tsx new file mode 100644 index 000000000..051b81219 --- /dev/null +++ b/src/IconBorderClearOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderClearOutlinedFilled as default } diff --git a/src/IconBorderClearRoundedFilled.tsx b/src/IconBorderClearRoundedFilled.tsx new file mode 100644 index 000000000..42a410fef --- /dev/null +++ b/src/IconBorderClearRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderClearRoundedFilled as default } diff --git a/src/IconBorderClearSharpFilled.tsx b/src/IconBorderClearSharpFilled.tsx new file mode 100644 index 000000000..68c1c5e7f --- /dev/null +++ b/src/IconBorderClearSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderClearSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderClearSharpFilled as default } diff --git a/src/IconBorderColorOutlinedFilled.tsx b/src/IconBorderColorOutlinedFilled.tsx new file mode 100644 index 000000000..429dd21de --- /dev/null +++ b/src/IconBorderColorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderColorOutlinedFilled as default } diff --git a/src/IconBorderColorRoundedFilled.tsx b/src/IconBorderColorRoundedFilled.tsx new file mode 100644 index 000000000..15c01ffd5 --- /dev/null +++ b/src/IconBorderColorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderColorRoundedFilled as default } diff --git a/src/IconBorderColorSharpFilled.tsx b/src/IconBorderColorSharpFilled.tsx new file mode 100644 index 000000000..a1fb88a10 --- /dev/null +++ b/src/IconBorderColorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderColorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderColorSharpFilled as default } diff --git a/src/IconBorderHorizontalOutlinedFilled.tsx b/src/IconBorderHorizontalOutlinedFilled.tsx new file mode 100644 index 000000000..f7b38535f --- /dev/null +++ b/src/IconBorderHorizontalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderHorizontalOutlinedFilled as default } diff --git a/src/IconBorderHorizontalRoundedFilled.tsx b/src/IconBorderHorizontalRoundedFilled.tsx new file mode 100644 index 000000000..ecc0feac3 --- /dev/null +++ b/src/IconBorderHorizontalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderHorizontalRoundedFilled as default } diff --git a/src/IconBorderHorizontalSharpFilled.tsx b/src/IconBorderHorizontalSharpFilled.tsx new file mode 100644 index 000000000..0bd83f501 --- /dev/null +++ b/src/IconBorderHorizontalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderHorizontalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderHorizontalSharpFilled as default } diff --git a/src/IconBorderInnerOutlinedFilled.tsx b/src/IconBorderInnerOutlinedFilled.tsx new file mode 100644 index 000000000..ef594210b --- /dev/null +++ b/src/IconBorderInnerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderInnerOutlinedFilled as default } diff --git a/src/IconBorderInnerRoundedFilled.tsx b/src/IconBorderInnerRoundedFilled.tsx new file mode 100644 index 000000000..6b333859b --- /dev/null +++ b/src/IconBorderInnerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderInnerRoundedFilled as default } diff --git a/src/IconBorderInnerSharpFilled.tsx b/src/IconBorderInnerSharpFilled.tsx new file mode 100644 index 000000000..bdb351f8e --- /dev/null +++ b/src/IconBorderInnerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderInnerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderInnerSharpFilled as default } diff --git a/src/IconBorderLeftOutlinedFilled.tsx b/src/IconBorderLeftOutlinedFilled.tsx new file mode 100644 index 000000000..1c66d4a6e --- /dev/null +++ b/src/IconBorderLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderLeftOutlinedFilled as default } diff --git a/src/IconBorderLeftRoundedFilled.tsx b/src/IconBorderLeftRoundedFilled.tsx new file mode 100644 index 000000000..d0a5fc31c --- /dev/null +++ b/src/IconBorderLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderLeftRoundedFilled as default } diff --git a/src/IconBorderLeftSharpFilled.tsx b/src/IconBorderLeftSharpFilled.tsx new file mode 100644 index 000000000..41c044df3 --- /dev/null +++ b/src/IconBorderLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderLeftSharpFilled as default } diff --git a/src/IconBorderOuterOutlinedFilled.tsx b/src/IconBorderOuterOutlinedFilled.tsx new file mode 100644 index 000000000..0032f54ee --- /dev/null +++ b/src/IconBorderOuterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderOuterOutlinedFilled as default } diff --git a/src/IconBorderOuterRoundedFilled.tsx b/src/IconBorderOuterRoundedFilled.tsx new file mode 100644 index 000000000..693dc8166 --- /dev/null +++ b/src/IconBorderOuterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderOuterRoundedFilled as default } diff --git a/src/IconBorderOuterSharpFilled.tsx b/src/IconBorderOuterSharpFilled.tsx new file mode 100644 index 000000000..c417a15cf --- /dev/null +++ b/src/IconBorderOuterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderOuterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderOuterSharpFilled as default } diff --git a/src/IconBorderRightOutlinedFilled.tsx b/src/IconBorderRightOutlinedFilled.tsx new file mode 100644 index 000000000..61a21b1d8 --- /dev/null +++ b/src/IconBorderRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderRightOutlinedFilled as default } diff --git a/src/IconBorderRightRoundedFilled.tsx b/src/IconBorderRightRoundedFilled.tsx new file mode 100644 index 000000000..7024a218c --- /dev/null +++ b/src/IconBorderRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderRightRoundedFilled as default } diff --git a/src/IconBorderRightSharpFilled.tsx b/src/IconBorderRightSharpFilled.tsx new file mode 100644 index 000000000..f9e3b6bbd --- /dev/null +++ b/src/IconBorderRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderRightSharpFilled as default } diff --git a/src/IconBorderStyleOutlinedFilled.tsx b/src/IconBorderStyleOutlinedFilled.tsx new file mode 100644 index 000000000..1777455c6 --- /dev/null +++ b/src/IconBorderStyleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderStyleOutlinedFilled as default } diff --git a/src/IconBorderStyleRoundedFilled.tsx b/src/IconBorderStyleRoundedFilled.tsx new file mode 100644 index 000000000..ffc330f47 --- /dev/null +++ b/src/IconBorderStyleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderStyleRoundedFilled as default } diff --git a/src/IconBorderStyleSharpFilled.tsx b/src/IconBorderStyleSharpFilled.tsx new file mode 100644 index 000000000..7abedf8e5 --- /dev/null +++ b/src/IconBorderStyleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderStyleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderStyleSharpFilled as default } diff --git a/src/IconBorderTopOutlinedFilled.tsx b/src/IconBorderTopOutlinedFilled.tsx new file mode 100644 index 000000000..0a21a7f6c --- /dev/null +++ b/src/IconBorderTopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderTopOutlinedFilled as default } diff --git a/src/IconBorderTopRoundedFilled.tsx b/src/IconBorderTopRoundedFilled.tsx new file mode 100644 index 000000000..19e0763ad --- /dev/null +++ b/src/IconBorderTopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderTopRoundedFilled as default } diff --git a/src/IconBorderTopSharpFilled.tsx b/src/IconBorderTopSharpFilled.tsx new file mode 100644 index 000000000..729eec62c --- /dev/null +++ b/src/IconBorderTopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderTopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderTopSharpFilled as default } diff --git a/src/IconBorderVerticalOutlinedFilled.tsx b/src/IconBorderVerticalOutlinedFilled.tsx new file mode 100644 index 000000000..c59b2f5f4 --- /dev/null +++ b/src/IconBorderVerticalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderVerticalOutlinedFilled as default } diff --git a/src/IconBorderVerticalRoundedFilled.tsx b/src/IconBorderVerticalRoundedFilled.tsx new file mode 100644 index 000000000..53e77ed06 --- /dev/null +++ b/src/IconBorderVerticalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderVerticalRoundedFilled as default } diff --git a/src/IconBorderVerticalSharpFilled.tsx b/src/IconBorderVerticalSharpFilled.tsx new file mode 100644 index 000000000..4f4a2499a --- /dev/null +++ b/src/IconBorderVerticalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorderVerticalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorderVerticalSharpFilled as default } diff --git a/src/IconBorgOutlinedFilled.tsx b/src/IconBorgOutlinedFilled.tsx new file mode 100644 index 000000000..62f17baba --- /dev/null +++ b/src/IconBorgOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorgOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorgOutlinedFilled as default } diff --git a/src/IconBorgRoundedFilled.tsx b/src/IconBorgRoundedFilled.tsx new file mode 100644 index 000000000..3d14ed885 --- /dev/null +++ b/src/IconBorgRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorgRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorgRoundedFilled as default } diff --git a/src/IconBorgSharpFilled.tsx b/src/IconBorgSharpFilled.tsx new file mode 100644 index 000000000..f836b05d5 --- /dev/null +++ b/src/IconBorgSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBorgSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBorgSharpFilled as default } diff --git a/src/IconBottomAppBarOutlinedFilled.tsx b/src/IconBottomAppBarOutlinedFilled.tsx new file mode 100644 index 000000000..31b29421e --- /dev/null +++ b/src/IconBottomAppBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomAppBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomAppBarOutlinedFilled as default } diff --git a/src/IconBottomAppBarRoundedFilled.tsx b/src/IconBottomAppBarRoundedFilled.tsx new file mode 100644 index 000000000..9540bc561 --- /dev/null +++ b/src/IconBottomAppBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomAppBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomAppBarRoundedFilled as default } diff --git a/src/IconBottomAppBarSharpFilled.tsx b/src/IconBottomAppBarSharpFilled.tsx new file mode 100644 index 000000000..86207b936 --- /dev/null +++ b/src/IconBottomAppBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomAppBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomAppBarSharpFilled as default } diff --git a/src/IconBottomDrawerOutlinedFilled.tsx b/src/IconBottomDrawerOutlinedFilled.tsx new file mode 100644 index 000000000..f889db5d2 --- /dev/null +++ b/src/IconBottomDrawerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomDrawerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomDrawerOutlinedFilled as default } diff --git a/src/IconBottomDrawerRoundedFilled.tsx b/src/IconBottomDrawerRoundedFilled.tsx new file mode 100644 index 000000000..44255a9a4 --- /dev/null +++ b/src/IconBottomDrawerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomDrawerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomDrawerRoundedFilled as default } diff --git a/src/IconBottomDrawerSharpFilled.tsx b/src/IconBottomDrawerSharpFilled.tsx new file mode 100644 index 000000000..7ed1eb1e1 --- /dev/null +++ b/src/IconBottomDrawerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomDrawerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomDrawerSharpFilled as default } diff --git a/src/IconBottomNavigationOutlinedFilled.tsx b/src/IconBottomNavigationOutlinedFilled.tsx new file mode 100644 index 000000000..52e7cadb8 --- /dev/null +++ b/src/IconBottomNavigationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomNavigationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomNavigationOutlinedFilled as default } diff --git a/src/IconBottomNavigationRoundedFilled.tsx b/src/IconBottomNavigationRoundedFilled.tsx new file mode 100644 index 000000000..f10d8e009 --- /dev/null +++ b/src/IconBottomNavigationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomNavigationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomNavigationRoundedFilled as default } diff --git a/src/IconBottomNavigationSharpFilled.tsx b/src/IconBottomNavigationSharpFilled.tsx new file mode 100644 index 000000000..9d46446d2 --- /dev/null +++ b/src/IconBottomNavigationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomNavigationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomNavigationSharpFilled as default } diff --git a/src/IconBottomPanelCloseOutlinedFilled.tsx b/src/IconBottomPanelCloseOutlinedFilled.tsx new file mode 100644 index 000000000..c28cb281e --- /dev/null +++ b/src/IconBottomPanelCloseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomPanelCloseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomPanelCloseOutlinedFilled as default } diff --git a/src/IconBottomPanelCloseRoundedFilled.tsx b/src/IconBottomPanelCloseRoundedFilled.tsx new file mode 100644 index 000000000..0acaa0946 --- /dev/null +++ b/src/IconBottomPanelCloseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomPanelCloseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomPanelCloseRoundedFilled as default } diff --git a/src/IconBottomPanelCloseSharpFilled.tsx b/src/IconBottomPanelCloseSharpFilled.tsx new file mode 100644 index 000000000..80363c0c5 --- /dev/null +++ b/src/IconBottomPanelCloseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomPanelCloseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomPanelCloseSharpFilled as default } diff --git a/src/IconBottomPanelOpenOutlinedFilled.tsx b/src/IconBottomPanelOpenOutlinedFilled.tsx new file mode 100644 index 000000000..af009d02a --- /dev/null +++ b/src/IconBottomPanelOpenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomPanelOpenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomPanelOpenOutlinedFilled as default } diff --git a/src/IconBottomPanelOpenRoundedFilled.tsx b/src/IconBottomPanelOpenRoundedFilled.tsx new file mode 100644 index 000000000..89711e171 --- /dev/null +++ b/src/IconBottomPanelOpenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomPanelOpenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomPanelOpenRoundedFilled as default } diff --git a/src/IconBottomPanelOpenSharpFilled.tsx b/src/IconBottomPanelOpenSharpFilled.tsx new file mode 100644 index 000000000..edf75e9a2 --- /dev/null +++ b/src/IconBottomPanelOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomPanelOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomPanelOpenSharpFilled as default } diff --git a/src/IconBottomRightClickOutlinedFilled.tsx b/src/IconBottomRightClickOutlinedFilled.tsx new file mode 100644 index 000000000..b200d8420 --- /dev/null +++ b/src/IconBottomRightClickOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomRightClickOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomRightClickOutlinedFilled as default } diff --git a/src/IconBottomRightClickRoundedFilled.tsx b/src/IconBottomRightClickRoundedFilled.tsx new file mode 100644 index 000000000..114f509e9 --- /dev/null +++ b/src/IconBottomRightClickRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomRightClickRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomRightClickRoundedFilled as default } diff --git a/src/IconBottomRightClickSharpFilled.tsx b/src/IconBottomRightClickSharpFilled.tsx new file mode 100644 index 000000000..d97c224a4 --- /dev/null +++ b/src/IconBottomRightClickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomRightClickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomRightClickSharpFilled as default } diff --git a/src/IconBottomSheetsOutlinedFilled.tsx b/src/IconBottomSheetsOutlinedFilled.tsx new file mode 100644 index 000000000..071531ba5 --- /dev/null +++ b/src/IconBottomSheetsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomSheetsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomSheetsOutlinedFilled as default } diff --git a/src/IconBottomSheetsRoundedFilled.tsx b/src/IconBottomSheetsRoundedFilled.tsx new file mode 100644 index 000000000..a90de7009 --- /dev/null +++ b/src/IconBottomSheetsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomSheetsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomSheetsRoundedFilled as default } diff --git a/src/IconBottomSheetsSharpFilled.tsx b/src/IconBottomSheetsSharpFilled.tsx new file mode 100644 index 000000000..3abf87343 --- /dev/null +++ b/src/IconBottomSheetsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBottomSheetsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBottomSheetsSharpFilled as default } diff --git a/src/IconBoxAddOutlinedFilled.tsx b/src/IconBoxAddOutlinedFilled.tsx new file mode 100644 index 000000000..83e9eb63a --- /dev/null +++ b/src/IconBoxAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxAddOutlinedFilled as default } diff --git a/src/IconBoxAddRoundedFilled.tsx b/src/IconBoxAddRoundedFilled.tsx new file mode 100644 index 000000000..24ae1283f --- /dev/null +++ b/src/IconBoxAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxAddRoundedFilled as default } diff --git a/src/IconBoxAddSharpFilled.tsx b/src/IconBoxAddSharpFilled.tsx new file mode 100644 index 000000000..8fd5fb7e1 --- /dev/null +++ b/src/IconBoxAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxAddSharpFilled as default } diff --git a/src/IconBoxEditOutlinedFilled.tsx b/src/IconBoxEditOutlinedFilled.tsx new file mode 100644 index 000000000..faeccd82d --- /dev/null +++ b/src/IconBoxEditOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxEditOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxEditOutlinedFilled as default } diff --git a/src/IconBoxEditRoundedFilled.tsx b/src/IconBoxEditRoundedFilled.tsx new file mode 100644 index 000000000..727e6087f --- /dev/null +++ b/src/IconBoxEditRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxEditRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxEditRoundedFilled as default } diff --git a/src/IconBoxEditSharpFilled.tsx b/src/IconBoxEditSharpFilled.tsx new file mode 100644 index 000000000..657d9ec58 --- /dev/null +++ b/src/IconBoxEditSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxEditSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxEditSharpFilled as default } diff --git a/src/IconBoxOutlinedFilled.tsx b/src/IconBoxOutlinedFilled.tsx new file mode 100644 index 000000000..3340915ea --- /dev/null +++ b/src/IconBoxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxOutlinedFilled as default } diff --git a/src/IconBoxRoundedFilled.tsx b/src/IconBoxRoundedFilled.tsx new file mode 100644 index 000000000..51562a290 --- /dev/null +++ b/src/IconBoxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxRoundedFilled as default } diff --git a/src/IconBoxSharpFilled.tsx b/src/IconBoxSharpFilled.tsx new file mode 100644 index 000000000..78e5ae414 --- /dev/null +++ b/src/IconBoxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoxSharpFilled as default } diff --git a/src/IconBoyOutlinedFilled.tsx b/src/IconBoyOutlinedFilled.tsx new file mode 100644 index 000000000..9aa04c944 --- /dev/null +++ b/src/IconBoyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoyOutlinedFilled as default } diff --git a/src/IconBoyRoundedFilled.tsx b/src/IconBoyRoundedFilled.tsx new file mode 100644 index 000000000..70585e6d3 --- /dev/null +++ b/src/IconBoyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoyRoundedFilled as default } diff --git a/src/IconBoySharpFilled.tsx b/src/IconBoySharpFilled.tsx new file mode 100644 index 000000000..34e1a9ba3 --- /dev/null +++ b/src/IconBoySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBoySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBoySharpFilled as default } diff --git a/src/IconBrandAwarenessOutlinedFilled.tsx b/src/IconBrandAwarenessOutlinedFilled.tsx new file mode 100644 index 000000000..ef7853e12 --- /dev/null +++ b/src/IconBrandAwarenessOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandAwarenessOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandAwarenessOutlinedFilled as default } diff --git a/src/IconBrandAwarenessRoundedFilled.tsx b/src/IconBrandAwarenessRoundedFilled.tsx new file mode 100644 index 000000000..d42b4a314 --- /dev/null +++ b/src/IconBrandAwarenessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandAwarenessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandAwarenessRoundedFilled as default } diff --git a/src/IconBrandAwarenessSharpFilled.tsx b/src/IconBrandAwarenessSharpFilled.tsx new file mode 100644 index 000000000..ef59cbca8 --- /dev/null +++ b/src/IconBrandAwarenessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandAwarenessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandAwarenessSharpFilled as default } diff --git a/src/IconBrandFamilyOutlinedFilled.tsx b/src/IconBrandFamilyOutlinedFilled.tsx new file mode 100644 index 000000000..01a09af60 --- /dev/null +++ b/src/IconBrandFamilyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandFamilyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandFamilyOutlinedFilled as default } diff --git a/src/IconBrandFamilyRoundedFilled.tsx b/src/IconBrandFamilyRoundedFilled.tsx new file mode 100644 index 000000000..1540835e2 --- /dev/null +++ b/src/IconBrandFamilyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandFamilyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandFamilyRoundedFilled as default } diff --git a/src/IconBrandFamilySharpFilled.tsx b/src/IconBrandFamilySharpFilled.tsx new file mode 100644 index 000000000..a283bca88 --- /dev/null +++ b/src/IconBrandFamilySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandFamilySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandFamilySharpFilled as default } diff --git a/src/IconBrandingWatermarkOutlinedFilled.tsx b/src/IconBrandingWatermarkOutlinedFilled.tsx new file mode 100644 index 000000000..2caab6e79 --- /dev/null +++ b/src/IconBrandingWatermarkOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandingWatermarkOutlinedFilled as default } diff --git a/src/IconBrandingWatermarkRoundedFilled.tsx b/src/IconBrandingWatermarkRoundedFilled.tsx new file mode 100644 index 000000000..3a39d6a14 --- /dev/null +++ b/src/IconBrandingWatermarkRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandingWatermarkRoundedFilled as default } diff --git a/src/IconBrandingWatermarkSharpFilled.tsx b/src/IconBrandingWatermarkSharpFilled.tsx new file mode 100644 index 000000000..6cfb2316f --- /dev/null +++ b/src/IconBrandingWatermarkSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrandingWatermarkSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrandingWatermarkSharpFilled as default } diff --git a/src/IconBreakfastDiningOutlinedFilled.tsx b/src/IconBreakfastDiningOutlinedFilled.tsx new file mode 100644 index 000000000..b55e474d7 --- /dev/null +++ b/src/IconBreakfastDiningOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakfastDiningOutlinedFilled as default } diff --git a/src/IconBreakfastDiningRoundedFilled.tsx b/src/IconBreakfastDiningRoundedFilled.tsx new file mode 100644 index 000000000..d6106de7a --- /dev/null +++ b/src/IconBreakfastDiningRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakfastDiningRoundedFilled as default } diff --git a/src/IconBreakfastDiningSharpFilled.tsx b/src/IconBreakfastDiningSharpFilled.tsx new file mode 100644 index 000000000..f4fa1695f --- /dev/null +++ b/src/IconBreakfastDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakfastDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakfastDiningSharpFilled as default } diff --git a/src/IconBreakingNewsAlt1OutlinedFilled.tsx b/src/IconBreakingNewsAlt1OutlinedFilled.tsx new file mode 100644 index 000000000..ff1132e76 --- /dev/null +++ b/src/IconBreakingNewsAlt1OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakingNewsAlt1OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakingNewsAlt1OutlinedFilled as default } diff --git a/src/IconBreakingNewsAlt1RoundedFilled.tsx b/src/IconBreakingNewsAlt1RoundedFilled.tsx new file mode 100644 index 000000000..ea5cee7c1 --- /dev/null +++ b/src/IconBreakingNewsAlt1RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakingNewsAlt1RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakingNewsAlt1RoundedFilled as default } diff --git a/src/IconBreakingNewsAlt1SharpFilled.tsx b/src/IconBreakingNewsAlt1SharpFilled.tsx new file mode 100644 index 000000000..654f4f82c --- /dev/null +++ b/src/IconBreakingNewsAlt1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakingNewsAlt1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakingNewsAlt1SharpFilled as default } diff --git a/src/IconBreakingNewsOutlinedFilled.tsx b/src/IconBreakingNewsOutlinedFilled.tsx new file mode 100644 index 000000000..18702369f --- /dev/null +++ b/src/IconBreakingNewsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakingNewsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakingNewsOutlinedFilled as default } diff --git a/src/IconBreakingNewsRoundedFilled.tsx b/src/IconBreakingNewsRoundedFilled.tsx new file mode 100644 index 000000000..b70d403c4 --- /dev/null +++ b/src/IconBreakingNewsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakingNewsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakingNewsRoundedFilled as default } diff --git a/src/IconBreakingNewsSharpFilled.tsx b/src/IconBreakingNewsSharpFilled.tsx new file mode 100644 index 000000000..eb2fa6aef --- /dev/null +++ b/src/IconBreakingNewsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreakingNewsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreakingNewsSharpFilled as default } diff --git a/src/IconBreastfeedingOutlinedFilled.tsx b/src/IconBreastfeedingOutlinedFilled.tsx new file mode 100644 index 000000000..36a500a95 --- /dev/null +++ b/src/IconBreastfeedingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreastfeedingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreastfeedingOutlinedFilled as default } diff --git a/src/IconBreastfeedingRoundedFilled.tsx b/src/IconBreastfeedingRoundedFilled.tsx new file mode 100644 index 000000000..c771614b5 --- /dev/null +++ b/src/IconBreastfeedingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreastfeedingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreastfeedingRoundedFilled as default } diff --git a/src/IconBreastfeedingSharpFilled.tsx b/src/IconBreastfeedingSharpFilled.tsx new file mode 100644 index 000000000..fc2f9e1ae --- /dev/null +++ b/src/IconBreastfeedingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBreastfeedingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBreastfeedingSharpFilled as default } diff --git a/src/IconBrightness1OutlinedFilled.tsx b/src/IconBrightness1OutlinedFilled.tsx new file mode 100644 index 000000000..dd5d8ee58 --- /dev/null +++ b/src/IconBrightness1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness1OutlinedFilled as default } diff --git a/src/IconBrightness1RoundedFilled.tsx b/src/IconBrightness1RoundedFilled.tsx new file mode 100644 index 000000000..29a0d2750 --- /dev/null +++ b/src/IconBrightness1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness1RoundedFilled as default } diff --git a/src/IconBrightness1SharpFilled.tsx b/src/IconBrightness1SharpFilled.tsx new file mode 100644 index 000000000..ce7c6b719 --- /dev/null +++ b/src/IconBrightness1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness1SharpFilled as default } diff --git a/src/IconBrightness2OutlinedFilled.tsx b/src/IconBrightness2OutlinedFilled.tsx new file mode 100644 index 000000000..5390587d9 --- /dev/null +++ b/src/IconBrightness2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness2OutlinedFilled as default } diff --git a/src/IconBrightness2RoundedFilled.tsx b/src/IconBrightness2RoundedFilled.tsx new file mode 100644 index 000000000..051b20fef --- /dev/null +++ b/src/IconBrightness2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness2RoundedFilled as default } diff --git a/src/IconBrightness2SharpFilled.tsx b/src/IconBrightness2SharpFilled.tsx new file mode 100644 index 000000000..5a9cd2287 --- /dev/null +++ b/src/IconBrightness2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness2SharpFilled as default } diff --git a/src/IconBrightness3OutlinedFilled.tsx b/src/IconBrightness3OutlinedFilled.tsx new file mode 100644 index 000000000..c03656aeb --- /dev/null +++ b/src/IconBrightness3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness3OutlinedFilled as default } diff --git a/src/IconBrightness3RoundedFilled.tsx b/src/IconBrightness3RoundedFilled.tsx new file mode 100644 index 000000000..b5e135856 --- /dev/null +++ b/src/IconBrightness3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness3RoundedFilled as default } diff --git a/src/IconBrightness3SharpFilled.tsx b/src/IconBrightness3SharpFilled.tsx new file mode 100644 index 000000000..b48ea2079 --- /dev/null +++ b/src/IconBrightness3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness3SharpFilled as default } diff --git a/src/IconBrightness4OutlinedFilled.tsx b/src/IconBrightness4OutlinedFilled.tsx new file mode 100644 index 000000000..a8bcfb1b5 --- /dev/null +++ b/src/IconBrightness4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness4OutlinedFilled as default } diff --git a/src/IconBrightness4RoundedFilled.tsx b/src/IconBrightness4RoundedFilled.tsx new file mode 100644 index 000000000..1b4eaf4a9 --- /dev/null +++ b/src/IconBrightness4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness4RoundedFilled as default } diff --git a/src/IconBrightness4SharpFilled.tsx b/src/IconBrightness4SharpFilled.tsx new file mode 100644 index 000000000..2580921c4 --- /dev/null +++ b/src/IconBrightness4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness4SharpFilled as default } diff --git a/src/IconBrightness5OutlinedFilled.tsx b/src/IconBrightness5OutlinedFilled.tsx new file mode 100644 index 000000000..7afcea7ab --- /dev/null +++ b/src/IconBrightness5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness5OutlinedFilled as default } diff --git a/src/IconBrightness5RoundedFilled.tsx b/src/IconBrightness5RoundedFilled.tsx new file mode 100644 index 000000000..6c0a2ee25 --- /dev/null +++ b/src/IconBrightness5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness5RoundedFilled as default } diff --git a/src/IconBrightness5SharpFilled.tsx b/src/IconBrightness5SharpFilled.tsx new file mode 100644 index 000000000..9ae0aefdf --- /dev/null +++ b/src/IconBrightness5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness5SharpFilled as default } diff --git a/src/IconBrightness6OutlinedFilled.tsx b/src/IconBrightness6OutlinedFilled.tsx new file mode 100644 index 000000000..189362f31 --- /dev/null +++ b/src/IconBrightness6OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness6OutlinedFilled as default } diff --git a/src/IconBrightness6RoundedFilled.tsx b/src/IconBrightness6RoundedFilled.tsx new file mode 100644 index 000000000..434eaf164 --- /dev/null +++ b/src/IconBrightness6RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness6RoundedFilled as default } diff --git a/src/IconBrightness6SharpFilled.tsx b/src/IconBrightness6SharpFilled.tsx new file mode 100644 index 000000000..d86e87d6e --- /dev/null +++ b/src/IconBrightness6SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness6SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness6SharpFilled as default } diff --git a/src/IconBrightness7OutlinedFilled.tsx b/src/IconBrightness7OutlinedFilled.tsx new file mode 100644 index 000000000..e80cf633f --- /dev/null +++ b/src/IconBrightness7OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness7OutlinedFilled as default } diff --git a/src/IconBrightness7RoundedFilled.tsx b/src/IconBrightness7RoundedFilled.tsx new file mode 100644 index 000000000..010fc3dc3 --- /dev/null +++ b/src/IconBrightness7RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness7RoundedFilled as default } diff --git a/src/IconBrightness7SharpFilled.tsx b/src/IconBrightness7SharpFilled.tsx new file mode 100644 index 000000000..db085a554 --- /dev/null +++ b/src/IconBrightness7SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightness7SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightness7SharpFilled as default } diff --git a/src/IconBrightnessAlertOutlinedFilled.tsx b/src/IconBrightnessAlertOutlinedFilled.tsx new file mode 100644 index 000000000..45a5f9d60 --- /dev/null +++ b/src/IconBrightnessAlertOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAlertOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessAlertOutlinedFilled as default } diff --git a/src/IconBrightnessAlertRoundedFilled.tsx b/src/IconBrightnessAlertRoundedFilled.tsx new file mode 100644 index 000000000..fb923ecf6 --- /dev/null +++ b/src/IconBrightnessAlertRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAlertRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessAlertRoundedFilled as default } diff --git a/src/IconBrightnessAlertSharpFilled.tsx b/src/IconBrightnessAlertSharpFilled.tsx new file mode 100644 index 000000000..677d2691a --- /dev/null +++ b/src/IconBrightnessAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessAlertSharpFilled as default } diff --git a/src/IconBrightnessAutoOutlinedFilled.tsx b/src/IconBrightnessAutoOutlinedFilled.tsx new file mode 100644 index 000000000..aa578d6c5 --- /dev/null +++ b/src/IconBrightnessAutoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessAutoOutlinedFilled as default } diff --git a/src/IconBrightnessAutoRoundedFilled.tsx b/src/IconBrightnessAutoRoundedFilled.tsx new file mode 100644 index 000000000..8b754e20d --- /dev/null +++ b/src/IconBrightnessAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessAutoRoundedFilled as default } diff --git a/src/IconBrightnessAutoSharpFilled.tsx b/src/IconBrightnessAutoSharpFilled.tsx new file mode 100644 index 000000000..703688266 --- /dev/null +++ b/src/IconBrightnessAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessAutoSharpFilled as default } diff --git a/src/IconBrightnessEmptyOutlinedFilled.tsx b/src/IconBrightnessEmptyOutlinedFilled.tsx new file mode 100644 index 000000000..0f57f721e --- /dev/null +++ b/src/IconBrightnessEmptyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessEmptyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessEmptyOutlinedFilled as default } diff --git a/src/IconBrightnessEmptyRoundedFilled.tsx b/src/IconBrightnessEmptyRoundedFilled.tsx new file mode 100644 index 000000000..3bdfa70a7 --- /dev/null +++ b/src/IconBrightnessEmptyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessEmptyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessEmptyRoundedFilled as default } diff --git a/src/IconBrightnessEmptySharpFilled.tsx b/src/IconBrightnessEmptySharpFilled.tsx new file mode 100644 index 000000000..8513927b5 --- /dev/null +++ b/src/IconBrightnessEmptySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessEmptySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessEmptySharpFilled as default } diff --git a/src/IconBrightnessHighOutlinedFilled.tsx b/src/IconBrightnessHighOutlinedFilled.tsx new file mode 100644 index 000000000..6d2265be8 --- /dev/null +++ b/src/IconBrightnessHighOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessHighOutlinedFilled as default } diff --git a/src/IconBrightnessHighRoundedFilled.tsx b/src/IconBrightnessHighRoundedFilled.tsx new file mode 100644 index 000000000..4e3960c20 --- /dev/null +++ b/src/IconBrightnessHighRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessHighRoundedFilled as default } diff --git a/src/IconBrightnessHighSharpFilled.tsx b/src/IconBrightnessHighSharpFilled.tsx new file mode 100644 index 000000000..8ff39742a --- /dev/null +++ b/src/IconBrightnessHighSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessHighSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessHighSharpFilled as default } diff --git a/src/IconBrightnessLowOutlinedFilled.tsx b/src/IconBrightnessLowOutlinedFilled.tsx new file mode 100644 index 000000000..1becfe278 --- /dev/null +++ b/src/IconBrightnessLowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessLowOutlinedFilled as default } diff --git a/src/IconBrightnessLowRoundedFilled.tsx b/src/IconBrightnessLowRoundedFilled.tsx new file mode 100644 index 000000000..977f5a98b --- /dev/null +++ b/src/IconBrightnessLowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessLowRoundedFilled as default } diff --git a/src/IconBrightnessLowSharpFilled.tsx b/src/IconBrightnessLowSharpFilled.tsx new file mode 100644 index 000000000..d363d373e --- /dev/null +++ b/src/IconBrightnessLowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessLowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessLowSharpFilled as default } diff --git a/src/IconBrightnessMediumOutlinedFilled.tsx b/src/IconBrightnessMediumOutlinedFilled.tsx new file mode 100644 index 000000000..507f68886 --- /dev/null +++ b/src/IconBrightnessMediumOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessMediumOutlinedFilled as default } diff --git a/src/IconBrightnessMediumRoundedFilled.tsx b/src/IconBrightnessMediumRoundedFilled.tsx new file mode 100644 index 000000000..ebb0b1982 --- /dev/null +++ b/src/IconBrightnessMediumRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessMediumRoundedFilled as default } diff --git a/src/IconBrightnessMediumSharpFilled.tsx b/src/IconBrightnessMediumSharpFilled.tsx new file mode 100644 index 000000000..3594b1ac3 --- /dev/null +++ b/src/IconBrightnessMediumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrightnessMediumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrightnessMediumSharpFilled as default } diff --git a/src/IconBringYourOwnIpOutlinedFilled.tsx b/src/IconBringYourOwnIpOutlinedFilled.tsx new file mode 100644 index 000000000..9b16a992c --- /dev/null +++ b/src/IconBringYourOwnIpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBringYourOwnIpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBringYourOwnIpOutlinedFilled as default } diff --git a/src/IconBringYourOwnIpRoundedFilled.tsx b/src/IconBringYourOwnIpRoundedFilled.tsx new file mode 100644 index 000000000..0f28da730 --- /dev/null +++ b/src/IconBringYourOwnIpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBringYourOwnIpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBringYourOwnIpRoundedFilled as default } diff --git a/src/IconBringYourOwnIpSharpFilled.tsx b/src/IconBringYourOwnIpSharpFilled.tsx new file mode 100644 index 000000000..130fb3c19 --- /dev/null +++ b/src/IconBringYourOwnIpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBringYourOwnIpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBringYourOwnIpSharpFilled as default } diff --git a/src/IconBroadcastOnHomeOutlinedFilled.tsx b/src/IconBroadcastOnHomeOutlinedFilled.tsx new file mode 100644 index 000000000..e1c731a56 --- /dev/null +++ b/src/IconBroadcastOnHomeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBroadcastOnHomeOutlinedFilled as default } diff --git a/src/IconBroadcastOnHomeRoundedFilled.tsx b/src/IconBroadcastOnHomeRoundedFilled.tsx new file mode 100644 index 000000000..3a01200e9 --- /dev/null +++ b/src/IconBroadcastOnHomeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBroadcastOnHomeRoundedFilled as default } diff --git a/src/IconBroadcastOnHomeSharpFilled.tsx b/src/IconBroadcastOnHomeSharpFilled.tsx new file mode 100644 index 000000000..4d6689598 --- /dev/null +++ b/src/IconBroadcastOnHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBroadcastOnHomeSharpFilled as default } diff --git a/src/IconBroadcastOnPersonalOutlinedFilled.tsx b/src/IconBroadcastOnPersonalOutlinedFilled.tsx new file mode 100644 index 000000000..727577b5a --- /dev/null +++ b/src/IconBroadcastOnPersonalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBroadcastOnPersonalOutlinedFilled as default } diff --git a/src/IconBroadcastOnPersonalRoundedFilled.tsx b/src/IconBroadcastOnPersonalRoundedFilled.tsx new file mode 100644 index 000000000..12da46f8c --- /dev/null +++ b/src/IconBroadcastOnPersonalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBroadcastOnPersonalRoundedFilled as default } diff --git a/src/IconBroadcastOnPersonalSharpFilled.tsx b/src/IconBroadcastOnPersonalSharpFilled.tsx new file mode 100644 index 000000000..4633c45f1 --- /dev/null +++ b/src/IconBroadcastOnPersonalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBroadcastOnPersonalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBroadcastOnPersonalSharpFilled as default } diff --git a/src/IconBrokenImageOutlinedFilled.tsx b/src/IconBrokenImageOutlinedFilled.tsx new file mode 100644 index 000000000..c6b83c8c5 --- /dev/null +++ b/src/IconBrokenImageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrokenImageOutlinedFilled as default } diff --git a/src/IconBrokenImageRoundedFilled.tsx b/src/IconBrokenImageRoundedFilled.tsx new file mode 100644 index 000000000..8ebf29c84 --- /dev/null +++ b/src/IconBrokenImageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrokenImageRoundedFilled as default } diff --git a/src/IconBrokenImageSharpFilled.tsx b/src/IconBrokenImageSharpFilled.tsx new file mode 100644 index 000000000..fd8680184 --- /dev/null +++ b/src/IconBrokenImageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrokenImageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrokenImageSharpFilled as default } diff --git a/src/IconBrowseActivityOutlinedFilled.tsx b/src/IconBrowseActivityOutlinedFilled.tsx new file mode 100644 index 000000000..d5daaac55 --- /dev/null +++ b/src/IconBrowseActivityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseActivityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseActivityOutlinedFilled as default } diff --git a/src/IconBrowseActivityRoundedFilled.tsx b/src/IconBrowseActivityRoundedFilled.tsx new file mode 100644 index 000000000..5113c9bc3 --- /dev/null +++ b/src/IconBrowseActivityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseActivityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseActivityRoundedFilled as default } diff --git a/src/IconBrowseActivitySharpFilled.tsx b/src/IconBrowseActivitySharpFilled.tsx new file mode 100644 index 000000000..3d999e122 --- /dev/null +++ b/src/IconBrowseActivitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseActivitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseActivitySharpFilled as default } diff --git a/src/IconBrowseGalleryOutlinedFilled.tsx b/src/IconBrowseGalleryOutlinedFilled.tsx new file mode 100644 index 000000000..56ded4a01 --- /dev/null +++ b/src/IconBrowseGalleryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGalleryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseGalleryOutlinedFilled as default } diff --git a/src/IconBrowseGalleryRoundedFilled.tsx b/src/IconBrowseGalleryRoundedFilled.tsx new file mode 100644 index 000000000..365d78840 --- /dev/null +++ b/src/IconBrowseGalleryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGalleryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseGalleryRoundedFilled as default } diff --git a/src/IconBrowseGallerySharpFilled.tsx b/src/IconBrowseGallerySharpFilled.tsx new file mode 100644 index 000000000..7c450f384 --- /dev/null +++ b/src/IconBrowseGallerySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseGallerySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseGallerySharpFilled as default } diff --git a/src/IconBrowseOutlinedFilled.tsx b/src/IconBrowseOutlinedFilled.tsx new file mode 100644 index 000000000..aaf34b17c --- /dev/null +++ b/src/IconBrowseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseOutlinedFilled as default } diff --git a/src/IconBrowseRoundedFilled.tsx b/src/IconBrowseRoundedFilled.tsx new file mode 100644 index 000000000..47a343b92 --- /dev/null +++ b/src/IconBrowseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseRoundedFilled as default } diff --git a/src/IconBrowseSharpFilled.tsx b/src/IconBrowseSharpFilled.tsx new file mode 100644 index 000000000..bef963777 --- /dev/null +++ b/src/IconBrowseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowseSharpFilled as default } diff --git a/src/IconBrowserUpdatedOutlinedFilled.tsx b/src/IconBrowserUpdatedOutlinedFilled.tsx new file mode 100644 index 000000000..475de666d --- /dev/null +++ b/src/IconBrowserUpdatedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowserUpdatedOutlinedFilled as default } diff --git a/src/IconBrowserUpdatedRoundedFilled.tsx b/src/IconBrowserUpdatedRoundedFilled.tsx new file mode 100644 index 000000000..e958d4b1a --- /dev/null +++ b/src/IconBrowserUpdatedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowserUpdatedRoundedFilled as default } diff --git a/src/IconBrowserUpdatedSharpFilled.tsx b/src/IconBrowserUpdatedSharpFilled.tsx new file mode 100644 index 000000000..209a111f1 --- /dev/null +++ b/src/IconBrowserUpdatedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrowserUpdatedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrowserUpdatedSharpFilled as default } diff --git a/src/IconBrunchDiningOutlinedFilled.tsx b/src/IconBrunchDiningOutlinedFilled.tsx new file mode 100644 index 000000000..149b734d8 --- /dev/null +++ b/src/IconBrunchDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrunchDiningOutlinedFilled as default } diff --git a/src/IconBrunchDiningRoundedFilled.tsx b/src/IconBrunchDiningRoundedFilled.tsx new file mode 100644 index 000000000..4c7b033b6 --- /dev/null +++ b/src/IconBrunchDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrunchDiningRoundedFilled as default } diff --git a/src/IconBrunchDiningSharpFilled.tsx b/src/IconBrunchDiningSharpFilled.tsx new file mode 100644 index 000000000..2ed523f8e --- /dev/null +++ b/src/IconBrunchDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrunchDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrunchDiningSharpFilled as default } diff --git a/src/IconBrushOutlinedFilled.tsx b/src/IconBrushOutlinedFilled.tsx new file mode 100644 index 000000000..27a7470da --- /dev/null +++ b/src/IconBrushOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrushOutlinedFilled as default } diff --git a/src/IconBrushRoundedFilled.tsx b/src/IconBrushRoundedFilled.tsx new file mode 100644 index 000000000..7ec1fea50 --- /dev/null +++ b/src/IconBrushRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrushRoundedFilled as default } diff --git a/src/IconBrushSharpFilled.tsx b/src/IconBrushSharpFilled.tsx new file mode 100644 index 000000000..28e5beb8b --- /dev/null +++ b/src/IconBrushSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBrushSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBrushSharpFilled as default } diff --git a/src/IconBubbleChartOutlinedFilled.tsx b/src/IconBubbleChartOutlinedFilled.tsx new file mode 100644 index 000000000..6bdd07b8b --- /dev/null +++ b/src/IconBubbleChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubbleChartOutlinedFilled as default } diff --git a/src/IconBubbleChartRoundedFilled.tsx b/src/IconBubbleChartRoundedFilled.tsx new file mode 100644 index 000000000..b68b57947 --- /dev/null +++ b/src/IconBubbleChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubbleChartRoundedFilled as default } diff --git a/src/IconBubbleChartSharpFilled.tsx b/src/IconBubbleChartSharpFilled.tsx new file mode 100644 index 000000000..4de8099e2 --- /dev/null +++ b/src/IconBubbleChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubbleChartSharpFilled as default } diff --git a/src/IconBubbleOutlinedFilled.tsx b/src/IconBubbleOutlinedFilled.tsx new file mode 100644 index 000000000..2c93a93b4 --- /dev/null +++ b/src/IconBubbleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubbleOutlinedFilled as default } diff --git a/src/IconBubbleRoundedFilled.tsx b/src/IconBubbleRoundedFilled.tsx new file mode 100644 index 000000000..e3f31a5ba --- /dev/null +++ b/src/IconBubbleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubbleRoundedFilled as default } diff --git a/src/IconBubbleSharpFilled.tsx b/src/IconBubbleSharpFilled.tsx new file mode 100644 index 000000000..a29ce560f --- /dev/null +++ b/src/IconBubbleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubbleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubbleSharpFilled as default } diff --git a/src/IconBubblesOutlinedFilled.tsx b/src/IconBubblesOutlinedFilled.tsx new file mode 100644 index 000000000..604e396bd --- /dev/null +++ b/src/IconBubblesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubblesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubblesOutlinedFilled as default } diff --git a/src/IconBubblesRoundedFilled.tsx b/src/IconBubblesRoundedFilled.tsx new file mode 100644 index 000000000..87836779d --- /dev/null +++ b/src/IconBubblesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubblesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubblesRoundedFilled as default } diff --git a/src/IconBubblesSharpFilled.tsx b/src/IconBubblesSharpFilled.tsx new file mode 100644 index 000000000..7e0b2276c --- /dev/null +++ b/src/IconBubblesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBubblesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBubblesSharpFilled as default } diff --git a/src/IconBugReportOutlinedFilled.tsx b/src/IconBugReportOutlinedFilled.tsx new file mode 100644 index 000000000..09dc8078d --- /dev/null +++ b/src/IconBugReportOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBugReportOutlinedFilled as default } diff --git a/src/IconBugReportRoundedFilled.tsx b/src/IconBugReportRoundedFilled.tsx new file mode 100644 index 000000000..e94d5c328 --- /dev/null +++ b/src/IconBugReportRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBugReportRoundedFilled as default } diff --git a/src/IconBugReportSharpFilled.tsx b/src/IconBugReportSharpFilled.tsx new file mode 100644 index 000000000..6ed1f5d27 --- /dev/null +++ b/src/IconBugReportSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBugReportSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBugReportSharpFilled as default } diff --git a/src/IconBuildCircleOutlinedFilled.tsx b/src/IconBuildCircleOutlinedFilled.tsx new file mode 100644 index 000000000..7afaed9cc --- /dev/null +++ b/src/IconBuildCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBuildCircleOutlinedFilled as default } diff --git a/src/IconBuildCircleRoundedFilled.tsx b/src/IconBuildCircleRoundedFilled.tsx new file mode 100644 index 000000000..0736a1ca2 --- /dev/null +++ b/src/IconBuildCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBuildCircleRoundedFilled as default } diff --git a/src/IconBuildCircleSharpFilled.tsx b/src/IconBuildCircleSharpFilled.tsx new file mode 100644 index 000000000..be1e7f8be --- /dev/null +++ b/src/IconBuildCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBuildCircleSharpFilled as default } diff --git a/src/IconBuildOutlinedFilled.tsx b/src/IconBuildOutlinedFilled.tsx new file mode 100644 index 000000000..16e8eb119 --- /dev/null +++ b/src/IconBuildOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBuildOutlinedFilled as default } diff --git a/src/IconBuildRoundedFilled.tsx b/src/IconBuildRoundedFilled.tsx new file mode 100644 index 000000000..c6f09769e --- /dev/null +++ b/src/IconBuildRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBuildRoundedFilled as default } diff --git a/src/IconBuildSharpFilled.tsx b/src/IconBuildSharpFilled.tsx new file mode 100644 index 000000000..078ae0127 --- /dev/null +++ b/src/IconBuildSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBuildSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBuildSharpFilled as default } diff --git a/src/IconBungalowOutlinedFilled.tsx b/src/IconBungalowOutlinedFilled.tsx new file mode 100644 index 000000000..38b6aec16 --- /dev/null +++ b/src/IconBungalowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBungalowOutlinedFilled as default } diff --git a/src/IconBungalowRoundedFilled.tsx b/src/IconBungalowRoundedFilled.tsx new file mode 100644 index 000000000..b93c328c2 --- /dev/null +++ b/src/IconBungalowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBungalowRoundedFilled as default } diff --git a/src/IconBungalowSharpFilled.tsx b/src/IconBungalowSharpFilled.tsx new file mode 100644 index 000000000..c2ef73e1d --- /dev/null +++ b/src/IconBungalowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBungalowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBungalowSharpFilled as default } diff --git a/src/IconBurstModeOutlinedFilled.tsx b/src/IconBurstModeOutlinedFilled.tsx new file mode 100644 index 000000000..cb1e0ce6b --- /dev/null +++ b/src/IconBurstModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBurstModeOutlinedFilled as default } diff --git a/src/IconBurstModeRoundedFilled.tsx b/src/IconBurstModeRoundedFilled.tsx new file mode 100644 index 000000000..ebe962c51 --- /dev/null +++ b/src/IconBurstModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBurstModeRoundedFilled as default } diff --git a/src/IconBurstModeSharpFilled.tsx b/src/IconBurstModeSharpFilled.tsx new file mode 100644 index 000000000..319dfb8af --- /dev/null +++ b/src/IconBurstModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBurstModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBurstModeSharpFilled as default } diff --git a/src/IconBusAlertOutlinedFilled.tsx b/src/IconBusAlertOutlinedFilled.tsx new file mode 100644 index 000000000..d04f77170 --- /dev/null +++ b/src/IconBusAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusAlertOutlinedFilled as default } diff --git a/src/IconBusAlertRoundedFilled.tsx b/src/IconBusAlertRoundedFilled.tsx new file mode 100644 index 000000000..2487f077f --- /dev/null +++ b/src/IconBusAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusAlertRoundedFilled as default } diff --git a/src/IconBusAlertSharpFilled.tsx b/src/IconBusAlertSharpFilled.tsx new file mode 100644 index 000000000..084216ffe --- /dev/null +++ b/src/IconBusAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusAlertSharpFilled as default } diff --git a/src/IconBusinessCenterOutlinedFilled.tsx b/src/IconBusinessCenterOutlinedFilled.tsx new file mode 100644 index 000000000..323aa8d62 --- /dev/null +++ b/src/IconBusinessCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessCenterOutlinedFilled as default } diff --git a/src/IconBusinessCenterRoundedFilled.tsx b/src/IconBusinessCenterRoundedFilled.tsx new file mode 100644 index 000000000..6deb696a7 --- /dev/null +++ b/src/IconBusinessCenterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessCenterRoundedFilled as default } diff --git a/src/IconBusinessCenterSharpFilled.tsx b/src/IconBusinessCenterSharpFilled.tsx new file mode 100644 index 000000000..cceee7cc0 --- /dev/null +++ b/src/IconBusinessCenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessCenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessCenterSharpFilled as default } diff --git a/src/IconBusinessChipOutlinedFilled.tsx b/src/IconBusinessChipOutlinedFilled.tsx new file mode 100644 index 000000000..2b0f97224 --- /dev/null +++ b/src/IconBusinessChipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessChipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessChipOutlinedFilled as default } diff --git a/src/IconBusinessChipRoundedFilled.tsx b/src/IconBusinessChipRoundedFilled.tsx new file mode 100644 index 000000000..45f13e53c --- /dev/null +++ b/src/IconBusinessChipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessChipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessChipRoundedFilled as default } diff --git a/src/IconBusinessChipSharpFilled.tsx b/src/IconBusinessChipSharpFilled.tsx new file mode 100644 index 000000000..11d25f24c --- /dev/null +++ b/src/IconBusinessChipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessChipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessChipSharpFilled as default } diff --git a/src/IconBusinessMessagesOutlinedFilled.tsx b/src/IconBusinessMessagesOutlinedFilled.tsx new file mode 100644 index 000000000..7da3f3f83 --- /dev/null +++ b/src/IconBusinessMessagesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessMessagesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessMessagesOutlinedFilled as default } diff --git a/src/IconBusinessMessagesRoundedFilled.tsx b/src/IconBusinessMessagesRoundedFilled.tsx new file mode 100644 index 000000000..50c6fcc62 --- /dev/null +++ b/src/IconBusinessMessagesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessMessagesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessMessagesRoundedFilled as default } diff --git a/src/IconBusinessMessagesSharpFilled.tsx b/src/IconBusinessMessagesSharpFilled.tsx new file mode 100644 index 000000000..d8a46ae17 --- /dev/null +++ b/src/IconBusinessMessagesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconBusinessMessagesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconBusinessMessagesSharpFilled as default } diff --git a/src/IconButtonsAltOutlinedFilled.tsx b/src/IconButtonsAltOutlinedFilled.tsx new file mode 100644 index 000000000..d8970b4de --- /dev/null +++ b/src/IconButtonsAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconButtonsAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconButtonsAltOutlinedFilled as default } diff --git a/src/IconButtonsAltRoundedFilled.tsx b/src/IconButtonsAltRoundedFilled.tsx new file mode 100644 index 000000000..77a97f2a7 --- /dev/null +++ b/src/IconButtonsAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconButtonsAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconButtonsAltRoundedFilled as default } diff --git a/src/IconButtonsAltSharpFilled.tsx b/src/IconButtonsAltSharpFilled.tsx new file mode 100644 index 000000000..f16382272 --- /dev/null +++ b/src/IconButtonsAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconButtonsAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconButtonsAltSharpFilled as default } diff --git a/src/IconCabinOutlinedFilled.tsx b/src/IconCabinOutlinedFilled.tsx new file mode 100644 index 000000000..0b0bc3012 --- /dev/null +++ b/src/IconCabinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCabinOutlinedFilled as default } diff --git a/src/IconCabinRoundedFilled.tsx b/src/IconCabinRoundedFilled.tsx new file mode 100644 index 000000000..a6498679a --- /dev/null +++ b/src/IconCabinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCabinRoundedFilled as default } diff --git a/src/IconCabinSharpFilled.tsx b/src/IconCabinSharpFilled.tsx new file mode 100644 index 000000000..11e038634 --- /dev/null +++ b/src/IconCabinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCabinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCabinSharpFilled as default } diff --git a/src/IconCableCarOutlinedFilled.tsx b/src/IconCableCarOutlinedFilled.tsx new file mode 100644 index 000000000..bc34bcc9d --- /dev/null +++ b/src/IconCableCarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableCarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCableCarOutlinedFilled as default } diff --git a/src/IconCableCarRoundedFilled.tsx b/src/IconCableCarRoundedFilled.tsx new file mode 100644 index 000000000..a674ea765 --- /dev/null +++ b/src/IconCableCarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableCarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCableCarRoundedFilled as default } diff --git a/src/IconCableCarSharpFilled.tsx b/src/IconCableCarSharpFilled.tsx new file mode 100644 index 000000000..986df058a --- /dev/null +++ b/src/IconCableCarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableCarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCableCarSharpFilled as default } diff --git a/src/IconCableOutlinedFilled.tsx b/src/IconCableOutlinedFilled.tsx new file mode 100644 index 000000000..6af80f551 --- /dev/null +++ b/src/IconCableOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCableOutlinedFilled as default } diff --git a/src/IconCableRoundedFilled.tsx b/src/IconCableRoundedFilled.tsx new file mode 100644 index 000000000..1a42e5052 --- /dev/null +++ b/src/IconCableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCableRoundedFilled as default } diff --git a/src/IconCableSharpFilled.tsx b/src/IconCableSharpFilled.tsx new file mode 100644 index 000000000..832107a84 --- /dev/null +++ b/src/IconCableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCableSharpFilled as default } diff --git a/src/IconCachedOutlinedFilled.tsx b/src/IconCachedOutlinedFilled.tsx new file mode 100644 index 000000000..fca9f3178 --- /dev/null +++ b/src/IconCachedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCachedOutlinedFilled as default } diff --git a/src/IconCachedRoundedFilled.tsx b/src/IconCachedRoundedFilled.tsx new file mode 100644 index 000000000..fb5180a39 --- /dev/null +++ b/src/IconCachedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCachedRoundedFilled as default } diff --git a/src/IconCachedSharpFilled.tsx b/src/IconCachedSharpFilled.tsx new file mode 100644 index 000000000..e44a5ce62 --- /dev/null +++ b/src/IconCachedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCachedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCachedSharpFilled as default } diff --git a/src/IconCadenceOutlinedFilled.tsx b/src/IconCadenceOutlinedFilled.tsx new file mode 100644 index 000000000..02fe61229 --- /dev/null +++ b/src/IconCadenceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCadenceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCadenceOutlinedFilled as default } diff --git a/src/IconCadenceRoundedFilled.tsx b/src/IconCadenceRoundedFilled.tsx new file mode 100644 index 000000000..5b6e4869a --- /dev/null +++ b/src/IconCadenceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCadenceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCadenceRoundedFilled as default } diff --git a/src/IconCadenceSharpFilled.tsx b/src/IconCadenceSharpFilled.tsx new file mode 100644 index 000000000..5705f1c72 --- /dev/null +++ b/src/IconCadenceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCadenceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCadenceSharpFilled as default } diff --git a/src/IconCakeAddOutlinedFilled.tsx b/src/IconCakeAddOutlinedFilled.tsx new file mode 100644 index 000000000..8a61b9760 --- /dev/null +++ b/src/IconCakeAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCakeAddOutlinedFilled as default } diff --git a/src/IconCakeAddRoundedFilled.tsx b/src/IconCakeAddRoundedFilled.tsx new file mode 100644 index 000000000..3ea775d27 --- /dev/null +++ b/src/IconCakeAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCakeAddRoundedFilled as default } diff --git a/src/IconCakeAddSharpFilled.tsx b/src/IconCakeAddSharpFilled.tsx new file mode 100644 index 000000000..b964a012a --- /dev/null +++ b/src/IconCakeAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCakeAddSharpFilled as default } diff --git a/src/IconCakeOutlinedFilled.tsx b/src/IconCakeOutlinedFilled.tsx new file mode 100644 index 000000000..b231ece2b --- /dev/null +++ b/src/IconCakeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCakeOutlinedFilled as default } diff --git a/src/IconCakeRoundedFilled.tsx b/src/IconCakeRoundedFilled.tsx new file mode 100644 index 000000000..010419671 --- /dev/null +++ b/src/IconCakeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCakeRoundedFilled as default } diff --git a/src/IconCakeSharpFilled.tsx b/src/IconCakeSharpFilled.tsx new file mode 100644 index 000000000..2c357c7f6 --- /dev/null +++ b/src/IconCakeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCakeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCakeSharpFilled as default } diff --git a/src/IconCalculateOutlinedFilled.tsx b/src/IconCalculateOutlinedFilled.tsx new file mode 100644 index 000000000..496bbd45b --- /dev/null +++ b/src/IconCalculateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalculateOutlinedFilled as default } diff --git a/src/IconCalculateRoundedFilled.tsx b/src/IconCalculateRoundedFilled.tsx new file mode 100644 index 000000000..17e31d9e3 --- /dev/null +++ b/src/IconCalculateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalculateRoundedFilled as default } diff --git a/src/IconCalculateSharpFilled.tsx b/src/IconCalculateSharpFilled.tsx new file mode 100644 index 000000000..19a311729 --- /dev/null +++ b/src/IconCalculateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalculateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalculateSharpFilled as default } diff --git a/src/IconCalendarAddOnOutlinedFilled.tsx b/src/IconCalendarAddOnOutlinedFilled.tsx new file mode 100644 index 000000000..869b0515e --- /dev/null +++ b/src/IconCalendarAddOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarAddOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarAddOnOutlinedFilled as default } diff --git a/src/IconCalendarAddOnRoundedFilled.tsx b/src/IconCalendarAddOnRoundedFilled.tsx new file mode 100644 index 000000000..1e90e98ed --- /dev/null +++ b/src/IconCalendarAddOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarAddOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarAddOnRoundedFilled as default } diff --git a/src/IconCalendarAddOnSharpFilled.tsx b/src/IconCalendarAddOnSharpFilled.tsx new file mode 100644 index 000000000..2ed937dd1 --- /dev/null +++ b/src/IconCalendarAddOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarAddOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarAddOnSharpFilled as default } diff --git a/src/IconCalendarAppsScriptOutlinedFilled.tsx b/src/IconCalendarAppsScriptOutlinedFilled.tsx new file mode 100644 index 000000000..a6e4d0f09 --- /dev/null +++ b/src/IconCalendarAppsScriptOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarAppsScriptOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarAppsScriptOutlinedFilled as default } diff --git a/src/IconCalendarAppsScriptRoundedFilled.tsx b/src/IconCalendarAppsScriptRoundedFilled.tsx new file mode 100644 index 000000000..ff4a06fb9 --- /dev/null +++ b/src/IconCalendarAppsScriptRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarAppsScriptRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarAppsScriptRoundedFilled as default } diff --git a/src/IconCalendarAppsScriptSharpFilled.tsx b/src/IconCalendarAppsScriptSharpFilled.tsx new file mode 100644 index 000000000..5e3f5700e --- /dev/null +++ b/src/IconCalendarAppsScriptSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarAppsScriptSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarAppsScriptSharpFilled as default } diff --git a/src/IconCalendarClockOutlinedFilled.tsx b/src/IconCalendarClockOutlinedFilled.tsx new file mode 100644 index 000000000..87303fa3e --- /dev/null +++ b/src/IconCalendarClockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarClockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarClockOutlinedFilled as default } diff --git a/src/IconCalendarClockRoundedFilled.tsx b/src/IconCalendarClockRoundedFilled.tsx new file mode 100644 index 000000000..de7dc9c6b --- /dev/null +++ b/src/IconCalendarClockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarClockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarClockRoundedFilled as default } diff --git a/src/IconCalendarClockSharpFilled.tsx b/src/IconCalendarClockSharpFilled.tsx new file mode 100644 index 000000000..dee404d71 --- /dev/null +++ b/src/IconCalendarClockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarClockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarClockSharpFilled as default } diff --git a/src/IconCalendarMonthOutlinedFilled.tsx b/src/IconCalendarMonthOutlinedFilled.tsx new file mode 100644 index 000000000..a8f3a607f --- /dev/null +++ b/src/IconCalendarMonthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarMonthOutlinedFilled as default } diff --git a/src/IconCalendarMonthRoundedFilled.tsx b/src/IconCalendarMonthRoundedFilled.tsx new file mode 100644 index 000000000..df9272e02 --- /dev/null +++ b/src/IconCalendarMonthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarMonthRoundedFilled as default } diff --git a/src/IconCalendarMonthSharpFilled.tsx b/src/IconCalendarMonthSharpFilled.tsx new file mode 100644 index 000000000..b78c9c903 --- /dev/null +++ b/src/IconCalendarMonthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarMonthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarMonthSharpFilled as default } diff --git a/src/IconCalendarTodayOutlinedFilled.tsx b/src/IconCalendarTodayOutlinedFilled.tsx new file mode 100644 index 000000000..3882e8c2f --- /dev/null +++ b/src/IconCalendarTodayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarTodayOutlinedFilled as default } diff --git a/src/IconCalendarTodayRoundedFilled.tsx b/src/IconCalendarTodayRoundedFilled.tsx new file mode 100644 index 000000000..6185d61cc --- /dev/null +++ b/src/IconCalendarTodayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarTodayRoundedFilled as default } diff --git a/src/IconCalendarTodaySharpFilled.tsx b/src/IconCalendarTodaySharpFilled.tsx new file mode 100644 index 000000000..ab9c004f6 --- /dev/null +++ b/src/IconCalendarTodaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarTodaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarTodaySharpFilled as default } diff --git a/src/IconCalendarViewDayOutlinedFilled.tsx b/src/IconCalendarViewDayOutlinedFilled.tsx new file mode 100644 index 000000000..3579cf270 --- /dev/null +++ b/src/IconCalendarViewDayOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDayOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewDayOutlinedFilled as default } diff --git a/src/IconCalendarViewDayRoundedFilled.tsx b/src/IconCalendarViewDayRoundedFilled.tsx new file mode 100644 index 000000000..42e3bdfa6 --- /dev/null +++ b/src/IconCalendarViewDayRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDayRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewDayRoundedFilled as default } diff --git a/src/IconCalendarViewDaySharpFilled.tsx b/src/IconCalendarViewDaySharpFilled.tsx new file mode 100644 index 000000000..acd2ba32a --- /dev/null +++ b/src/IconCalendarViewDaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewDaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewDaySharpFilled as default } diff --git a/src/IconCalendarViewMonthOutlinedFilled.tsx b/src/IconCalendarViewMonthOutlinedFilled.tsx new file mode 100644 index 000000000..c1876d302 --- /dev/null +++ b/src/IconCalendarViewMonthOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewMonthOutlinedFilled as default } diff --git a/src/IconCalendarViewMonthRoundedFilled.tsx b/src/IconCalendarViewMonthRoundedFilled.tsx new file mode 100644 index 000000000..1cdc113a5 --- /dev/null +++ b/src/IconCalendarViewMonthRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewMonthRoundedFilled as default } diff --git a/src/IconCalendarViewMonthSharpFilled.tsx b/src/IconCalendarViewMonthSharpFilled.tsx new file mode 100644 index 000000000..de44a03c4 --- /dev/null +++ b/src/IconCalendarViewMonthSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewMonthSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewMonthSharpFilled as default } diff --git a/src/IconCalendarViewWeekOutlinedFilled.tsx b/src/IconCalendarViewWeekOutlinedFilled.tsx new file mode 100644 index 000000000..61c9720a0 --- /dev/null +++ b/src/IconCalendarViewWeekOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewWeekOutlinedFilled as default } diff --git a/src/IconCalendarViewWeekRoundedFilled.tsx b/src/IconCalendarViewWeekRoundedFilled.tsx new file mode 100644 index 000000000..7f80b2b74 --- /dev/null +++ b/src/IconCalendarViewWeekRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewWeekRoundedFilled as default } diff --git a/src/IconCalendarViewWeekSharpFilled.tsx b/src/IconCalendarViewWeekSharpFilled.tsx new file mode 100644 index 000000000..23d67ed20 --- /dev/null +++ b/src/IconCalendarViewWeekSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCalendarViewWeekSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCalendarViewWeekSharpFilled as default } diff --git a/src/IconCallEndOutlinedFilled.tsx b/src/IconCallEndOutlinedFilled.tsx new file mode 100644 index 000000000..0d86fc37e --- /dev/null +++ b/src/IconCallEndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallEndOutlinedFilled as default } diff --git a/src/IconCallEndRoundedFilled.tsx b/src/IconCallEndRoundedFilled.tsx new file mode 100644 index 000000000..cc4413a54 --- /dev/null +++ b/src/IconCallEndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallEndRoundedFilled as default } diff --git a/src/IconCallEndSharpFilled.tsx b/src/IconCallEndSharpFilled.tsx new file mode 100644 index 000000000..0eca8a274 --- /dev/null +++ b/src/IconCallEndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallEndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallEndSharpFilled as default } diff --git a/src/IconCallLogOutlinedFilled.tsx b/src/IconCallLogOutlinedFilled.tsx new file mode 100644 index 000000000..01b330a8f --- /dev/null +++ b/src/IconCallLogOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallLogOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallLogOutlinedFilled as default } diff --git a/src/IconCallLogRoundedFilled.tsx b/src/IconCallLogRoundedFilled.tsx new file mode 100644 index 000000000..0afb205b5 --- /dev/null +++ b/src/IconCallLogRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallLogRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallLogRoundedFilled as default } diff --git a/src/IconCallLogSharpFilled.tsx b/src/IconCallLogSharpFilled.tsx new file mode 100644 index 000000000..2ad576488 --- /dev/null +++ b/src/IconCallLogSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallLogSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallLogSharpFilled as default } diff --git a/src/IconCallMadeOutlinedFilled.tsx b/src/IconCallMadeOutlinedFilled.tsx new file mode 100644 index 000000000..abf191aa0 --- /dev/null +++ b/src/IconCallMadeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMadeOutlinedFilled as default } diff --git a/src/IconCallMadeRoundedFilled.tsx b/src/IconCallMadeRoundedFilled.tsx new file mode 100644 index 000000000..3bfd79eba --- /dev/null +++ b/src/IconCallMadeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMadeRoundedFilled as default } diff --git a/src/IconCallMadeSharpFilled.tsx b/src/IconCallMadeSharpFilled.tsx new file mode 100644 index 000000000..b42085cee --- /dev/null +++ b/src/IconCallMadeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMadeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMadeSharpFilled as default } diff --git a/src/IconCallMergeOutlinedFilled.tsx b/src/IconCallMergeOutlinedFilled.tsx new file mode 100644 index 000000000..7be5eff20 --- /dev/null +++ b/src/IconCallMergeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMergeOutlinedFilled as default } diff --git a/src/IconCallMergeRoundedFilled.tsx b/src/IconCallMergeRoundedFilled.tsx new file mode 100644 index 000000000..232e1ae0d --- /dev/null +++ b/src/IconCallMergeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMergeRoundedFilled as default } diff --git a/src/IconCallMergeSharpFilled.tsx b/src/IconCallMergeSharpFilled.tsx new file mode 100644 index 000000000..c4f56e0b3 --- /dev/null +++ b/src/IconCallMergeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMergeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMergeSharpFilled as default } diff --git a/src/IconCallMissedOutgoingOutlinedFilled.tsx b/src/IconCallMissedOutgoingOutlinedFilled.tsx new file mode 100644 index 000000000..c3327700d --- /dev/null +++ b/src/IconCallMissedOutgoingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMissedOutgoingOutlinedFilled as default } diff --git a/src/IconCallMissedOutgoingRoundedFilled.tsx b/src/IconCallMissedOutgoingRoundedFilled.tsx new file mode 100644 index 000000000..0cf1a1f4a --- /dev/null +++ b/src/IconCallMissedOutgoingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMissedOutgoingRoundedFilled as default } diff --git a/src/IconCallMissedOutgoingSharpFilled.tsx b/src/IconCallMissedOutgoingSharpFilled.tsx new file mode 100644 index 000000000..ca88a4cea --- /dev/null +++ b/src/IconCallMissedOutgoingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutgoingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMissedOutgoingSharpFilled as default } diff --git a/src/IconCallMissedOutlinedFilled.tsx b/src/IconCallMissedOutlinedFilled.tsx new file mode 100644 index 000000000..435ee587e --- /dev/null +++ b/src/IconCallMissedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMissedOutlinedFilled as default } diff --git a/src/IconCallMissedRoundedFilled.tsx b/src/IconCallMissedRoundedFilled.tsx new file mode 100644 index 000000000..4e3a38579 --- /dev/null +++ b/src/IconCallMissedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMissedRoundedFilled as default } diff --git a/src/IconCallMissedSharpFilled.tsx b/src/IconCallMissedSharpFilled.tsx new file mode 100644 index 000000000..f4ef84741 --- /dev/null +++ b/src/IconCallMissedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallMissedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallMissedSharpFilled as default } diff --git a/src/IconCallOutlinedFilled.tsx b/src/IconCallOutlinedFilled.tsx new file mode 100644 index 000000000..cf355b5bc --- /dev/null +++ b/src/IconCallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallOutlinedFilled as default } diff --git a/src/IconCallQualityOutlinedFilled.tsx b/src/IconCallQualityOutlinedFilled.tsx new file mode 100644 index 000000000..9577d3ab1 --- /dev/null +++ b/src/IconCallQualityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallQualityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallQualityOutlinedFilled as default } diff --git a/src/IconCallQualityRoundedFilled.tsx b/src/IconCallQualityRoundedFilled.tsx new file mode 100644 index 000000000..30c2fcd0c --- /dev/null +++ b/src/IconCallQualityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallQualityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallQualityRoundedFilled as default } diff --git a/src/IconCallQualitySharpFilled.tsx b/src/IconCallQualitySharpFilled.tsx new file mode 100644 index 000000000..ab177082b --- /dev/null +++ b/src/IconCallQualitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallQualitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallQualitySharpFilled as default } diff --git a/src/IconCallReceivedOutlinedFilled.tsx b/src/IconCallReceivedOutlinedFilled.tsx new file mode 100644 index 000000000..39ae80e6d --- /dev/null +++ b/src/IconCallReceivedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallReceivedOutlinedFilled as default } diff --git a/src/IconCallReceivedRoundedFilled.tsx b/src/IconCallReceivedRoundedFilled.tsx new file mode 100644 index 000000000..fc7ca4f46 --- /dev/null +++ b/src/IconCallReceivedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallReceivedRoundedFilled as default } diff --git a/src/IconCallReceivedSharpFilled.tsx b/src/IconCallReceivedSharpFilled.tsx new file mode 100644 index 000000000..a3f07cf92 --- /dev/null +++ b/src/IconCallReceivedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallReceivedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallReceivedSharpFilled as default } diff --git a/src/IconCallRoundedFilled.tsx b/src/IconCallRoundedFilled.tsx new file mode 100644 index 000000000..58e4a9e28 --- /dev/null +++ b/src/IconCallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallRoundedFilled as default } diff --git a/src/IconCallSharpFilled.tsx b/src/IconCallSharpFilled.tsx new file mode 100644 index 000000000..3285d941a --- /dev/null +++ b/src/IconCallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallSharpFilled as default } diff --git a/src/IconCallSplitOutlinedFilled.tsx b/src/IconCallSplitOutlinedFilled.tsx new file mode 100644 index 000000000..d578dcaa8 --- /dev/null +++ b/src/IconCallSplitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallSplitOutlinedFilled as default } diff --git a/src/IconCallSplitRoundedFilled.tsx b/src/IconCallSplitRoundedFilled.tsx new file mode 100644 index 000000000..eb8fcdc48 --- /dev/null +++ b/src/IconCallSplitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallSplitRoundedFilled as default } diff --git a/src/IconCallSplitSharpFilled.tsx b/src/IconCallSplitSharpFilled.tsx new file mode 100644 index 000000000..8afde3941 --- /dev/null +++ b/src/IconCallSplitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallSplitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallSplitSharpFilled as default } diff --git a/src/IconCallToActionOutlinedFilled.tsx b/src/IconCallToActionOutlinedFilled.tsx new file mode 100644 index 000000000..258d8ab8a --- /dev/null +++ b/src/IconCallToActionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallToActionOutlinedFilled as default } diff --git a/src/IconCallToActionRoundedFilled.tsx b/src/IconCallToActionRoundedFilled.tsx new file mode 100644 index 000000000..3b7ca6a74 --- /dev/null +++ b/src/IconCallToActionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallToActionRoundedFilled as default } diff --git a/src/IconCallToActionSharpFilled.tsx b/src/IconCallToActionSharpFilled.tsx new file mode 100644 index 000000000..4004eaad3 --- /dev/null +++ b/src/IconCallToActionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCallToActionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCallToActionSharpFilled as default } diff --git a/src/IconCameraFrontOutlinedFilled.tsx b/src/IconCameraFrontOutlinedFilled.tsx new file mode 100644 index 000000000..e1e2601ac --- /dev/null +++ b/src/IconCameraFrontOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraFrontOutlinedFilled as default } diff --git a/src/IconCameraFrontRoundedFilled.tsx b/src/IconCameraFrontRoundedFilled.tsx new file mode 100644 index 000000000..f1334fec9 --- /dev/null +++ b/src/IconCameraFrontRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraFrontRoundedFilled as default } diff --git a/src/IconCameraFrontSharpFilled.tsx b/src/IconCameraFrontSharpFilled.tsx new file mode 100644 index 000000000..8d8e46296 --- /dev/null +++ b/src/IconCameraFrontSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraFrontSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraFrontSharpFilled as default } diff --git a/src/IconCameraIndoorOutlinedFilled.tsx b/src/IconCameraIndoorOutlinedFilled.tsx new file mode 100644 index 000000000..16dea0a46 --- /dev/null +++ b/src/IconCameraIndoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraIndoorOutlinedFilled as default } diff --git a/src/IconCameraIndoorRoundedFilled.tsx b/src/IconCameraIndoorRoundedFilled.tsx new file mode 100644 index 000000000..af007011e --- /dev/null +++ b/src/IconCameraIndoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraIndoorRoundedFilled as default } diff --git a/src/IconCameraIndoorSharpFilled.tsx b/src/IconCameraIndoorSharpFilled.tsx new file mode 100644 index 000000000..1d7373cd2 --- /dev/null +++ b/src/IconCameraIndoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraIndoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraIndoorSharpFilled as default } diff --git a/src/IconCameraOutdoorOutlinedFilled.tsx b/src/IconCameraOutdoorOutlinedFilled.tsx new file mode 100644 index 000000000..1c3f61cf8 --- /dev/null +++ b/src/IconCameraOutdoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraOutdoorOutlinedFilled as default } diff --git a/src/IconCameraOutdoorRoundedFilled.tsx b/src/IconCameraOutdoorRoundedFilled.tsx new file mode 100644 index 000000000..ecfc33614 --- /dev/null +++ b/src/IconCameraOutdoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraOutdoorRoundedFilled as default } diff --git a/src/IconCameraOutdoorSharpFilled.tsx b/src/IconCameraOutdoorSharpFilled.tsx new file mode 100644 index 000000000..4946aff0e --- /dev/null +++ b/src/IconCameraOutdoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutdoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraOutdoorSharpFilled as default } diff --git a/src/IconCameraOutlinedFilled.tsx b/src/IconCameraOutlinedFilled.tsx new file mode 100644 index 000000000..6c1b93d8a --- /dev/null +++ b/src/IconCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraOutlinedFilled as default } diff --git a/src/IconCameraRearOutlinedFilled.tsx b/src/IconCameraRearOutlinedFilled.tsx new file mode 100644 index 000000000..7c7cb487f --- /dev/null +++ b/src/IconCameraRearOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRearOutlinedFilled as default } diff --git a/src/IconCameraRearRoundedFilled.tsx b/src/IconCameraRearRoundedFilled.tsx new file mode 100644 index 000000000..a6e906996 --- /dev/null +++ b/src/IconCameraRearRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRearRoundedFilled as default } diff --git a/src/IconCameraRearSharpFilled.tsx b/src/IconCameraRearSharpFilled.tsx new file mode 100644 index 000000000..d483ba4bd --- /dev/null +++ b/src/IconCameraRearSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRearSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRearSharpFilled as default } diff --git a/src/IconCameraRollOutlinedFilled.tsx b/src/IconCameraRollOutlinedFilled.tsx new file mode 100644 index 000000000..dc25fc9b1 --- /dev/null +++ b/src/IconCameraRollOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRollOutlinedFilled as default } diff --git a/src/IconCameraRollRoundedFilled.tsx b/src/IconCameraRollRoundedFilled.tsx new file mode 100644 index 000000000..e926f39ce --- /dev/null +++ b/src/IconCameraRollRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRollRoundedFilled as default } diff --git a/src/IconCameraRollSharpFilled.tsx b/src/IconCameraRollSharpFilled.tsx new file mode 100644 index 000000000..18503065b --- /dev/null +++ b/src/IconCameraRollSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRollSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRollSharpFilled as default } diff --git a/src/IconCameraRoundedFilled.tsx b/src/IconCameraRoundedFilled.tsx new file mode 100644 index 000000000..e60a3c047 --- /dev/null +++ b/src/IconCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraRoundedFilled as default } diff --git a/src/IconCameraSharpFilled.tsx b/src/IconCameraSharpFilled.tsx new file mode 100644 index 000000000..f888c1614 --- /dev/null +++ b/src/IconCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraSharpFilled as default } diff --git a/src/IconCameraVideoOutlinedFilled.tsx b/src/IconCameraVideoOutlinedFilled.tsx new file mode 100644 index 000000000..328ac6467 --- /dev/null +++ b/src/IconCameraVideoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraVideoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraVideoOutlinedFilled as default } diff --git a/src/IconCameraVideoRoundedFilled.tsx b/src/IconCameraVideoRoundedFilled.tsx new file mode 100644 index 000000000..9beaeaaf1 --- /dev/null +++ b/src/IconCameraVideoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraVideoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraVideoRoundedFilled as default } diff --git a/src/IconCameraVideoSharpFilled.tsx b/src/IconCameraVideoSharpFilled.tsx new file mode 100644 index 000000000..3da867551 --- /dev/null +++ b/src/IconCameraVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraVideoSharpFilled as default } diff --git a/src/IconCameraswitchOutlinedFilled.tsx b/src/IconCameraswitchOutlinedFilled.tsx new file mode 100644 index 000000000..cb40d3905 --- /dev/null +++ b/src/IconCameraswitchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraswitchOutlinedFilled as default } diff --git a/src/IconCameraswitchRoundedFilled.tsx b/src/IconCameraswitchRoundedFilled.tsx new file mode 100644 index 000000000..1344c6fce --- /dev/null +++ b/src/IconCameraswitchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraswitchRoundedFilled as default } diff --git a/src/IconCameraswitchSharpFilled.tsx b/src/IconCameraswitchSharpFilled.tsx new file mode 100644 index 000000000..6f1fa8e70 --- /dev/null +++ b/src/IconCameraswitchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCameraswitchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCameraswitchSharpFilled as default } diff --git a/src/IconCampaignOutlinedFilled.tsx b/src/IconCampaignOutlinedFilled.tsx new file mode 100644 index 000000000..d66d1d369 --- /dev/null +++ b/src/IconCampaignOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCampaignOutlinedFilled as default } diff --git a/src/IconCampaignRoundedFilled.tsx b/src/IconCampaignRoundedFilled.tsx new file mode 100644 index 000000000..393acd36f --- /dev/null +++ b/src/IconCampaignRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCampaignRoundedFilled as default } diff --git a/src/IconCampaignSharpFilled.tsx b/src/IconCampaignSharpFilled.tsx new file mode 100644 index 000000000..0555917e6 --- /dev/null +++ b/src/IconCampaignSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampaignSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCampaignSharpFilled as default } diff --git a/src/IconCampingOutlinedFilled.tsx b/src/IconCampingOutlinedFilled.tsx new file mode 100644 index 000000000..8cbe1253b --- /dev/null +++ b/src/IconCampingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCampingOutlinedFilled as default } diff --git a/src/IconCampingRoundedFilled.tsx b/src/IconCampingRoundedFilled.tsx new file mode 100644 index 000000000..57c0836e7 --- /dev/null +++ b/src/IconCampingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCampingRoundedFilled as default } diff --git a/src/IconCampingSharpFilled.tsx b/src/IconCampingSharpFilled.tsx new file mode 100644 index 000000000..461cac609 --- /dev/null +++ b/src/IconCampingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCampingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCampingSharpFilled as default } diff --git a/src/IconCancelOutlinedFilled.tsx b/src/IconCancelOutlinedFilled.tsx new file mode 100644 index 000000000..554ba7010 --- /dev/null +++ b/src/IconCancelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelOutlinedFilled as default } diff --git a/src/IconCancelPresentationOutlinedFilled.tsx b/src/IconCancelPresentationOutlinedFilled.tsx new file mode 100644 index 000000000..23d64eb19 --- /dev/null +++ b/src/IconCancelPresentationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelPresentationOutlinedFilled as default } diff --git a/src/IconCancelPresentationRoundedFilled.tsx b/src/IconCancelPresentationRoundedFilled.tsx new file mode 100644 index 000000000..5f03332de --- /dev/null +++ b/src/IconCancelPresentationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelPresentationRoundedFilled as default } diff --git a/src/IconCancelPresentationSharpFilled.tsx b/src/IconCancelPresentationSharpFilled.tsx new file mode 100644 index 000000000..33c5c62aa --- /dev/null +++ b/src/IconCancelPresentationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelPresentationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelPresentationSharpFilled as default } diff --git a/src/IconCancelRoundedFilled.tsx b/src/IconCancelRoundedFilled.tsx new file mode 100644 index 000000000..993f12929 --- /dev/null +++ b/src/IconCancelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelRoundedFilled as default } diff --git a/src/IconCancelScheduleSendOutlinedFilled.tsx b/src/IconCancelScheduleSendOutlinedFilled.tsx new file mode 100644 index 000000000..ed6a6474f --- /dev/null +++ b/src/IconCancelScheduleSendOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelScheduleSendOutlinedFilled as default } diff --git a/src/IconCancelScheduleSendRoundedFilled.tsx b/src/IconCancelScheduleSendRoundedFilled.tsx new file mode 100644 index 000000000..05d32bcfc --- /dev/null +++ b/src/IconCancelScheduleSendRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelScheduleSendRoundedFilled as default } diff --git a/src/IconCancelScheduleSendSharpFilled.tsx b/src/IconCancelScheduleSendSharpFilled.tsx new file mode 100644 index 000000000..d69320f1e --- /dev/null +++ b/src/IconCancelScheduleSendSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelScheduleSendSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelScheduleSendSharpFilled as default } diff --git a/src/IconCancelSharpFilled.tsx b/src/IconCancelSharpFilled.tsx new file mode 100644 index 000000000..364bdfe48 --- /dev/null +++ b/src/IconCancelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCancelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCancelSharpFilled as default } diff --git a/src/IconCandleOutlinedFilled.tsx b/src/IconCandleOutlinedFilled.tsx new file mode 100644 index 000000000..5b98928ea --- /dev/null +++ b/src/IconCandleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCandleOutlinedFilled as default } diff --git a/src/IconCandleRoundedFilled.tsx b/src/IconCandleRoundedFilled.tsx new file mode 100644 index 000000000..cac68117a --- /dev/null +++ b/src/IconCandleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCandleRoundedFilled as default } diff --git a/src/IconCandleSharpFilled.tsx b/src/IconCandleSharpFilled.tsx new file mode 100644 index 000000000..29cc5bd21 --- /dev/null +++ b/src/IconCandleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCandleSharpFilled as default } diff --git a/src/IconCandlestickChartOutlinedFilled.tsx b/src/IconCandlestickChartOutlinedFilled.tsx new file mode 100644 index 000000000..3a16b5d92 --- /dev/null +++ b/src/IconCandlestickChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCandlestickChartOutlinedFilled as default } diff --git a/src/IconCandlestickChartRoundedFilled.tsx b/src/IconCandlestickChartRoundedFilled.tsx new file mode 100644 index 000000000..f78c3d0b5 --- /dev/null +++ b/src/IconCandlestickChartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCandlestickChartRoundedFilled as default } diff --git a/src/IconCandlestickChartSharpFilled.tsx b/src/IconCandlestickChartSharpFilled.tsx new file mode 100644 index 000000000..5f370e456 --- /dev/null +++ b/src/IconCandlestickChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCandlestickChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCandlestickChartSharpFilled as default } diff --git a/src/IconCaptivePortalOutlinedFilled.tsx b/src/IconCaptivePortalOutlinedFilled.tsx new file mode 100644 index 000000000..89ca7fa78 --- /dev/null +++ b/src/IconCaptivePortalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCaptivePortalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCaptivePortalOutlinedFilled as default } diff --git a/src/IconCaptivePortalRoundedFilled.tsx b/src/IconCaptivePortalRoundedFilled.tsx new file mode 100644 index 000000000..c0637d643 --- /dev/null +++ b/src/IconCaptivePortalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCaptivePortalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCaptivePortalRoundedFilled as default } diff --git a/src/IconCaptivePortalSharpFilled.tsx b/src/IconCaptivePortalSharpFilled.tsx new file mode 100644 index 000000000..3c57522ab --- /dev/null +++ b/src/IconCaptivePortalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCaptivePortalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCaptivePortalSharpFilled as default } diff --git a/src/IconCaptureOutlinedFilled.tsx b/src/IconCaptureOutlinedFilled.tsx new file mode 100644 index 000000000..25ee6b252 --- /dev/null +++ b/src/IconCaptureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCaptureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCaptureOutlinedFilled as default } diff --git a/src/IconCaptureRoundedFilled.tsx b/src/IconCaptureRoundedFilled.tsx new file mode 100644 index 000000000..742f19172 --- /dev/null +++ b/src/IconCaptureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCaptureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCaptureRoundedFilled as default } diff --git a/src/IconCaptureSharpFilled.tsx b/src/IconCaptureSharpFilled.tsx new file mode 100644 index 000000000..2e9c5503b --- /dev/null +++ b/src/IconCaptureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCaptureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCaptureSharpFilled as default } diff --git a/src/IconCarCrashOutlinedFilled.tsx b/src/IconCarCrashOutlinedFilled.tsx new file mode 100644 index 000000000..68440bc8f --- /dev/null +++ b/src/IconCarCrashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarCrashOutlinedFilled as default } diff --git a/src/IconCarCrashRoundedFilled.tsx b/src/IconCarCrashRoundedFilled.tsx new file mode 100644 index 000000000..d131355d3 --- /dev/null +++ b/src/IconCarCrashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarCrashRoundedFilled as default } diff --git a/src/IconCarCrashSharpFilled.tsx b/src/IconCarCrashSharpFilled.tsx new file mode 100644 index 000000000..82d0897e7 --- /dev/null +++ b/src/IconCarCrashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarCrashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarCrashSharpFilled as default } diff --git a/src/IconCarRentalOutlinedFilled.tsx b/src/IconCarRentalOutlinedFilled.tsx new file mode 100644 index 000000000..b639f4fb0 --- /dev/null +++ b/src/IconCarRentalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarRentalOutlinedFilled as default } diff --git a/src/IconCarRentalRoundedFilled.tsx b/src/IconCarRentalRoundedFilled.tsx new file mode 100644 index 000000000..3089c287f --- /dev/null +++ b/src/IconCarRentalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarRentalRoundedFilled as default } diff --git a/src/IconCarRentalSharpFilled.tsx b/src/IconCarRentalSharpFilled.tsx new file mode 100644 index 000000000..af581a751 --- /dev/null +++ b/src/IconCarRentalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRentalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarRentalSharpFilled as default } diff --git a/src/IconCarRepairOutlinedFilled.tsx b/src/IconCarRepairOutlinedFilled.tsx new file mode 100644 index 000000000..dc1bd6f9c --- /dev/null +++ b/src/IconCarRepairOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarRepairOutlinedFilled as default } diff --git a/src/IconCarRepairRoundedFilled.tsx b/src/IconCarRepairRoundedFilled.tsx new file mode 100644 index 000000000..9d06e1362 --- /dev/null +++ b/src/IconCarRepairRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarRepairRoundedFilled as default } diff --git a/src/IconCarRepairSharpFilled.tsx b/src/IconCarRepairSharpFilled.tsx new file mode 100644 index 000000000..53e7c0fba --- /dev/null +++ b/src/IconCarRepairSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarRepairSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarRepairSharpFilled as default } diff --git a/src/IconCarTagOutlinedFilled.tsx b/src/IconCarTagOutlinedFilled.tsx new file mode 100644 index 000000000..447feee5c --- /dev/null +++ b/src/IconCarTagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarTagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarTagOutlinedFilled as default } diff --git a/src/IconCarTagRoundedFilled.tsx b/src/IconCarTagRoundedFilled.tsx new file mode 100644 index 000000000..2bf4bf61f --- /dev/null +++ b/src/IconCarTagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarTagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarTagRoundedFilled as default } diff --git a/src/IconCarTagSharpFilled.tsx b/src/IconCarTagSharpFilled.tsx new file mode 100644 index 000000000..4d2f099b4 --- /dev/null +++ b/src/IconCarTagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarTagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarTagSharpFilled as default } diff --git a/src/IconCardMembershipOutlinedFilled.tsx b/src/IconCardMembershipOutlinedFilled.tsx new file mode 100644 index 000000000..acb870dcb --- /dev/null +++ b/src/IconCardMembershipOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCardMembershipOutlinedFilled as default } diff --git a/src/IconCardMembershipRoundedFilled.tsx b/src/IconCardMembershipRoundedFilled.tsx new file mode 100644 index 000000000..3089a6219 --- /dev/null +++ b/src/IconCardMembershipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardMembershipRoundedFilled as default } diff --git a/src/IconCardMembershipSharpFilled.tsx b/src/IconCardMembershipSharpFilled.tsx new file mode 100644 index 000000000..26ca3ed46 --- /dev/null +++ b/src/IconCardMembershipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardMembershipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardMembershipSharpFilled as default } diff --git a/src/IconCardTravelOutlinedFilled.tsx b/src/IconCardTravelOutlinedFilled.tsx new file mode 100644 index 000000000..a9b5cd2d1 --- /dev/null +++ b/src/IconCardTravelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardTravelOutlinedFilled as default } diff --git a/src/IconCardTravelRoundedFilled.tsx b/src/IconCardTravelRoundedFilled.tsx new file mode 100644 index 000000000..6f027c8a1 --- /dev/null +++ b/src/IconCardTravelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardTravelRoundedFilled as default } diff --git a/src/IconCardTravelSharpFilled.tsx b/src/IconCardTravelSharpFilled.tsx new file mode 100644 index 000000000..8cbb6d913 --- /dev/null +++ b/src/IconCardTravelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardTravelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardTravelSharpFilled as default } diff --git a/src/IconCardioLoadOutlinedFilled.tsx b/src/IconCardioLoadOutlinedFilled.tsx new file mode 100644 index 000000000..cacb053d8 --- /dev/null +++ b/src/IconCardioLoadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardioLoadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardioLoadOutlinedFilled as default } diff --git a/src/IconCardioLoadRoundedFilled.tsx b/src/IconCardioLoadRoundedFilled.tsx new file mode 100644 index 000000000..88457f34c --- /dev/null +++ b/src/IconCardioLoadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardioLoadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardioLoadRoundedFilled as default } diff --git a/src/IconCardioLoadSharpFilled.tsx b/src/IconCardioLoadSharpFilled.tsx new file mode 100644 index 000000000..bd4ef4e28 --- /dev/null +++ b/src/IconCardioLoadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardioLoadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardioLoadSharpFilled as default } diff --git a/src/IconCardiologyOutlinedFilled.tsx b/src/IconCardiologyOutlinedFilled.tsx new file mode 100644 index 000000000..fa0942bb9 --- /dev/null +++ b/src/IconCardiologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardiologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardiologyOutlinedFilled as default } diff --git a/src/IconCardiologyRoundedFilled.tsx b/src/IconCardiologyRoundedFilled.tsx new file mode 100644 index 000000000..7dd599d81 --- /dev/null +++ b/src/IconCardiologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardiologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardiologyRoundedFilled as default } diff --git a/src/IconCardiologySharpFilled.tsx b/src/IconCardiologySharpFilled.tsx new file mode 100644 index 000000000..efb2b4762 --- /dev/null +++ b/src/IconCardiologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardiologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardiologySharpFilled as default } diff --git a/src/IconCardsOutlinedFilled.tsx b/src/IconCardsOutlinedFilled.tsx new file mode 100644 index 000000000..37f9f3c41 --- /dev/null +++ b/src/IconCardsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardsOutlinedFilled as default } diff --git a/src/IconCardsRoundedFilled.tsx b/src/IconCardsRoundedFilled.tsx new file mode 100644 index 000000000..9e47d5ad7 --- /dev/null +++ b/src/IconCardsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardsRoundedFilled as default } diff --git a/src/IconCardsSharpFilled.tsx b/src/IconCardsSharpFilled.tsx new file mode 100644 index 000000000..29db56863 --- /dev/null +++ b/src/IconCardsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCardsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCardsSharpFilled as default } diff --git a/src/IconCarpenterOutlinedFilled.tsx b/src/IconCarpenterOutlinedFilled.tsx new file mode 100644 index 000000000..87d6b3714 --- /dev/null +++ b/src/IconCarpenterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarpenterOutlinedFilled as default } diff --git a/src/IconCarpenterRoundedFilled.tsx b/src/IconCarpenterRoundedFilled.tsx new file mode 100644 index 000000000..e063f6c7a --- /dev/null +++ b/src/IconCarpenterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarpenterRoundedFilled as default } diff --git a/src/IconCarpenterSharpFilled.tsx b/src/IconCarpenterSharpFilled.tsx new file mode 100644 index 000000000..c450979e1 --- /dev/null +++ b/src/IconCarpenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarpenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarpenterSharpFilled as default } diff --git a/src/IconCarryOnBagCheckedOutlinedFilled.tsx b/src/IconCarryOnBagCheckedOutlinedFilled.tsx new file mode 100644 index 000000000..4a65b269d --- /dev/null +++ b/src/IconCarryOnBagCheckedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagCheckedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagCheckedOutlinedFilled as default } diff --git a/src/IconCarryOnBagCheckedRoundedFilled.tsx b/src/IconCarryOnBagCheckedRoundedFilled.tsx new file mode 100644 index 000000000..6b2dd6a13 --- /dev/null +++ b/src/IconCarryOnBagCheckedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagCheckedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagCheckedRoundedFilled as default } diff --git a/src/IconCarryOnBagCheckedSharpFilled.tsx b/src/IconCarryOnBagCheckedSharpFilled.tsx new file mode 100644 index 000000000..2fd9fd546 --- /dev/null +++ b/src/IconCarryOnBagCheckedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagCheckedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagCheckedSharpFilled as default } diff --git a/src/IconCarryOnBagInactiveOutlinedFilled.tsx b/src/IconCarryOnBagInactiveOutlinedFilled.tsx new file mode 100644 index 000000000..b2545056b --- /dev/null +++ b/src/IconCarryOnBagInactiveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagInactiveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagInactiveOutlinedFilled as default } diff --git a/src/IconCarryOnBagInactiveRoundedFilled.tsx b/src/IconCarryOnBagInactiveRoundedFilled.tsx new file mode 100644 index 000000000..cb120eacc --- /dev/null +++ b/src/IconCarryOnBagInactiveRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagInactiveRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagInactiveRoundedFilled as default } diff --git a/src/IconCarryOnBagInactiveSharpFilled.tsx b/src/IconCarryOnBagInactiveSharpFilled.tsx new file mode 100644 index 000000000..c4d9460ec --- /dev/null +++ b/src/IconCarryOnBagInactiveSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagInactiveSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagInactiveSharpFilled as default } diff --git a/src/IconCarryOnBagOutlinedFilled.tsx b/src/IconCarryOnBagOutlinedFilled.tsx new file mode 100644 index 000000000..9f747bab1 --- /dev/null +++ b/src/IconCarryOnBagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagOutlinedFilled as default } diff --git a/src/IconCarryOnBagQuestionOutlinedFilled.tsx b/src/IconCarryOnBagQuestionOutlinedFilled.tsx new file mode 100644 index 000000000..428fe4714 --- /dev/null +++ b/src/IconCarryOnBagQuestionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagQuestionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagQuestionOutlinedFilled as default } diff --git a/src/IconCarryOnBagQuestionRoundedFilled.tsx b/src/IconCarryOnBagQuestionRoundedFilled.tsx new file mode 100644 index 000000000..de2df6bd1 --- /dev/null +++ b/src/IconCarryOnBagQuestionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagQuestionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagQuestionRoundedFilled as default } diff --git a/src/IconCarryOnBagQuestionSharpFilled.tsx b/src/IconCarryOnBagQuestionSharpFilled.tsx new file mode 100644 index 000000000..533b3201e --- /dev/null +++ b/src/IconCarryOnBagQuestionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagQuestionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagQuestionSharpFilled as default } diff --git a/src/IconCarryOnBagRoundedFilled.tsx b/src/IconCarryOnBagRoundedFilled.tsx new file mode 100644 index 000000000..f70865b35 --- /dev/null +++ b/src/IconCarryOnBagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagRoundedFilled as default } diff --git a/src/IconCarryOnBagSharpFilled.tsx b/src/IconCarryOnBagSharpFilled.tsx new file mode 100644 index 000000000..ea6c43e23 --- /dev/null +++ b/src/IconCarryOnBagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCarryOnBagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCarryOnBagSharpFilled as default } diff --git a/src/IconCasesOutlinedFilled.tsx b/src/IconCasesOutlinedFilled.tsx new file mode 100644 index 000000000..b3e6bab6b --- /dev/null +++ b/src/IconCasesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCasesOutlinedFilled as default } diff --git a/src/IconCasesRoundedFilled.tsx b/src/IconCasesRoundedFilled.tsx new file mode 100644 index 000000000..d408f511d --- /dev/null +++ b/src/IconCasesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCasesRoundedFilled as default } diff --git a/src/IconCasesSharpFilled.tsx b/src/IconCasesSharpFilled.tsx new file mode 100644 index 000000000..26c3cf104 --- /dev/null +++ b/src/IconCasesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCasesSharpFilled as default } diff --git a/src/IconCasinoOutlinedFilled.tsx b/src/IconCasinoOutlinedFilled.tsx new file mode 100644 index 000000000..42f40894b --- /dev/null +++ b/src/IconCasinoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCasinoOutlinedFilled as default } diff --git a/src/IconCasinoRoundedFilled.tsx b/src/IconCasinoRoundedFilled.tsx new file mode 100644 index 000000000..2164a42d1 --- /dev/null +++ b/src/IconCasinoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCasinoRoundedFilled as default } diff --git a/src/IconCasinoSharpFilled.tsx b/src/IconCasinoSharpFilled.tsx new file mode 100644 index 000000000..bf3b94d11 --- /dev/null +++ b/src/IconCasinoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCasinoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCasinoSharpFilled as default } diff --git a/src/IconCastConnectedOutlinedFilled.tsx b/src/IconCastConnectedOutlinedFilled.tsx new file mode 100644 index 000000000..c3cda1acb --- /dev/null +++ b/src/IconCastConnectedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastConnectedOutlinedFilled as default } diff --git a/src/IconCastConnectedRoundedFilled.tsx b/src/IconCastConnectedRoundedFilled.tsx new file mode 100644 index 000000000..3a59a3d7e --- /dev/null +++ b/src/IconCastConnectedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastConnectedRoundedFilled as default } diff --git a/src/IconCastConnectedSharpFilled.tsx b/src/IconCastConnectedSharpFilled.tsx new file mode 100644 index 000000000..383d31f7f --- /dev/null +++ b/src/IconCastConnectedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastConnectedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastConnectedSharpFilled as default } diff --git a/src/IconCastForEducationOutlinedFilled.tsx b/src/IconCastForEducationOutlinedFilled.tsx new file mode 100644 index 000000000..8da58e3bb --- /dev/null +++ b/src/IconCastForEducationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCastForEducationOutlinedFilled as default } diff --git a/src/IconCastForEducationRoundedFilled.tsx b/src/IconCastForEducationRoundedFilled.tsx new file mode 100644 index 000000000..35114c45d --- /dev/null +++ b/src/IconCastForEducationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCastForEducationRoundedFilled as default } diff --git a/src/IconCastForEducationSharpFilled.tsx b/src/IconCastForEducationSharpFilled.tsx new file mode 100644 index 000000000..58125b5ad --- /dev/null +++ b/src/IconCastForEducationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastForEducationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastForEducationSharpFilled as default } diff --git a/src/IconCastOutlinedFilled.tsx b/src/IconCastOutlinedFilled.tsx new file mode 100644 index 000000000..202a20a75 --- /dev/null +++ b/src/IconCastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastOutlinedFilled as default } diff --git a/src/IconCastPauseOutlinedFilled.tsx b/src/IconCastPauseOutlinedFilled.tsx new file mode 100644 index 000000000..2f660ff55 --- /dev/null +++ b/src/IconCastPauseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastPauseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastPauseOutlinedFilled as default } diff --git a/src/IconCastPauseRoundedFilled.tsx b/src/IconCastPauseRoundedFilled.tsx new file mode 100644 index 000000000..485759513 --- /dev/null +++ b/src/IconCastPauseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastPauseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastPauseRoundedFilled as default } diff --git a/src/IconCastPauseSharpFilled.tsx b/src/IconCastPauseSharpFilled.tsx new file mode 100644 index 000000000..8f55d4e49 --- /dev/null +++ b/src/IconCastPauseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastPauseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastPauseSharpFilled as default } diff --git a/src/IconCastRoundedFilled.tsx b/src/IconCastRoundedFilled.tsx new file mode 100644 index 000000000..c245cc6f5 --- /dev/null +++ b/src/IconCastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastRoundedFilled as default } diff --git a/src/IconCastSharpFilled.tsx b/src/IconCastSharpFilled.tsx new file mode 100644 index 000000000..08473020e --- /dev/null +++ b/src/IconCastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastSharpFilled as default } diff --git a/src/IconCastWarningOutlinedFilled.tsx b/src/IconCastWarningOutlinedFilled.tsx new file mode 100644 index 000000000..773a84aa5 --- /dev/null +++ b/src/IconCastWarningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastWarningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastWarningOutlinedFilled as default } diff --git a/src/IconCastWarningRoundedFilled.tsx b/src/IconCastWarningRoundedFilled.tsx new file mode 100644 index 000000000..646e9279a --- /dev/null +++ b/src/IconCastWarningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastWarningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastWarningRoundedFilled as default } diff --git a/src/IconCastWarningSharpFilled.tsx b/src/IconCastWarningSharpFilled.tsx new file mode 100644 index 000000000..23416a091 --- /dev/null +++ b/src/IconCastWarningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastWarningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastWarningSharpFilled as default } diff --git a/src/IconCastleOutlinedFilled.tsx b/src/IconCastleOutlinedFilled.tsx new file mode 100644 index 000000000..32443c054 --- /dev/null +++ b/src/IconCastleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastleOutlinedFilled as default } diff --git a/src/IconCastleRoundedFilled.tsx b/src/IconCastleRoundedFilled.tsx new file mode 100644 index 000000000..7f7754263 --- /dev/null +++ b/src/IconCastleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastleRoundedFilled as default } diff --git a/src/IconCastleSharpFilled.tsx b/src/IconCastleSharpFilled.tsx new file mode 100644 index 000000000..012148918 --- /dev/null +++ b/src/IconCastleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCastleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCastleSharpFilled as default } diff --git a/src/IconCategoryOutlinedFilled.tsx b/src/IconCategoryOutlinedFilled.tsx new file mode 100644 index 000000000..a484c46ae --- /dev/null +++ b/src/IconCategoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCategoryOutlinedFilled as default } diff --git a/src/IconCategoryRoundedFilled.tsx b/src/IconCategoryRoundedFilled.tsx new file mode 100644 index 000000000..6e0ff10ff --- /dev/null +++ b/src/IconCategoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCategoryRoundedFilled as default } diff --git a/src/IconCategorySearchOutlinedFilled.tsx b/src/IconCategorySearchOutlinedFilled.tsx new file mode 100644 index 000000000..cce15b1b8 --- /dev/null +++ b/src/IconCategorySearchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategorySearchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCategorySearchOutlinedFilled as default } diff --git a/src/IconCategorySearchRoundedFilled.tsx b/src/IconCategorySearchRoundedFilled.tsx new file mode 100644 index 000000000..8159ad432 --- /dev/null +++ b/src/IconCategorySearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategorySearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCategorySearchRoundedFilled as default } diff --git a/src/IconCategorySearchSharpFilled.tsx b/src/IconCategorySearchSharpFilled.tsx new file mode 100644 index 000000000..a00ca5f3e --- /dev/null +++ b/src/IconCategorySearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategorySearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCategorySearchSharpFilled as default } diff --git a/src/IconCategorySharpFilled.tsx b/src/IconCategorySharpFilled.tsx new file mode 100644 index 000000000..5bc68423b --- /dev/null +++ b/src/IconCategorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCategorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCategorySharpFilled as default } diff --git a/src/IconCelebrationOutlinedFilled.tsx b/src/IconCelebrationOutlinedFilled.tsx new file mode 100644 index 000000000..ac74d448d --- /dev/null +++ b/src/IconCelebrationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCelebrationOutlinedFilled as default } diff --git a/src/IconCelebrationRoundedFilled.tsx b/src/IconCelebrationRoundedFilled.tsx new file mode 100644 index 000000000..20875b082 --- /dev/null +++ b/src/IconCelebrationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCelebrationRoundedFilled as default } diff --git a/src/IconCelebrationSharpFilled.tsx b/src/IconCelebrationSharpFilled.tsx new file mode 100644 index 000000000..d5a4af158 --- /dev/null +++ b/src/IconCelebrationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCelebrationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCelebrationSharpFilled as default } diff --git a/src/IconCellMergeOutlinedFilled.tsx b/src/IconCellMergeOutlinedFilled.tsx new file mode 100644 index 000000000..20a3f8be3 --- /dev/null +++ b/src/IconCellMergeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellMergeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellMergeOutlinedFilled as default } diff --git a/src/IconCellMergeRoundedFilled.tsx b/src/IconCellMergeRoundedFilled.tsx new file mode 100644 index 000000000..04e80a4b3 --- /dev/null +++ b/src/IconCellMergeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellMergeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellMergeRoundedFilled as default } diff --git a/src/IconCellMergeSharpFilled.tsx b/src/IconCellMergeSharpFilled.tsx new file mode 100644 index 000000000..7d6b53d2e --- /dev/null +++ b/src/IconCellMergeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellMergeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellMergeSharpFilled as default } diff --git a/src/IconCellTowerOutlinedFilled.tsx b/src/IconCellTowerOutlinedFilled.tsx new file mode 100644 index 000000000..67d784fa8 --- /dev/null +++ b/src/IconCellTowerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellTowerOutlinedFilled as default } diff --git a/src/IconCellTowerRoundedFilled.tsx b/src/IconCellTowerRoundedFilled.tsx new file mode 100644 index 000000000..f0fb3d544 --- /dev/null +++ b/src/IconCellTowerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellTowerRoundedFilled as default } diff --git a/src/IconCellTowerSharpFilled.tsx b/src/IconCellTowerSharpFilled.tsx new file mode 100644 index 000000000..99eab8326 --- /dev/null +++ b/src/IconCellTowerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellTowerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellTowerSharpFilled as default } diff --git a/src/IconCellWifiOutlinedFilled.tsx b/src/IconCellWifiOutlinedFilled.tsx new file mode 100644 index 000000000..3210c5d70 --- /dev/null +++ b/src/IconCellWifiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellWifiOutlinedFilled as default } diff --git a/src/IconCellWifiRoundedFilled.tsx b/src/IconCellWifiRoundedFilled.tsx new file mode 100644 index 000000000..b4f4b8935 --- /dev/null +++ b/src/IconCellWifiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellWifiRoundedFilled as default } diff --git a/src/IconCellWifiSharpFilled.tsx b/src/IconCellWifiSharpFilled.tsx new file mode 100644 index 000000000..fdf7f7bd4 --- /dev/null +++ b/src/IconCellWifiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCellWifiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCellWifiSharpFilled as default } diff --git a/src/IconCenterFocusStrongOutlinedFilled.tsx b/src/IconCenterFocusStrongOutlinedFilled.tsx new file mode 100644 index 000000000..910276f54 --- /dev/null +++ b/src/IconCenterFocusStrongOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCenterFocusStrongOutlinedFilled as default } diff --git a/src/IconCenterFocusStrongRoundedFilled.tsx b/src/IconCenterFocusStrongRoundedFilled.tsx new file mode 100644 index 000000000..f84e5282f --- /dev/null +++ b/src/IconCenterFocusStrongRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCenterFocusStrongRoundedFilled as default } diff --git a/src/IconCenterFocusStrongSharpFilled.tsx b/src/IconCenterFocusStrongSharpFilled.tsx new file mode 100644 index 000000000..fbaeb0b96 --- /dev/null +++ b/src/IconCenterFocusStrongSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusStrongSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCenterFocusStrongSharpFilled as default } diff --git a/src/IconCenterFocusWeakOutlinedFilled.tsx b/src/IconCenterFocusWeakOutlinedFilled.tsx new file mode 100644 index 000000000..977b728fb --- /dev/null +++ b/src/IconCenterFocusWeakOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCenterFocusWeakOutlinedFilled as default } diff --git a/src/IconCenterFocusWeakRoundedFilled.tsx b/src/IconCenterFocusWeakRoundedFilled.tsx new file mode 100644 index 000000000..4f7b8599d --- /dev/null +++ b/src/IconCenterFocusWeakRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCenterFocusWeakRoundedFilled as default } diff --git a/src/IconCenterFocusWeakSharpFilled.tsx b/src/IconCenterFocusWeakSharpFilled.tsx new file mode 100644 index 000000000..8b6be72ae --- /dev/null +++ b/src/IconCenterFocusWeakSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCenterFocusWeakSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCenterFocusWeakSharpFilled as default } diff --git a/src/IconChairAltOutlinedFilled.tsx b/src/IconChairAltOutlinedFilled.tsx new file mode 100644 index 000000000..f1e86ec1a --- /dev/null +++ b/src/IconChairAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChairAltOutlinedFilled as default } diff --git a/src/IconChairAltRoundedFilled.tsx b/src/IconChairAltRoundedFilled.tsx new file mode 100644 index 000000000..fcc5db2be --- /dev/null +++ b/src/IconChairAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChairAltRoundedFilled as default } diff --git a/src/IconChairAltSharpFilled.tsx b/src/IconChairAltSharpFilled.tsx new file mode 100644 index 000000000..e5a9b1864 --- /dev/null +++ b/src/IconChairAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChairAltSharpFilled as default } diff --git a/src/IconChairOutlinedFilled.tsx b/src/IconChairOutlinedFilled.tsx new file mode 100644 index 000000000..188a87707 --- /dev/null +++ b/src/IconChairOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChairOutlinedFilled as default } diff --git a/src/IconChairRoundedFilled.tsx b/src/IconChairRoundedFilled.tsx new file mode 100644 index 000000000..105a2d197 --- /dev/null +++ b/src/IconChairRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChairRoundedFilled as default } diff --git a/src/IconChairSharpFilled.tsx b/src/IconChairSharpFilled.tsx new file mode 100644 index 000000000..34bcaa75e --- /dev/null +++ b/src/IconChairSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChairSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChairSharpFilled as default } diff --git a/src/IconChaletOutlinedFilled.tsx b/src/IconChaletOutlinedFilled.tsx new file mode 100644 index 000000000..4723dba16 --- /dev/null +++ b/src/IconChaletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChaletOutlinedFilled as default } diff --git a/src/IconChaletRoundedFilled.tsx b/src/IconChaletRoundedFilled.tsx new file mode 100644 index 000000000..ff839c186 --- /dev/null +++ b/src/IconChaletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChaletRoundedFilled as default } diff --git a/src/IconChaletSharpFilled.tsx b/src/IconChaletSharpFilled.tsx new file mode 100644 index 000000000..ca41abe07 --- /dev/null +++ b/src/IconChaletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChaletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChaletSharpFilled as default } diff --git a/src/IconChangeCircleOutlinedFilled.tsx b/src/IconChangeCircleOutlinedFilled.tsx new file mode 100644 index 000000000..af89042a3 --- /dev/null +++ b/src/IconChangeCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChangeCircleOutlinedFilled as default } diff --git a/src/IconChangeCircleRoundedFilled.tsx b/src/IconChangeCircleRoundedFilled.tsx new file mode 100644 index 000000000..71034d1a2 --- /dev/null +++ b/src/IconChangeCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChangeCircleRoundedFilled as default } diff --git a/src/IconChangeCircleSharpFilled.tsx b/src/IconChangeCircleSharpFilled.tsx new file mode 100644 index 000000000..644a73d3d --- /dev/null +++ b/src/IconChangeCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChangeCircleSharpFilled as default } diff --git a/src/IconChangeHistoryOutlinedFilled.tsx b/src/IconChangeHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..072176f19 --- /dev/null +++ b/src/IconChangeHistoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChangeHistoryOutlinedFilled as default } diff --git a/src/IconChangeHistoryRoundedFilled.tsx b/src/IconChangeHistoryRoundedFilled.tsx new file mode 100644 index 000000000..805da6b0a --- /dev/null +++ b/src/IconChangeHistoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChangeHistoryRoundedFilled as default } diff --git a/src/IconChangeHistorySharpFilled.tsx b/src/IconChangeHistorySharpFilled.tsx new file mode 100644 index 000000000..fddb459c5 --- /dev/null +++ b/src/IconChangeHistorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChangeHistorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChangeHistorySharpFilled as default } diff --git a/src/IconChargerOutlinedFilled.tsx b/src/IconChargerOutlinedFilled.tsx new file mode 100644 index 000000000..73094f892 --- /dev/null +++ b/src/IconChargerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChargerOutlinedFilled as default } diff --git a/src/IconChargerRoundedFilled.tsx b/src/IconChargerRoundedFilled.tsx new file mode 100644 index 000000000..18e3b7e56 --- /dev/null +++ b/src/IconChargerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChargerRoundedFilled as default } diff --git a/src/IconChargerSharpFilled.tsx b/src/IconChargerSharpFilled.tsx new file mode 100644 index 000000000..b07c45dcf --- /dev/null +++ b/src/IconChargerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChargerSharpFilled as default } diff --git a/src/IconChargingStationOutlinedFilled.tsx b/src/IconChargingStationOutlinedFilled.tsx new file mode 100644 index 000000000..0ee33151e --- /dev/null +++ b/src/IconChargingStationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChargingStationOutlinedFilled as default } diff --git a/src/IconChargingStationRoundedFilled.tsx b/src/IconChargingStationRoundedFilled.tsx new file mode 100644 index 000000000..99d2cadc1 --- /dev/null +++ b/src/IconChargingStationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChargingStationRoundedFilled as default } diff --git a/src/IconChargingStationSharpFilled.tsx b/src/IconChargingStationSharpFilled.tsx new file mode 100644 index 000000000..dbadba67c --- /dev/null +++ b/src/IconChargingStationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChargingStationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChargingStationSharpFilled as default } diff --git a/src/IconChartDataOutlinedFilled.tsx b/src/IconChartDataOutlinedFilled.tsx new file mode 100644 index 000000000..ddc277af1 --- /dev/null +++ b/src/IconChartDataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChartDataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChartDataOutlinedFilled as default } diff --git a/src/IconChartDataRoundedFilled.tsx b/src/IconChartDataRoundedFilled.tsx new file mode 100644 index 000000000..7f5c21f2b --- /dev/null +++ b/src/IconChartDataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChartDataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChartDataRoundedFilled as default } diff --git a/src/IconChartDataSharpFilled.tsx b/src/IconChartDataSharpFilled.tsx new file mode 100644 index 000000000..87b7ad40c --- /dev/null +++ b/src/IconChartDataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChartDataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChartDataSharpFilled as default } diff --git a/src/IconChatAddOnOutlinedFilled.tsx b/src/IconChatAddOnOutlinedFilled.tsx new file mode 100644 index 000000000..6910e4b6c --- /dev/null +++ b/src/IconChatAddOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatAddOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatAddOnOutlinedFilled as default } diff --git a/src/IconChatAddOnRoundedFilled.tsx b/src/IconChatAddOnRoundedFilled.tsx new file mode 100644 index 000000000..7b706b74f --- /dev/null +++ b/src/IconChatAddOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatAddOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatAddOnRoundedFilled as default } diff --git a/src/IconChatAddOnSharpFilled.tsx b/src/IconChatAddOnSharpFilled.tsx new file mode 100644 index 000000000..7a5f26a4f --- /dev/null +++ b/src/IconChatAddOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatAddOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatAddOnSharpFilled as default } diff --git a/src/IconChatAppsScriptOutlinedFilled.tsx b/src/IconChatAppsScriptOutlinedFilled.tsx new file mode 100644 index 000000000..da65cfa63 --- /dev/null +++ b/src/IconChatAppsScriptOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatAppsScriptOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChatAppsScriptOutlinedFilled as default } diff --git a/src/IconChatAppsScriptRoundedFilled.tsx b/src/IconChatAppsScriptRoundedFilled.tsx new file mode 100644 index 000000000..4d39f634e --- /dev/null +++ b/src/IconChatAppsScriptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatAppsScriptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatAppsScriptRoundedFilled as default } diff --git a/src/IconChatAppsScriptSharpFilled.tsx b/src/IconChatAppsScriptSharpFilled.tsx new file mode 100644 index 000000000..defe0e00e --- /dev/null +++ b/src/IconChatAppsScriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatAppsScriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatAppsScriptSharpFilled as default } diff --git a/src/IconChatBubbleOutlinedFilled.tsx b/src/IconChatBubbleOutlinedFilled.tsx new file mode 100644 index 000000000..88882cd68 --- /dev/null +++ b/src/IconChatBubbleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatBubbleOutlinedFilled as default } diff --git a/src/IconChatBubbleRoundedFilled.tsx b/src/IconChatBubbleRoundedFilled.tsx new file mode 100644 index 000000000..e47dffbc4 --- /dev/null +++ b/src/IconChatBubbleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatBubbleRoundedFilled as default } diff --git a/src/IconChatBubbleSharpFilled.tsx b/src/IconChatBubbleSharpFilled.tsx new file mode 100644 index 000000000..5c9cc0ce2 --- /dev/null +++ b/src/IconChatBubbleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatBubbleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatBubbleSharpFilled as default } diff --git a/src/IconChatErrorOutlinedFilled.tsx b/src/IconChatErrorOutlinedFilled.tsx new file mode 100644 index 000000000..a971e4573 --- /dev/null +++ b/src/IconChatErrorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatErrorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatErrorOutlinedFilled as default } diff --git a/src/IconChatErrorRoundedFilled.tsx b/src/IconChatErrorRoundedFilled.tsx new file mode 100644 index 000000000..b6226bb40 --- /dev/null +++ b/src/IconChatErrorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatErrorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatErrorRoundedFilled as default } diff --git a/src/IconChatErrorSharpFilled.tsx b/src/IconChatErrorSharpFilled.tsx new file mode 100644 index 000000000..27c5830dc --- /dev/null +++ b/src/IconChatErrorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatErrorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatErrorSharpFilled as default } diff --git a/src/IconChatInfoOutlinedFilled.tsx b/src/IconChatInfoOutlinedFilled.tsx new file mode 100644 index 000000000..82a342599 --- /dev/null +++ b/src/IconChatInfoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatInfoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatInfoOutlinedFilled as default } diff --git a/src/IconChatInfoRoundedFilled.tsx b/src/IconChatInfoRoundedFilled.tsx new file mode 100644 index 000000000..2aa3773ee --- /dev/null +++ b/src/IconChatInfoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatInfoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatInfoRoundedFilled as default } diff --git a/src/IconChatInfoSharpFilled.tsx b/src/IconChatInfoSharpFilled.tsx new file mode 100644 index 000000000..29f02cf53 --- /dev/null +++ b/src/IconChatInfoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatInfoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatInfoSharpFilled as default } diff --git a/src/IconChatOutlinedFilled.tsx b/src/IconChatOutlinedFilled.tsx new file mode 100644 index 000000000..57c5bc4a7 --- /dev/null +++ b/src/IconChatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatOutlinedFilled as default } diff --git a/src/IconChatPasteGoOutlinedFilled.tsx b/src/IconChatPasteGoOutlinedFilled.tsx new file mode 100644 index 000000000..6ed4c1ca6 --- /dev/null +++ b/src/IconChatPasteGoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatPasteGoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatPasteGoOutlinedFilled as default } diff --git a/src/IconChatPasteGoRoundedFilled.tsx b/src/IconChatPasteGoRoundedFilled.tsx new file mode 100644 index 000000000..81bf26643 --- /dev/null +++ b/src/IconChatPasteGoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatPasteGoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatPasteGoRoundedFilled as default } diff --git a/src/IconChatPasteGoSharpFilled.tsx b/src/IconChatPasteGoSharpFilled.tsx new file mode 100644 index 000000000..280dcafb5 --- /dev/null +++ b/src/IconChatPasteGoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatPasteGoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatPasteGoSharpFilled as default } diff --git a/src/IconChatRoundedFilled.tsx b/src/IconChatRoundedFilled.tsx new file mode 100644 index 000000000..68c889799 --- /dev/null +++ b/src/IconChatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatRoundedFilled as default } diff --git a/src/IconChatSharpFilled.tsx b/src/IconChatSharpFilled.tsx new file mode 100644 index 000000000..1d586eba2 --- /dev/null +++ b/src/IconChatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChatSharpFilled as default } diff --git a/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx b/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx new file mode 100644 index 000000000..75cd24074 --- /dev/null +++ b/src/IconCheckBoxOutlineBlankOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckBoxOutlineBlankOutlinedFilled as default } diff --git a/src/IconCheckBoxOutlineBlankRoundedFilled.tsx b/src/IconCheckBoxOutlineBlankRoundedFilled.tsx new file mode 100644 index 000000000..a6be3c282 --- /dev/null +++ b/src/IconCheckBoxOutlineBlankRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckBoxOutlineBlankRoundedFilled as default } diff --git a/src/IconCheckBoxOutlineBlankSharpFilled.tsx b/src/IconCheckBoxOutlineBlankSharpFilled.tsx new file mode 100644 index 000000000..67adb856f --- /dev/null +++ b/src/IconCheckBoxOutlineBlankSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlineBlankSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckBoxOutlineBlankSharpFilled as default } diff --git a/src/IconCheckBoxOutlinedFilled.tsx b/src/IconCheckBoxOutlinedFilled.tsx new file mode 100644 index 000000000..80de889c6 --- /dev/null +++ b/src/IconCheckBoxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckBoxOutlinedFilled as default } diff --git a/src/IconCheckBoxRoundedFilled.tsx b/src/IconCheckBoxRoundedFilled.tsx new file mode 100644 index 000000000..016b000f3 --- /dev/null +++ b/src/IconCheckBoxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckBoxRoundedFilled as default } diff --git a/src/IconCheckBoxSharpFilled.tsx b/src/IconCheckBoxSharpFilled.tsx new file mode 100644 index 000000000..4508c1fef --- /dev/null +++ b/src/IconCheckBoxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckBoxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckBoxSharpFilled as default } diff --git a/src/IconCheckCircleOutlinedFilled.tsx b/src/IconCheckCircleOutlinedFilled.tsx new file mode 100644 index 000000000..8a3e9f626 --- /dev/null +++ b/src/IconCheckCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckCircleOutlinedFilled as default } diff --git a/src/IconCheckCircleRoundedFilled.tsx b/src/IconCheckCircleRoundedFilled.tsx new file mode 100644 index 000000000..efc34733b --- /dev/null +++ b/src/IconCheckCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckCircleRoundedFilled as default } diff --git a/src/IconCheckCircleSharpFilled.tsx b/src/IconCheckCircleSharpFilled.tsx new file mode 100644 index 000000000..cf39d6f4e --- /dev/null +++ b/src/IconCheckCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckCircleSharpFilled as default } diff --git a/src/IconCheckInOutOutlinedFilled.tsx b/src/IconCheckInOutOutlinedFilled.tsx new file mode 100644 index 000000000..5ed6d4713 --- /dev/null +++ b/src/IconCheckInOutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckInOutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckInOutOutlinedFilled as default } diff --git a/src/IconCheckInOutRoundedFilled.tsx b/src/IconCheckInOutRoundedFilled.tsx new file mode 100644 index 000000000..06546b5d9 --- /dev/null +++ b/src/IconCheckInOutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckInOutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckInOutRoundedFilled as default } diff --git a/src/IconCheckInOutSharpFilled.tsx b/src/IconCheckInOutSharpFilled.tsx new file mode 100644 index 000000000..0e78891f1 --- /dev/null +++ b/src/IconCheckInOutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckInOutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckInOutSharpFilled as default } diff --git a/src/IconCheckIndeterminateSmallOutlinedFilled.tsx b/src/IconCheckIndeterminateSmallOutlinedFilled.tsx new file mode 100644 index 000000000..07f9efaf7 --- /dev/null +++ b/src/IconCheckIndeterminateSmallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckIndeterminateSmallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckIndeterminateSmallOutlinedFilled as default } diff --git a/src/IconCheckIndeterminateSmallRoundedFilled.tsx b/src/IconCheckIndeterminateSmallRoundedFilled.tsx new file mode 100644 index 000000000..2ba05f6c6 --- /dev/null +++ b/src/IconCheckIndeterminateSmallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckIndeterminateSmallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckIndeterminateSmallRoundedFilled as default } diff --git a/src/IconCheckIndeterminateSmallSharpFilled.tsx b/src/IconCheckIndeterminateSmallSharpFilled.tsx new file mode 100644 index 000000000..0c802ad07 --- /dev/null +++ b/src/IconCheckIndeterminateSmallSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckIndeterminateSmallSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckIndeterminateSmallSharpFilled as default } diff --git a/src/IconCheckOutlinedFilled.tsx b/src/IconCheckOutlinedFilled.tsx new file mode 100644 index 000000000..4f4407c3e --- /dev/null +++ b/src/IconCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckOutlinedFilled as default } diff --git a/src/IconCheckRoundedFilled.tsx b/src/IconCheckRoundedFilled.tsx new file mode 100644 index 000000000..c1d2726cf --- /dev/null +++ b/src/IconCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckRoundedFilled as default } diff --git a/src/IconCheckSharpFilled.tsx b/src/IconCheckSharpFilled.tsx new file mode 100644 index 000000000..699ab35df --- /dev/null +++ b/src/IconCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckSharpFilled as default } diff --git a/src/IconCheckSmallOutlinedFilled.tsx b/src/IconCheckSmallOutlinedFilled.tsx new file mode 100644 index 000000000..a856bc996 --- /dev/null +++ b/src/IconCheckSmallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckSmallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckSmallOutlinedFilled as default } diff --git a/src/IconCheckSmallRoundedFilled.tsx b/src/IconCheckSmallRoundedFilled.tsx new file mode 100644 index 000000000..3a2a1594c --- /dev/null +++ b/src/IconCheckSmallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckSmallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckSmallRoundedFilled as default } diff --git a/src/IconCheckSmallSharpFilled.tsx b/src/IconCheckSmallSharpFilled.tsx new file mode 100644 index 000000000..f7704f7dc --- /dev/null +++ b/src/IconCheckSmallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckSmallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckSmallSharpFilled as default } diff --git a/src/IconCheckbookOutlinedFilled.tsx b/src/IconCheckbookOutlinedFilled.tsx new file mode 100644 index 000000000..42fc7d23b --- /dev/null +++ b/src/IconCheckbookOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckbookOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckbookOutlinedFilled as default } diff --git a/src/IconCheckbookRoundedFilled.tsx b/src/IconCheckbookRoundedFilled.tsx new file mode 100644 index 000000000..a8d2bdc7b --- /dev/null +++ b/src/IconCheckbookRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckbookRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckbookRoundedFilled as default } diff --git a/src/IconCheckbookSharpFilled.tsx b/src/IconCheckbookSharpFilled.tsx new file mode 100644 index 000000000..a110ebb01 --- /dev/null +++ b/src/IconCheckbookSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckbookSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckbookSharpFilled as default } diff --git a/src/IconCheckedBagOutlinedFilled.tsx b/src/IconCheckedBagOutlinedFilled.tsx new file mode 100644 index 000000000..215a48f2e --- /dev/null +++ b/src/IconCheckedBagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckedBagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckedBagOutlinedFilled as default } diff --git a/src/IconCheckedBagQuestionOutlinedFilled.tsx b/src/IconCheckedBagQuestionOutlinedFilled.tsx new file mode 100644 index 000000000..5004c2395 --- /dev/null +++ b/src/IconCheckedBagQuestionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckedBagQuestionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckedBagQuestionOutlinedFilled as default } diff --git a/src/IconCheckedBagQuestionRoundedFilled.tsx b/src/IconCheckedBagQuestionRoundedFilled.tsx new file mode 100644 index 000000000..258709e9d --- /dev/null +++ b/src/IconCheckedBagQuestionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckedBagQuestionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckedBagQuestionRoundedFilled as default } diff --git a/src/IconCheckedBagQuestionSharpFilled.tsx b/src/IconCheckedBagQuestionSharpFilled.tsx new file mode 100644 index 000000000..1340d97b3 --- /dev/null +++ b/src/IconCheckedBagQuestionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckedBagQuestionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckedBagQuestionSharpFilled as default } diff --git a/src/IconCheckedBagRoundedFilled.tsx b/src/IconCheckedBagRoundedFilled.tsx new file mode 100644 index 000000000..f7919a16c --- /dev/null +++ b/src/IconCheckedBagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckedBagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckedBagRoundedFilled as default } diff --git a/src/IconCheckedBagSharpFilled.tsx b/src/IconCheckedBagSharpFilled.tsx new file mode 100644 index 000000000..fb733874c --- /dev/null +++ b/src/IconCheckedBagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckedBagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckedBagSharpFilled as default } diff --git a/src/IconChecklistOutlinedFilled.tsx b/src/IconChecklistOutlinedFilled.tsx new file mode 100644 index 000000000..e5cb30216 --- /dev/null +++ b/src/IconChecklistOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChecklistOutlinedFilled as default } diff --git a/src/IconChecklistRoundedFilled.tsx b/src/IconChecklistRoundedFilled.tsx new file mode 100644 index 000000000..a0e9aaefc --- /dev/null +++ b/src/IconChecklistRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChecklistRoundedFilled as default } diff --git a/src/IconChecklistRtlOutlinedFilled.tsx b/src/IconChecklistRtlOutlinedFilled.tsx new file mode 100644 index 000000000..85eefba01 --- /dev/null +++ b/src/IconChecklistRtlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChecklistRtlOutlinedFilled as default } diff --git a/src/IconChecklistRtlRoundedFilled.tsx b/src/IconChecklistRtlRoundedFilled.tsx new file mode 100644 index 000000000..2a72a655d --- /dev/null +++ b/src/IconChecklistRtlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChecklistRtlRoundedFilled as default } diff --git a/src/IconChecklistRtlSharpFilled.tsx b/src/IconChecklistRtlSharpFilled.tsx new file mode 100644 index 000000000..7a25f385d --- /dev/null +++ b/src/IconChecklistRtlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistRtlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChecklistRtlSharpFilled as default } diff --git a/src/IconChecklistSharpFilled.tsx b/src/IconChecklistSharpFilled.tsx new file mode 100644 index 000000000..592a2dd1e --- /dev/null +++ b/src/IconChecklistSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChecklistSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChecklistSharpFilled as default } diff --git a/src/IconCheckroomOutlinedFilled.tsx b/src/IconCheckroomOutlinedFilled.tsx new file mode 100644 index 000000000..024903001 --- /dev/null +++ b/src/IconCheckroomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckroomOutlinedFilled as default } diff --git a/src/IconCheckroomRoundedFilled.tsx b/src/IconCheckroomRoundedFilled.tsx new file mode 100644 index 000000000..4e5001480 --- /dev/null +++ b/src/IconCheckroomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckroomRoundedFilled as default } diff --git a/src/IconCheckroomSharpFilled.tsx b/src/IconCheckroomSharpFilled.tsx new file mode 100644 index 000000000..681c00a88 --- /dev/null +++ b/src/IconCheckroomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheckroomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheckroomSharpFilled as default } diff --git a/src/IconCheerOutlinedFilled.tsx b/src/IconCheerOutlinedFilled.tsx new file mode 100644 index 000000000..3317e9845 --- /dev/null +++ b/src/IconCheerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheerOutlinedFilled as default } diff --git a/src/IconCheerRoundedFilled.tsx b/src/IconCheerRoundedFilled.tsx new file mode 100644 index 000000000..b57ef29eb --- /dev/null +++ b/src/IconCheerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheerRoundedFilled as default } diff --git a/src/IconCheerSharpFilled.tsx b/src/IconCheerSharpFilled.tsx new file mode 100644 index 000000000..ffca63d3b --- /dev/null +++ b/src/IconCheerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCheerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCheerSharpFilled as default } diff --git a/src/IconChessOutlinedFilled.tsx b/src/IconChessOutlinedFilled.tsx new file mode 100644 index 000000000..f48a6637d --- /dev/null +++ b/src/IconChessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChessOutlinedFilled as default } diff --git a/src/IconChessRoundedFilled.tsx b/src/IconChessRoundedFilled.tsx new file mode 100644 index 000000000..6a3a46507 --- /dev/null +++ b/src/IconChessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChessRoundedFilled as default } diff --git a/src/IconChessSharpFilled.tsx b/src/IconChessSharpFilled.tsx new file mode 100644 index 000000000..c6f20facb --- /dev/null +++ b/src/IconChessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChessSharpFilled as default } diff --git a/src/IconChevronBackwardOutlinedFilled.tsx b/src/IconChevronBackwardOutlinedFilled.tsx new file mode 100644 index 000000000..5e073112f --- /dev/null +++ b/src/IconChevronBackwardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronBackwardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronBackwardOutlinedFilled as default } diff --git a/src/IconChevronBackwardRoundedFilled.tsx b/src/IconChevronBackwardRoundedFilled.tsx new file mode 100644 index 000000000..b16c8e35c --- /dev/null +++ b/src/IconChevronBackwardRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronBackwardRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronBackwardRoundedFilled as default } diff --git a/src/IconChevronBackwardSharpFilled.tsx b/src/IconChevronBackwardSharpFilled.tsx new file mode 100644 index 000000000..f33cc095c --- /dev/null +++ b/src/IconChevronBackwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronBackwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronBackwardSharpFilled as default } diff --git a/src/IconChevronForwardOutlinedFilled.tsx b/src/IconChevronForwardOutlinedFilled.tsx new file mode 100644 index 000000000..a4a294831 --- /dev/null +++ b/src/IconChevronForwardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronForwardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronForwardOutlinedFilled as default } diff --git a/src/IconChevronForwardRoundedFilled.tsx b/src/IconChevronForwardRoundedFilled.tsx new file mode 100644 index 000000000..9dd3b7935 --- /dev/null +++ b/src/IconChevronForwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronForwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronForwardRoundedFilled as default } diff --git a/src/IconChevronForwardSharpFilled.tsx b/src/IconChevronForwardSharpFilled.tsx new file mode 100644 index 000000000..ab248952e --- /dev/null +++ b/src/IconChevronForwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronForwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronForwardSharpFilled as default } diff --git a/src/IconChevronLeftOutlinedFilled.tsx b/src/IconChevronLeftOutlinedFilled.tsx new file mode 100644 index 000000000..1537c5fbf --- /dev/null +++ b/src/IconChevronLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronLeftOutlinedFilled as default } diff --git a/src/IconChevronLeftRoundedFilled.tsx b/src/IconChevronLeftRoundedFilled.tsx new file mode 100644 index 000000000..9b3afcb5d --- /dev/null +++ b/src/IconChevronLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronLeftRoundedFilled as default } diff --git a/src/IconChevronLeftSharpFilled.tsx b/src/IconChevronLeftSharpFilled.tsx new file mode 100644 index 000000000..9699fdbbb --- /dev/null +++ b/src/IconChevronLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronLeftSharpFilled as default } diff --git a/src/IconChevronRightOutlinedFilled.tsx b/src/IconChevronRightOutlinedFilled.tsx new file mode 100644 index 000000000..018b95766 --- /dev/null +++ b/src/IconChevronRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronRightOutlinedFilled as default } diff --git a/src/IconChevronRightRoundedFilled.tsx b/src/IconChevronRightRoundedFilled.tsx new file mode 100644 index 000000000..c16d9aa30 --- /dev/null +++ b/src/IconChevronRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronRightRoundedFilled as default } diff --git a/src/IconChevronRightSharpFilled.tsx b/src/IconChevronRightSharpFilled.tsx new file mode 100644 index 000000000..30106f87c --- /dev/null +++ b/src/IconChevronRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChevronRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChevronRightSharpFilled as default } diff --git a/src/IconChildCareOutlinedFilled.tsx b/src/IconChildCareOutlinedFilled.tsx new file mode 100644 index 000000000..54f63a1b1 --- /dev/null +++ b/src/IconChildCareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChildCareOutlinedFilled as default } diff --git a/src/IconChildCareRoundedFilled.tsx b/src/IconChildCareRoundedFilled.tsx new file mode 100644 index 000000000..b5974639f --- /dev/null +++ b/src/IconChildCareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChildCareRoundedFilled as default } diff --git a/src/IconChildCareSharpFilled.tsx b/src/IconChildCareSharpFilled.tsx new file mode 100644 index 000000000..e13b6647f --- /dev/null +++ b/src/IconChildCareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildCareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChildCareSharpFilled as default } diff --git a/src/IconChildFriendlyOutlinedFilled.tsx b/src/IconChildFriendlyOutlinedFilled.tsx new file mode 100644 index 000000000..8505845ea --- /dev/null +++ b/src/IconChildFriendlyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChildFriendlyOutlinedFilled as default } diff --git a/src/IconChildFriendlyRoundedFilled.tsx b/src/IconChildFriendlyRoundedFilled.tsx new file mode 100644 index 000000000..f74923b24 --- /dev/null +++ b/src/IconChildFriendlyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChildFriendlyRoundedFilled as default } diff --git a/src/IconChildFriendlySharpFilled.tsx b/src/IconChildFriendlySharpFilled.tsx new file mode 100644 index 000000000..a8deb6d31 --- /dev/null +++ b/src/IconChildFriendlySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChildFriendlySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChildFriendlySharpFilled as default } diff --git a/src/IconChipExtractionOutlinedFilled.tsx b/src/IconChipExtractionOutlinedFilled.tsx new file mode 100644 index 000000000..191b2010d --- /dev/null +++ b/src/IconChipExtractionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChipExtractionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChipExtractionOutlinedFilled as default } diff --git a/src/IconChipExtractionRoundedFilled.tsx b/src/IconChipExtractionRoundedFilled.tsx new file mode 100644 index 000000000..fa9aa10bd --- /dev/null +++ b/src/IconChipExtractionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChipExtractionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChipExtractionRoundedFilled as default } diff --git a/src/IconChipExtractionSharpFilled.tsx b/src/IconChipExtractionSharpFilled.tsx new file mode 100644 index 000000000..410e6fd91 --- /dev/null +++ b/src/IconChipExtractionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChipExtractionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChipExtractionSharpFilled as default } diff --git a/src/IconChipsOutlinedFilled.tsx b/src/IconChipsOutlinedFilled.tsx new file mode 100644 index 000000000..793803bcd --- /dev/null +++ b/src/IconChipsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChipsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChipsOutlinedFilled as default } diff --git a/src/IconChipsRoundedFilled.tsx b/src/IconChipsRoundedFilled.tsx new file mode 100644 index 000000000..67886abd6 --- /dev/null +++ b/src/IconChipsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChipsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChipsRoundedFilled as default } diff --git a/src/IconChipsSharpFilled.tsx b/src/IconChipsSharpFilled.tsx new file mode 100644 index 000000000..fd6b9bd3d --- /dev/null +++ b/src/IconChipsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChipsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChipsSharpFilled as default } diff --git a/src/IconChromeReaderModeOutlinedFilled.tsx b/src/IconChromeReaderModeOutlinedFilled.tsx new file mode 100644 index 000000000..0e00b80b5 --- /dev/null +++ b/src/IconChromeReaderModeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChromeReaderModeOutlinedFilled as default } diff --git a/src/IconChromeReaderModeRoundedFilled.tsx b/src/IconChromeReaderModeRoundedFilled.tsx new file mode 100644 index 000000000..2e24c7d9e --- /dev/null +++ b/src/IconChromeReaderModeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChromeReaderModeRoundedFilled as default } diff --git a/src/IconChromeReaderModeSharpFilled.tsx b/src/IconChromeReaderModeSharpFilled.tsx new file mode 100644 index 000000000..5a3509376 --- /dev/null +++ b/src/IconChromeReaderModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromeReaderModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChromeReaderModeSharpFilled as default } diff --git a/src/IconChromecast2OutlinedFilled.tsx b/src/IconChromecast2OutlinedFilled.tsx new file mode 100644 index 000000000..f5ef1520c --- /dev/null +++ b/src/IconChromecast2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromecast2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChromecast2OutlinedFilled as default } diff --git a/src/IconChromecast2RoundedFilled.tsx b/src/IconChromecast2RoundedFilled.tsx new file mode 100644 index 000000000..3a1a87c12 --- /dev/null +++ b/src/IconChromecast2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromecast2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChromecast2RoundedFilled as default } diff --git a/src/IconChromecast2SharpFilled.tsx b/src/IconChromecast2SharpFilled.tsx new file mode 100644 index 000000000..e2743a4e4 --- /dev/null +++ b/src/IconChromecast2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromecast2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChromecast2SharpFilled as default } diff --git a/src/IconChromecastDeviceOutlinedFilled.tsx b/src/IconChromecastDeviceOutlinedFilled.tsx new file mode 100644 index 000000000..928962e06 --- /dev/null +++ b/src/IconChromecastDeviceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromecastDeviceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChromecastDeviceOutlinedFilled as default } diff --git a/src/IconChromecastDeviceRoundedFilled.tsx b/src/IconChromecastDeviceRoundedFilled.tsx new file mode 100644 index 000000000..5a8017ee3 --- /dev/null +++ b/src/IconChromecastDeviceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromecastDeviceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconChromecastDeviceRoundedFilled as default } diff --git a/src/IconChromecastDeviceSharpFilled.tsx b/src/IconChromecastDeviceSharpFilled.tsx new file mode 100644 index 000000000..79cae749b --- /dev/null +++ b/src/IconChromecastDeviceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChromecastDeviceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChromecastDeviceSharpFilled as default } diff --git a/src/IconChronicOutlinedFilled.tsx b/src/IconChronicOutlinedFilled.tsx new file mode 100644 index 000000000..0b6a03874 --- /dev/null +++ b/src/IconChronicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChronicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChronicOutlinedFilled as default } diff --git a/src/IconChronicRoundedFilled.tsx b/src/IconChronicRoundedFilled.tsx new file mode 100644 index 000000000..8a36e8966 --- /dev/null +++ b/src/IconChronicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChronicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChronicRoundedFilled as default } diff --git a/src/IconChronicSharpFilled.tsx b/src/IconChronicSharpFilled.tsx new file mode 100644 index 000000000..91dcc07d8 --- /dev/null +++ b/src/IconChronicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChronicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChronicSharpFilled as default } diff --git a/src/IconChurchOutlinedFilled.tsx b/src/IconChurchOutlinedFilled.tsx new file mode 100644 index 000000000..b87d795fe --- /dev/null +++ b/src/IconChurchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChurchOutlinedFilled as default } diff --git a/src/IconChurchRoundedFilled.tsx b/src/IconChurchRoundedFilled.tsx new file mode 100644 index 000000000..be7d4a7c0 --- /dev/null +++ b/src/IconChurchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChurchRoundedFilled as default } diff --git a/src/IconChurchSharpFilled.tsx b/src/IconChurchSharpFilled.tsx new file mode 100644 index 000000000..f2a642736 --- /dev/null +++ b/src/IconChurchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconChurchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconChurchSharpFilled as default } diff --git a/src/IconCinematicBlurOutlinedFilled.tsx b/src/IconCinematicBlurOutlinedFilled.tsx new file mode 100644 index 000000000..4adf4ac95 --- /dev/null +++ b/src/IconCinematicBlurOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCinematicBlurOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCinematicBlurOutlinedFilled as default } diff --git a/src/IconCinematicBlurRoundedFilled.tsx b/src/IconCinematicBlurRoundedFilled.tsx new file mode 100644 index 000000000..fc8079ee2 --- /dev/null +++ b/src/IconCinematicBlurRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCinematicBlurRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCinematicBlurRoundedFilled as default } diff --git a/src/IconCinematicBlurSharpFilled.tsx b/src/IconCinematicBlurSharpFilled.tsx new file mode 100644 index 000000000..ef572ef68 --- /dev/null +++ b/src/IconCinematicBlurSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCinematicBlurSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCinematicBlurSharpFilled as default } diff --git a/src/IconCircleNotificationsOutlinedFilled.tsx b/src/IconCircleNotificationsOutlinedFilled.tsx new file mode 100644 index 000000000..59e82dabb --- /dev/null +++ b/src/IconCircleNotificationsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCircleNotificationsOutlinedFilled as default } diff --git a/src/IconCircleNotificationsRoundedFilled.tsx b/src/IconCircleNotificationsRoundedFilled.tsx new file mode 100644 index 000000000..3bc866cd8 --- /dev/null +++ b/src/IconCircleNotificationsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCircleNotificationsRoundedFilled as default } diff --git a/src/IconCircleNotificationsSharpFilled.tsx b/src/IconCircleNotificationsSharpFilled.tsx new file mode 100644 index 000000000..c569230aa --- /dev/null +++ b/src/IconCircleNotificationsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleNotificationsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCircleNotificationsSharpFilled as default } diff --git a/src/IconCircleOutlinedFilled.tsx b/src/IconCircleOutlinedFilled.tsx new file mode 100644 index 000000000..73e7fcec1 --- /dev/null +++ b/src/IconCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCircleOutlinedFilled as default } diff --git a/src/IconCircleRoundedFilled.tsx b/src/IconCircleRoundedFilled.tsx new file mode 100644 index 000000000..04b30910c --- /dev/null +++ b/src/IconCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCircleRoundedFilled as default } diff --git a/src/IconCircleSharpFilled.tsx b/src/IconCircleSharpFilled.tsx new file mode 100644 index 000000000..db3823de5 --- /dev/null +++ b/src/IconCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCircleSharpFilled as default } diff --git a/src/IconCirclesExtOutlinedFilled.tsx b/src/IconCirclesExtOutlinedFilled.tsx new file mode 100644 index 000000000..42b8c91dc --- /dev/null +++ b/src/IconCirclesExtOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCirclesExtOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCirclesExtOutlinedFilled as default } diff --git a/src/IconCirclesExtRoundedFilled.tsx b/src/IconCirclesExtRoundedFilled.tsx new file mode 100644 index 000000000..e0c5aff7d --- /dev/null +++ b/src/IconCirclesExtRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCirclesExtRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCirclesExtRoundedFilled as default } diff --git a/src/IconCirclesExtSharpFilled.tsx b/src/IconCirclesExtSharpFilled.tsx new file mode 100644 index 000000000..33fbbe1bb --- /dev/null +++ b/src/IconCirclesExtSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCirclesExtSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCirclesExtSharpFilled as default } diff --git a/src/IconCirclesOutlinedFilled.tsx b/src/IconCirclesOutlinedFilled.tsx new file mode 100644 index 000000000..3ebcaf171 --- /dev/null +++ b/src/IconCirclesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCirclesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCirclesOutlinedFilled as default } diff --git a/src/IconCirclesRoundedFilled.tsx b/src/IconCirclesRoundedFilled.tsx new file mode 100644 index 000000000..3c9453b51 --- /dev/null +++ b/src/IconCirclesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCirclesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCirclesRoundedFilled as default } diff --git a/src/IconCirclesSharpFilled.tsx b/src/IconCirclesSharpFilled.tsx new file mode 100644 index 000000000..dc343f9ea --- /dev/null +++ b/src/IconCirclesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCirclesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCirclesSharpFilled as default } diff --git a/src/IconClarifyOutlinedFilled.tsx b/src/IconClarifyOutlinedFilled.tsx new file mode 100644 index 000000000..a35aed262 --- /dev/null +++ b/src/IconClarifyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClarifyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClarifyOutlinedFilled as default } diff --git a/src/IconClarifyRoundedFilled.tsx b/src/IconClarifyRoundedFilled.tsx new file mode 100644 index 000000000..729f6d855 --- /dev/null +++ b/src/IconClarifyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClarifyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClarifyRoundedFilled as default } diff --git a/src/IconClarifySharpFilled.tsx b/src/IconClarifySharpFilled.tsx new file mode 100644 index 000000000..980934cf8 --- /dev/null +++ b/src/IconClarifySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClarifySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClarifySharpFilled as default } diff --git a/src/IconCleanHandsOutlinedFilled.tsx b/src/IconCleanHandsOutlinedFilled.tsx new file mode 100644 index 000000000..9b021530f --- /dev/null +++ b/src/IconCleanHandsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleanHandsOutlinedFilled as default } diff --git a/src/IconCleanHandsRoundedFilled.tsx b/src/IconCleanHandsRoundedFilled.tsx new file mode 100644 index 000000000..d05621ae5 --- /dev/null +++ b/src/IconCleanHandsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleanHandsRoundedFilled as default } diff --git a/src/IconCleanHandsSharpFilled.tsx b/src/IconCleanHandsSharpFilled.tsx new file mode 100644 index 000000000..06c6b932f --- /dev/null +++ b/src/IconCleanHandsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleanHandsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleanHandsSharpFilled as default } diff --git a/src/IconCleaningBucketOutlinedFilled.tsx b/src/IconCleaningBucketOutlinedFilled.tsx new file mode 100644 index 000000000..ac4504f1a --- /dev/null +++ b/src/IconCleaningBucketOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningBucketOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningBucketOutlinedFilled as default } diff --git a/src/IconCleaningBucketRoundedFilled.tsx b/src/IconCleaningBucketRoundedFilled.tsx new file mode 100644 index 000000000..d86f252ac --- /dev/null +++ b/src/IconCleaningBucketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningBucketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningBucketRoundedFilled as default } diff --git a/src/IconCleaningBucketSharpFilled.tsx b/src/IconCleaningBucketSharpFilled.tsx new file mode 100644 index 000000000..2d7ca8c15 --- /dev/null +++ b/src/IconCleaningBucketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningBucketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningBucketSharpFilled as default } diff --git a/src/IconCleaningOutlinedFilled.tsx b/src/IconCleaningOutlinedFilled.tsx new file mode 100644 index 000000000..719ca201c --- /dev/null +++ b/src/IconCleaningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningOutlinedFilled as default } diff --git a/src/IconCleaningRoundedFilled.tsx b/src/IconCleaningRoundedFilled.tsx new file mode 100644 index 000000000..ff87ef6e0 --- /dev/null +++ b/src/IconCleaningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningRoundedFilled as default } diff --git a/src/IconCleaningServicesOutlinedFilled.tsx b/src/IconCleaningServicesOutlinedFilled.tsx new file mode 100644 index 000000000..e8d0f526e --- /dev/null +++ b/src/IconCleaningServicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningServicesOutlinedFilled as default } diff --git a/src/IconCleaningServicesRoundedFilled.tsx b/src/IconCleaningServicesRoundedFilled.tsx new file mode 100644 index 000000000..3b63dcdee --- /dev/null +++ b/src/IconCleaningServicesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningServicesRoundedFilled as default } diff --git a/src/IconCleaningServicesSharpFilled.tsx b/src/IconCleaningServicesSharpFilled.tsx new file mode 100644 index 000000000..8c3054a2e --- /dev/null +++ b/src/IconCleaningServicesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningServicesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningServicesSharpFilled as default } diff --git a/src/IconCleaningSharpFilled.tsx b/src/IconCleaningSharpFilled.tsx new file mode 100644 index 000000000..f51a738c5 --- /dev/null +++ b/src/IconCleaningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCleaningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCleaningSharpFilled as default } diff --git a/src/IconClearAllOutlinedFilled.tsx b/src/IconClearAllOutlinedFilled.tsx new file mode 100644 index 000000000..2d02ecbe7 --- /dev/null +++ b/src/IconClearAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClearAllOutlinedFilled as default } diff --git a/src/IconClearAllRoundedFilled.tsx b/src/IconClearAllRoundedFilled.tsx new file mode 100644 index 000000000..fff3b0cf3 --- /dev/null +++ b/src/IconClearAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClearAllRoundedFilled as default } diff --git a/src/IconClearAllSharpFilled.tsx b/src/IconClearAllSharpFilled.tsx new file mode 100644 index 000000000..b3f04b69e --- /dev/null +++ b/src/IconClearAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClearAllSharpFilled as default } diff --git a/src/IconClearDayOutlinedFilled.tsx b/src/IconClearDayOutlinedFilled.tsx new file mode 100644 index 000000000..f723fae04 --- /dev/null +++ b/src/IconClearDayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearDayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClearDayOutlinedFilled as default } diff --git a/src/IconClearDayRoundedFilled.tsx b/src/IconClearDayRoundedFilled.tsx new file mode 100644 index 000000000..e56901b47 --- /dev/null +++ b/src/IconClearDayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearDayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClearDayRoundedFilled as default } diff --git a/src/IconClearDaySharpFilled.tsx b/src/IconClearDaySharpFilled.tsx new file mode 100644 index 000000000..ec8f6c9ba --- /dev/null +++ b/src/IconClearDaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClearDaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClearDaySharpFilled as default } diff --git a/src/IconClimateMiniSplitOutlinedFilled.tsx b/src/IconClimateMiniSplitOutlinedFilled.tsx new file mode 100644 index 000000000..31130071c --- /dev/null +++ b/src/IconClimateMiniSplitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClimateMiniSplitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClimateMiniSplitOutlinedFilled as default } diff --git a/src/IconClimateMiniSplitRoundedFilled.tsx b/src/IconClimateMiniSplitRoundedFilled.tsx new file mode 100644 index 000000000..1889efc97 --- /dev/null +++ b/src/IconClimateMiniSplitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClimateMiniSplitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClimateMiniSplitRoundedFilled as default } diff --git a/src/IconClimateMiniSplitSharpFilled.tsx b/src/IconClimateMiniSplitSharpFilled.tsx new file mode 100644 index 000000000..1ea3f3d3f --- /dev/null +++ b/src/IconClimateMiniSplitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClimateMiniSplitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClimateMiniSplitSharpFilled as default } diff --git a/src/IconClinicalNotesOutlinedFilled.tsx b/src/IconClinicalNotesOutlinedFilled.tsx new file mode 100644 index 000000000..43e23a283 --- /dev/null +++ b/src/IconClinicalNotesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClinicalNotesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClinicalNotesOutlinedFilled as default } diff --git a/src/IconClinicalNotesRoundedFilled.tsx b/src/IconClinicalNotesRoundedFilled.tsx new file mode 100644 index 000000000..37494619f --- /dev/null +++ b/src/IconClinicalNotesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClinicalNotesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClinicalNotesRoundedFilled as default } diff --git a/src/IconClinicalNotesSharpFilled.tsx b/src/IconClinicalNotesSharpFilled.tsx new file mode 100644 index 000000000..18ce88fb8 --- /dev/null +++ b/src/IconClinicalNotesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClinicalNotesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClinicalNotesSharpFilled as default } diff --git a/src/IconClockLoader10OutlinedFilled.tsx b/src/IconClockLoader10OutlinedFilled.tsx new file mode 100644 index 000000000..8b28adf3e --- /dev/null +++ b/src/IconClockLoader10OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader10OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader10OutlinedFilled as default } diff --git a/src/IconClockLoader10RoundedFilled.tsx b/src/IconClockLoader10RoundedFilled.tsx new file mode 100644 index 000000000..82002a630 --- /dev/null +++ b/src/IconClockLoader10RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader10RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader10RoundedFilled as default } diff --git a/src/IconClockLoader10SharpFilled.tsx b/src/IconClockLoader10SharpFilled.tsx new file mode 100644 index 000000000..0b2048fc1 --- /dev/null +++ b/src/IconClockLoader10SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader10SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader10SharpFilled as default } diff --git a/src/IconClockLoader20OutlinedFilled.tsx b/src/IconClockLoader20OutlinedFilled.tsx new file mode 100644 index 000000000..40334a9e5 --- /dev/null +++ b/src/IconClockLoader20OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader20OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader20OutlinedFilled as default } diff --git a/src/IconClockLoader20RoundedFilled.tsx b/src/IconClockLoader20RoundedFilled.tsx new file mode 100644 index 000000000..4b91c2449 --- /dev/null +++ b/src/IconClockLoader20RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader20RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader20RoundedFilled as default } diff --git a/src/IconClockLoader20SharpFilled.tsx b/src/IconClockLoader20SharpFilled.tsx new file mode 100644 index 000000000..9305e4397 --- /dev/null +++ b/src/IconClockLoader20SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader20SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader20SharpFilled as default } diff --git a/src/IconClockLoader40OutlinedFilled.tsx b/src/IconClockLoader40OutlinedFilled.tsx new file mode 100644 index 000000000..58959e11a --- /dev/null +++ b/src/IconClockLoader40OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader40OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader40OutlinedFilled as default } diff --git a/src/IconClockLoader40RoundedFilled.tsx b/src/IconClockLoader40RoundedFilled.tsx new file mode 100644 index 000000000..0491e59ce --- /dev/null +++ b/src/IconClockLoader40RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader40RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader40RoundedFilled as default } diff --git a/src/IconClockLoader40SharpFilled.tsx b/src/IconClockLoader40SharpFilled.tsx new file mode 100644 index 000000000..fc7b98987 --- /dev/null +++ b/src/IconClockLoader40SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader40SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader40SharpFilled as default } diff --git a/src/IconClockLoader60OutlinedFilled.tsx b/src/IconClockLoader60OutlinedFilled.tsx new file mode 100644 index 000000000..f9096b4f3 --- /dev/null +++ b/src/IconClockLoader60OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader60OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader60OutlinedFilled as default } diff --git a/src/IconClockLoader60RoundedFilled.tsx b/src/IconClockLoader60RoundedFilled.tsx new file mode 100644 index 000000000..cfe3491b2 --- /dev/null +++ b/src/IconClockLoader60RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader60RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader60RoundedFilled as default } diff --git a/src/IconClockLoader60SharpFilled.tsx b/src/IconClockLoader60SharpFilled.tsx new file mode 100644 index 000000000..023071218 --- /dev/null +++ b/src/IconClockLoader60SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader60SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader60SharpFilled as default } diff --git a/src/IconClockLoader80OutlinedFilled.tsx b/src/IconClockLoader80OutlinedFilled.tsx new file mode 100644 index 000000000..874ad7e73 --- /dev/null +++ b/src/IconClockLoader80OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader80OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader80OutlinedFilled as default } diff --git a/src/IconClockLoader80RoundedFilled.tsx b/src/IconClockLoader80RoundedFilled.tsx new file mode 100644 index 000000000..6d02a9ace --- /dev/null +++ b/src/IconClockLoader80RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader80RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader80RoundedFilled as default } diff --git a/src/IconClockLoader80SharpFilled.tsx b/src/IconClockLoader80SharpFilled.tsx new file mode 100644 index 000000000..dee36448b --- /dev/null +++ b/src/IconClockLoader80SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader80SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader80SharpFilled as default } diff --git a/src/IconClockLoader90OutlinedFilled.tsx b/src/IconClockLoader90OutlinedFilled.tsx new file mode 100644 index 000000000..ecd097027 --- /dev/null +++ b/src/IconClockLoader90OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader90OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader90OutlinedFilled as default } diff --git a/src/IconClockLoader90RoundedFilled.tsx b/src/IconClockLoader90RoundedFilled.tsx new file mode 100644 index 000000000..c5c330f3e --- /dev/null +++ b/src/IconClockLoader90RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader90RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader90RoundedFilled as default } diff --git a/src/IconClockLoader90SharpFilled.tsx b/src/IconClockLoader90SharpFilled.tsx new file mode 100644 index 000000000..4ded3fe5c --- /dev/null +++ b/src/IconClockLoader90SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClockLoader90SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClockLoader90SharpFilled as default } diff --git a/src/IconCloseFullscreenOutlinedFilled.tsx b/src/IconCloseFullscreenOutlinedFilled.tsx new file mode 100644 index 000000000..ebb168886 --- /dev/null +++ b/src/IconCloseFullscreenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseFullscreenOutlinedFilled as default } diff --git a/src/IconCloseFullscreenRoundedFilled.tsx b/src/IconCloseFullscreenRoundedFilled.tsx new file mode 100644 index 000000000..e27a2ac3a --- /dev/null +++ b/src/IconCloseFullscreenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseFullscreenRoundedFilled as default } diff --git a/src/IconCloseFullscreenSharpFilled.tsx b/src/IconCloseFullscreenSharpFilled.tsx new file mode 100644 index 000000000..0ee9c669e --- /dev/null +++ b/src/IconCloseFullscreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseFullscreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseFullscreenSharpFilled as default } diff --git a/src/IconCloseOutlinedFilled.tsx b/src/IconCloseOutlinedFilled.tsx new file mode 100644 index 000000000..99f5c018e --- /dev/null +++ b/src/IconCloseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseOutlinedFilled as default } diff --git a/src/IconCloseRoundedFilled.tsx b/src/IconCloseRoundedFilled.tsx new file mode 100644 index 000000000..5146209db --- /dev/null +++ b/src/IconCloseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseRoundedFilled as default } diff --git a/src/IconCloseSharpFilled.tsx b/src/IconCloseSharpFilled.tsx new file mode 100644 index 000000000..2dfe75879 --- /dev/null +++ b/src/IconCloseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseSharpFilled as default } diff --git a/src/IconCloseSmallOutlinedFilled.tsx b/src/IconCloseSmallOutlinedFilled.tsx new file mode 100644 index 000000000..a569d6b86 --- /dev/null +++ b/src/IconCloseSmallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseSmallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseSmallOutlinedFilled as default } diff --git a/src/IconCloseSmallRoundedFilled.tsx b/src/IconCloseSmallRoundedFilled.tsx new file mode 100644 index 000000000..694fae484 --- /dev/null +++ b/src/IconCloseSmallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseSmallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseSmallRoundedFilled as default } diff --git a/src/IconCloseSmallSharpFilled.tsx b/src/IconCloseSmallSharpFilled.tsx new file mode 100644 index 000000000..4916a7b6f --- /dev/null +++ b/src/IconCloseSmallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloseSmallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloseSmallSharpFilled as default } diff --git a/src/IconClosedCaptionAddOutlinedFilled.tsx b/src/IconClosedCaptionAddOutlinedFilled.tsx new file mode 100644 index 000000000..58dd9bbb9 --- /dev/null +++ b/src/IconClosedCaptionAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionAddOutlinedFilled as default } diff --git a/src/IconClosedCaptionAddRoundedFilled.tsx b/src/IconClosedCaptionAddRoundedFilled.tsx new file mode 100644 index 000000000..e935f9c46 --- /dev/null +++ b/src/IconClosedCaptionAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionAddRoundedFilled as default } diff --git a/src/IconClosedCaptionAddSharpFilled.tsx b/src/IconClosedCaptionAddSharpFilled.tsx new file mode 100644 index 000000000..b5f33c01f --- /dev/null +++ b/src/IconClosedCaptionAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionAddSharpFilled as default } diff --git a/src/IconClosedCaptionDisabledOutlinedFilled.tsx b/src/IconClosedCaptionDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..cf653e8a5 --- /dev/null +++ b/src/IconClosedCaptionDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionDisabledOutlinedFilled as default } diff --git a/src/IconClosedCaptionDisabledRoundedFilled.tsx b/src/IconClosedCaptionDisabledRoundedFilled.tsx new file mode 100644 index 000000000..f5ce11c01 --- /dev/null +++ b/src/IconClosedCaptionDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionDisabledRoundedFilled as default } diff --git a/src/IconClosedCaptionDisabledSharpFilled.tsx b/src/IconClosedCaptionDisabledSharpFilled.tsx new file mode 100644 index 000000000..053189c44 --- /dev/null +++ b/src/IconClosedCaptionDisabledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionDisabledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionDisabledSharpFilled as default } diff --git a/src/IconClosedCaptionOutlinedFilled.tsx b/src/IconClosedCaptionOutlinedFilled.tsx new file mode 100644 index 000000000..f4f8acff3 --- /dev/null +++ b/src/IconClosedCaptionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionOutlinedFilled as default } diff --git a/src/IconClosedCaptionRoundedFilled.tsx b/src/IconClosedCaptionRoundedFilled.tsx new file mode 100644 index 000000000..f7586ca78 --- /dev/null +++ b/src/IconClosedCaptionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionRoundedFilled as default } diff --git a/src/IconClosedCaptionSharpFilled.tsx b/src/IconClosedCaptionSharpFilled.tsx new file mode 100644 index 000000000..0b28e3a6a --- /dev/null +++ b/src/IconClosedCaptionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconClosedCaptionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconClosedCaptionSharpFilled as default } diff --git a/src/IconCloudCircleOutlinedFilled.tsx b/src/IconCloudCircleOutlinedFilled.tsx new file mode 100644 index 000000000..288ff7744 --- /dev/null +++ b/src/IconCloudCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudCircleOutlinedFilled as default } diff --git a/src/IconCloudCircleRoundedFilled.tsx b/src/IconCloudCircleRoundedFilled.tsx new file mode 100644 index 000000000..e09c7e1e8 --- /dev/null +++ b/src/IconCloudCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudCircleRoundedFilled as default } diff --git a/src/IconCloudCircleSharpFilled.tsx b/src/IconCloudCircleSharpFilled.tsx new file mode 100644 index 000000000..ff6b14ae3 --- /dev/null +++ b/src/IconCloudCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudCircleSharpFilled as default } diff --git a/src/IconCloudDoneOutlinedFilled.tsx b/src/IconCloudDoneOutlinedFilled.tsx new file mode 100644 index 000000000..85b840f23 --- /dev/null +++ b/src/IconCloudDoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudDoneOutlinedFilled as default } diff --git a/src/IconCloudDoneRoundedFilled.tsx b/src/IconCloudDoneRoundedFilled.tsx new file mode 100644 index 000000000..fc64917cd --- /dev/null +++ b/src/IconCloudDoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudDoneRoundedFilled as default } diff --git a/src/IconCloudDoneSharpFilled.tsx b/src/IconCloudDoneSharpFilled.tsx new file mode 100644 index 000000000..abe1a9d1d --- /dev/null +++ b/src/IconCloudDoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudDoneSharpFilled as default } diff --git a/src/IconCloudDownloadOutlinedFilled.tsx b/src/IconCloudDownloadOutlinedFilled.tsx new file mode 100644 index 000000000..987282a0b --- /dev/null +++ b/src/IconCloudDownloadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudDownloadOutlinedFilled as default } diff --git a/src/IconCloudDownloadRoundedFilled.tsx b/src/IconCloudDownloadRoundedFilled.tsx new file mode 100644 index 000000000..d25991d36 --- /dev/null +++ b/src/IconCloudDownloadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudDownloadRoundedFilled as default } diff --git a/src/IconCloudDownloadSharpFilled.tsx b/src/IconCloudDownloadSharpFilled.tsx new file mode 100644 index 000000000..2f0a1eb5c --- /dev/null +++ b/src/IconCloudDownloadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudDownloadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudDownloadSharpFilled as default } diff --git a/src/IconCloudOffOutlinedFilled.tsx b/src/IconCloudOffOutlinedFilled.tsx new file mode 100644 index 000000000..3bd7f86b3 --- /dev/null +++ b/src/IconCloudOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudOffOutlinedFilled as default } diff --git a/src/IconCloudOffRoundedFilled.tsx b/src/IconCloudOffRoundedFilled.tsx new file mode 100644 index 000000000..b92950e03 --- /dev/null +++ b/src/IconCloudOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudOffRoundedFilled as default } diff --git a/src/IconCloudOffSharpFilled.tsx b/src/IconCloudOffSharpFilled.tsx new file mode 100644 index 000000000..f4760eaac --- /dev/null +++ b/src/IconCloudOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudOffSharpFilled as default } diff --git a/src/IconCloudOutlinedFilled.tsx b/src/IconCloudOutlinedFilled.tsx new file mode 100644 index 000000000..4ded976e2 --- /dev/null +++ b/src/IconCloudOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudOutlinedFilled as default } diff --git a/src/IconCloudRoundedFilled.tsx b/src/IconCloudRoundedFilled.tsx new file mode 100644 index 000000000..cb5f08f4f --- /dev/null +++ b/src/IconCloudRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudRoundedFilled as default } diff --git a/src/IconCloudSharpFilled.tsx b/src/IconCloudSharpFilled.tsx new file mode 100644 index 000000000..210fd11e2 --- /dev/null +++ b/src/IconCloudSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudSharpFilled as default } diff --git a/src/IconCloudSyncOutlinedFilled.tsx b/src/IconCloudSyncOutlinedFilled.tsx new file mode 100644 index 000000000..c00352e8e --- /dev/null +++ b/src/IconCloudSyncOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudSyncOutlinedFilled as default } diff --git a/src/IconCloudSyncRoundedFilled.tsx b/src/IconCloudSyncRoundedFilled.tsx new file mode 100644 index 000000000..fe4243830 --- /dev/null +++ b/src/IconCloudSyncRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudSyncRoundedFilled as default } diff --git a/src/IconCloudSyncSharpFilled.tsx b/src/IconCloudSyncSharpFilled.tsx new file mode 100644 index 000000000..c367394a3 --- /dev/null +++ b/src/IconCloudSyncSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudSyncSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudSyncSharpFilled as default } diff --git a/src/IconCloudUploadOutlinedFilled.tsx b/src/IconCloudUploadOutlinedFilled.tsx new file mode 100644 index 000000000..4e2713dba --- /dev/null +++ b/src/IconCloudUploadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudUploadOutlinedFilled as default } diff --git a/src/IconCloudUploadRoundedFilled.tsx b/src/IconCloudUploadRoundedFilled.tsx new file mode 100644 index 000000000..2e4644aef --- /dev/null +++ b/src/IconCloudUploadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudUploadRoundedFilled as default } diff --git a/src/IconCloudUploadSharpFilled.tsx b/src/IconCloudUploadSharpFilled.tsx new file mode 100644 index 000000000..c309db0c5 --- /dev/null +++ b/src/IconCloudUploadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudUploadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudUploadSharpFilled as default } diff --git a/src/IconCloudySnowingOutlinedFilled.tsx b/src/IconCloudySnowingOutlinedFilled.tsx new file mode 100644 index 000000000..e7ba32456 --- /dev/null +++ b/src/IconCloudySnowingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudySnowingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudySnowingOutlinedFilled as default } diff --git a/src/IconCloudySnowingRoundedFilled.tsx b/src/IconCloudySnowingRoundedFilled.tsx new file mode 100644 index 000000000..b3f2b2653 --- /dev/null +++ b/src/IconCloudySnowingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudySnowingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudySnowingRoundedFilled as default } diff --git a/src/IconCloudySnowingSharpFilled.tsx b/src/IconCloudySnowingSharpFilled.tsx new file mode 100644 index 000000000..3351bb1b7 --- /dev/null +++ b/src/IconCloudySnowingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCloudySnowingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCloudySnowingSharpFilled as default } diff --git a/src/IconCo2OutlinedFilled.tsx b/src/IconCo2OutlinedFilled.tsx new file mode 100644 index 000000000..9d83a6f0a --- /dev/null +++ b/src/IconCo2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCo2OutlinedFilled as default } diff --git a/src/IconCo2RoundedFilled.tsx b/src/IconCo2RoundedFilled.tsx new file mode 100644 index 000000000..a32d37f0b --- /dev/null +++ b/src/IconCo2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCo2RoundedFilled as default } diff --git a/src/IconCo2SharpFilled.tsx b/src/IconCo2SharpFilled.tsx new file mode 100644 index 000000000..1270aa240 --- /dev/null +++ b/src/IconCo2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCo2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCo2SharpFilled as default } diff --git a/src/IconCoPresentOutlinedFilled.tsx b/src/IconCoPresentOutlinedFilled.tsx new file mode 100644 index 000000000..f5eb81098 --- /dev/null +++ b/src/IconCoPresentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoPresentOutlinedFilled as default } diff --git a/src/IconCoPresentRoundedFilled.tsx b/src/IconCoPresentRoundedFilled.tsx new file mode 100644 index 000000000..28fe087c9 --- /dev/null +++ b/src/IconCoPresentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoPresentRoundedFilled as default } diff --git a/src/IconCoPresentSharpFilled.tsx b/src/IconCoPresentSharpFilled.tsx new file mode 100644 index 000000000..d8828fe0f --- /dev/null +++ b/src/IconCoPresentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoPresentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoPresentSharpFilled as default } diff --git a/src/IconCodeBlocksOutlinedFilled.tsx b/src/IconCodeBlocksOutlinedFilled.tsx new file mode 100644 index 000000000..ae60749b5 --- /dev/null +++ b/src/IconCodeBlocksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeBlocksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeBlocksOutlinedFilled as default } diff --git a/src/IconCodeBlocksRoundedFilled.tsx b/src/IconCodeBlocksRoundedFilled.tsx new file mode 100644 index 000000000..e48170ae1 --- /dev/null +++ b/src/IconCodeBlocksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeBlocksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeBlocksRoundedFilled as default } diff --git a/src/IconCodeBlocksSharpFilled.tsx b/src/IconCodeBlocksSharpFilled.tsx new file mode 100644 index 000000000..c94215b03 --- /dev/null +++ b/src/IconCodeBlocksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeBlocksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeBlocksSharpFilled as default } diff --git a/src/IconCodeOffOutlinedFilled.tsx b/src/IconCodeOffOutlinedFilled.tsx new file mode 100644 index 000000000..037092dda --- /dev/null +++ b/src/IconCodeOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeOffOutlinedFilled as default } diff --git a/src/IconCodeOffRoundedFilled.tsx b/src/IconCodeOffRoundedFilled.tsx new file mode 100644 index 000000000..3e3bc984b --- /dev/null +++ b/src/IconCodeOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeOffRoundedFilled as default } diff --git a/src/IconCodeOffSharpFilled.tsx b/src/IconCodeOffSharpFilled.tsx new file mode 100644 index 000000000..2eea314a9 --- /dev/null +++ b/src/IconCodeOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeOffSharpFilled as default } diff --git a/src/IconCodeOutlinedFilled.tsx b/src/IconCodeOutlinedFilled.tsx new file mode 100644 index 000000000..256cc24f6 --- /dev/null +++ b/src/IconCodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeOutlinedFilled as default } diff --git a/src/IconCodeRoundedFilled.tsx b/src/IconCodeRoundedFilled.tsx new file mode 100644 index 000000000..3b95b07a8 --- /dev/null +++ b/src/IconCodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeRoundedFilled as default } diff --git a/src/IconCodeSharpFilled.tsx b/src/IconCodeSharpFilled.tsx new file mode 100644 index 000000000..c9efb31b3 --- /dev/null +++ b/src/IconCodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCodeSharpFilled as default } diff --git a/src/IconCoffeeMakerOutlinedFilled.tsx b/src/IconCoffeeMakerOutlinedFilled.tsx new file mode 100644 index 000000000..43245e209 --- /dev/null +++ b/src/IconCoffeeMakerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoffeeMakerOutlinedFilled as default } diff --git a/src/IconCoffeeMakerRoundedFilled.tsx b/src/IconCoffeeMakerRoundedFilled.tsx new file mode 100644 index 000000000..fd265b31c --- /dev/null +++ b/src/IconCoffeeMakerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoffeeMakerRoundedFilled as default } diff --git a/src/IconCoffeeMakerSharpFilled.tsx b/src/IconCoffeeMakerSharpFilled.tsx new file mode 100644 index 000000000..5ea362b07 --- /dev/null +++ b/src/IconCoffeeMakerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeMakerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoffeeMakerSharpFilled as default } diff --git a/src/IconCoffeeOutlinedFilled.tsx b/src/IconCoffeeOutlinedFilled.tsx new file mode 100644 index 000000000..9f2eb9ec8 --- /dev/null +++ b/src/IconCoffeeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoffeeOutlinedFilled as default } diff --git a/src/IconCoffeeRoundedFilled.tsx b/src/IconCoffeeRoundedFilled.tsx new file mode 100644 index 000000000..c32e646b3 --- /dev/null +++ b/src/IconCoffeeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoffeeRoundedFilled as default } diff --git a/src/IconCoffeeSharpFilled.tsx b/src/IconCoffeeSharpFilled.tsx new file mode 100644 index 000000000..789381b28 --- /dev/null +++ b/src/IconCoffeeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoffeeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoffeeSharpFilled as default } diff --git a/src/IconCognitionOutlinedFilled.tsx b/src/IconCognitionOutlinedFilled.tsx new file mode 100644 index 000000000..4b941eb7d --- /dev/null +++ b/src/IconCognitionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCognitionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCognitionOutlinedFilled as default } diff --git a/src/IconCognitionRoundedFilled.tsx b/src/IconCognitionRoundedFilled.tsx new file mode 100644 index 000000000..9aa961c5b --- /dev/null +++ b/src/IconCognitionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCognitionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCognitionRoundedFilled as default } diff --git a/src/IconCognitionSharpFilled.tsx b/src/IconCognitionSharpFilled.tsx new file mode 100644 index 000000000..929b789aa --- /dev/null +++ b/src/IconCognitionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCognitionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCognitionSharpFilled as default } diff --git a/src/IconCollapseAllOutlinedFilled.tsx b/src/IconCollapseAllOutlinedFilled.tsx new file mode 100644 index 000000000..08b9603b8 --- /dev/null +++ b/src/IconCollapseAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollapseAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCollapseAllOutlinedFilled as default } diff --git a/src/IconCollapseAllRoundedFilled.tsx b/src/IconCollapseAllRoundedFilled.tsx new file mode 100644 index 000000000..6edc930f4 --- /dev/null +++ b/src/IconCollapseAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollapseAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCollapseAllRoundedFilled as default } diff --git a/src/IconCollapseAllSharpFilled.tsx b/src/IconCollapseAllSharpFilled.tsx new file mode 100644 index 000000000..486b32d28 --- /dev/null +++ b/src/IconCollapseAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollapseAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCollapseAllSharpFilled as default } diff --git a/src/IconCollapseContentOutlinedFilled.tsx b/src/IconCollapseContentOutlinedFilled.tsx new file mode 100644 index 000000000..fd9a16d28 --- /dev/null +++ b/src/IconCollapseContentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollapseContentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCollapseContentOutlinedFilled as default } diff --git a/src/IconCollapseContentRoundedFilled.tsx b/src/IconCollapseContentRoundedFilled.tsx new file mode 100644 index 000000000..783b7cbaf --- /dev/null +++ b/src/IconCollapseContentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollapseContentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCollapseContentRoundedFilled as default } diff --git a/src/IconCollapseContentSharpFilled.tsx b/src/IconCollapseContentSharpFilled.tsx new file mode 100644 index 000000000..d7d1e2ae8 --- /dev/null +++ b/src/IconCollapseContentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollapseContentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCollapseContentSharpFilled as default } diff --git a/src/IconCollectionsBookmarkOutlinedFilled.tsx b/src/IconCollectionsBookmarkOutlinedFilled.tsx new file mode 100644 index 000000000..fb1f9e3fd --- /dev/null +++ b/src/IconCollectionsBookmarkOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCollectionsBookmarkOutlinedFilled as default } diff --git a/src/IconCollectionsBookmarkRoundedFilled.tsx b/src/IconCollectionsBookmarkRoundedFilled.tsx new file mode 100644 index 000000000..ea00841af --- /dev/null +++ b/src/IconCollectionsBookmarkRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCollectionsBookmarkRoundedFilled as default } diff --git a/src/IconCollectionsBookmarkSharpFilled.tsx b/src/IconCollectionsBookmarkSharpFilled.tsx new file mode 100644 index 000000000..7a7a8e6b5 --- /dev/null +++ b/src/IconCollectionsBookmarkSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCollectionsBookmarkSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCollectionsBookmarkSharpFilled as default } diff --git a/src/IconColorizeOutlinedFilled.tsx b/src/IconColorizeOutlinedFilled.tsx new file mode 100644 index 000000000..8e81abdd9 --- /dev/null +++ b/src/IconColorizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconColorizeOutlinedFilled as default } diff --git a/src/IconColorizeRoundedFilled.tsx b/src/IconColorizeRoundedFilled.tsx new file mode 100644 index 000000000..17bd9063a --- /dev/null +++ b/src/IconColorizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconColorizeRoundedFilled as default } diff --git a/src/IconColorizeSharpFilled.tsx b/src/IconColorizeSharpFilled.tsx new file mode 100644 index 000000000..243adca41 --- /dev/null +++ b/src/IconColorizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconColorizeSharpFilled as default } diff --git a/src/IconColorsOutlinedFilled.tsx b/src/IconColorsOutlinedFilled.tsx new file mode 100644 index 000000000..6a5fcc769 --- /dev/null +++ b/src/IconColorsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconColorsOutlinedFilled as default } diff --git a/src/IconColorsRoundedFilled.tsx b/src/IconColorsRoundedFilled.tsx new file mode 100644 index 000000000..d990e48ff --- /dev/null +++ b/src/IconColorsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconColorsRoundedFilled as default } diff --git a/src/IconColorsSharpFilled.tsx b/src/IconColorsSharpFilled.tsx new file mode 100644 index 000000000..9146a0d65 --- /dev/null +++ b/src/IconColorsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconColorsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconColorsSharpFilled as default } diff --git a/src/IconCombineColumnsOutlinedFilled.tsx b/src/IconCombineColumnsOutlinedFilled.tsx new file mode 100644 index 000000000..e0db6db68 --- /dev/null +++ b/src/IconCombineColumnsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCombineColumnsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCombineColumnsOutlinedFilled as default } diff --git a/src/IconCombineColumnsRoundedFilled.tsx b/src/IconCombineColumnsRoundedFilled.tsx new file mode 100644 index 000000000..ef9240aed --- /dev/null +++ b/src/IconCombineColumnsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCombineColumnsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCombineColumnsRoundedFilled as default } diff --git a/src/IconCombineColumnsSharpFilled.tsx b/src/IconCombineColumnsSharpFilled.tsx new file mode 100644 index 000000000..d52da8ce5 --- /dev/null +++ b/src/IconCombineColumnsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCombineColumnsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCombineColumnsSharpFilled as default } diff --git a/src/IconComedyMaskOutlinedFilled.tsx b/src/IconComedyMaskOutlinedFilled.tsx new file mode 100644 index 000000000..36f9e7675 --- /dev/null +++ b/src/IconComedyMaskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComedyMaskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComedyMaskOutlinedFilled as default } diff --git a/src/IconComedyMaskRoundedFilled.tsx b/src/IconComedyMaskRoundedFilled.tsx new file mode 100644 index 000000000..60fd18bf9 --- /dev/null +++ b/src/IconComedyMaskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComedyMaskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComedyMaskRoundedFilled as default } diff --git a/src/IconComedyMaskSharpFilled.tsx b/src/IconComedyMaskSharpFilled.tsx new file mode 100644 index 000000000..c3314cf86 --- /dev/null +++ b/src/IconComedyMaskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComedyMaskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComedyMaskSharpFilled as default } diff --git a/src/IconComicBubbleOutlinedFilled.tsx b/src/IconComicBubbleOutlinedFilled.tsx new file mode 100644 index 000000000..36e3cb63f --- /dev/null +++ b/src/IconComicBubbleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComicBubbleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComicBubbleOutlinedFilled as default } diff --git a/src/IconComicBubbleRoundedFilled.tsx b/src/IconComicBubbleRoundedFilled.tsx new file mode 100644 index 000000000..997967881 --- /dev/null +++ b/src/IconComicBubbleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComicBubbleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComicBubbleRoundedFilled as default } diff --git a/src/IconComicBubbleSharpFilled.tsx b/src/IconComicBubbleSharpFilled.tsx new file mode 100644 index 000000000..b89e7b62d --- /dev/null +++ b/src/IconComicBubbleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComicBubbleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComicBubbleSharpFilled as default } diff --git a/src/IconCommentBankOutlinedFilled.tsx b/src/IconCommentBankOutlinedFilled.tsx new file mode 100644 index 000000000..a39b42d84 --- /dev/null +++ b/src/IconCommentBankOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentBankOutlinedFilled as default } diff --git a/src/IconCommentBankRoundedFilled.tsx b/src/IconCommentBankRoundedFilled.tsx new file mode 100644 index 000000000..db6f66f2b --- /dev/null +++ b/src/IconCommentBankRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentBankRoundedFilled as default } diff --git a/src/IconCommentBankSharpFilled.tsx b/src/IconCommentBankSharpFilled.tsx new file mode 100644 index 000000000..2667c0210 --- /dev/null +++ b/src/IconCommentBankSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentBankSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentBankSharpFilled as default } diff --git a/src/IconCommentOutlinedFilled.tsx b/src/IconCommentOutlinedFilled.tsx new file mode 100644 index 000000000..645db1598 --- /dev/null +++ b/src/IconCommentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentOutlinedFilled as default } diff --git a/src/IconCommentRoundedFilled.tsx b/src/IconCommentRoundedFilled.tsx new file mode 100644 index 000000000..0fd1ad6c3 --- /dev/null +++ b/src/IconCommentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentRoundedFilled as default } diff --git a/src/IconCommentSharpFilled.tsx b/src/IconCommentSharpFilled.tsx new file mode 100644 index 000000000..3e7b89b4d --- /dev/null +++ b/src/IconCommentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentSharpFilled as default } diff --git a/src/IconCommentsDisabledOutlinedFilled.tsx b/src/IconCommentsDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..2c0d476ab --- /dev/null +++ b/src/IconCommentsDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentsDisabledOutlinedFilled as default } diff --git a/src/IconCommentsDisabledRoundedFilled.tsx b/src/IconCommentsDisabledRoundedFilled.tsx new file mode 100644 index 000000000..e55c99281 --- /dev/null +++ b/src/IconCommentsDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentsDisabledRoundedFilled as default } diff --git a/src/IconCommentsDisabledSharpFilled.tsx b/src/IconCommentsDisabledSharpFilled.tsx new file mode 100644 index 000000000..e86476293 --- /dev/null +++ b/src/IconCommentsDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommentsDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommentsDisabledSharpFilled as default } diff --git a/src/IconCommitOutlinedFilled.tsx b/src/IconCommitOutlinedFilled.tsx new file mode 100644 index 000000000..8780e3058 --- /dev/null +++ b/src/IconCommitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommitOutlinedFilled as default } diff --git a/src/IconCommitRoundedFilled.tsx b/src/IconCommitRoundedFilled.tsx new file mode 100644 index 000000000..a2c0f5dfe --- /dev/null +++ b/src/IconCommitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommitRoundedFilled as default } diff --git a/src/IconCommitSharpFilled.tsx b/src/IconCommitSharpFilled.tsx new file mode 100644 index 000000000..922cdfd20 --- /dev/null +++ b/src/IconCommitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommitSharpFilled as default } diff --git a/src/IconCommunicationOutlinedFilled.tsx b/src/IconCommunicationOutlinedFilled.tsx new file mode 100644 index 000000000..e89dd4d1a --- /dev/null +++ b/src/IconCommunicationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommunicationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommunicationOutlinedFilled as default } diff --git a/src/IconCommunicationRoundedFilled.tsx b/src/IconCommunicationRoundedFilled.tsx new file mode 100644 index 000000000..3cecd2c5f --- /dev/null +++ b/src/IconCommunicationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommunicationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommunicationRoundedFilled as default } diff --git a/src/IconCommunicationSharpFilled.tsx b/src/IconCommunicationSharpFilled.tsx new file mode 100644 index 000000000..07773cf90 --- /dev/null +++ b/src/IconCommunicationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommunicationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommunicationSharpFilled as default } diff --git a/src/IconCommunitiesOutlinedFilled.tsx b/src/IconCommunitiesOutlinedFilled.tsx new file mode 100644 index 000000000..1cce85eb5 --- /dev/null +++ b/src/IconCommunitiesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommunitiesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommunitiesOutlinedFilled as default } diff --git a/src/IconCommunitiesRoundedFilled.tsx b/src/IconCommunitiesRoundedFilled.tsx new file mode 100644 index 000000000..299232791 --- /dev/null +++ b/src/IconCommunitiesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommunitiesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommunitiesRoundedFilled as default } diff --git a/src/IconCommunitiesSharpFilled.tsx b/src/IconCommunitiesSharpFilled.tsx new file mode 100644 index 000000000..c3a996516 --- /dev/null +++ b/src/IconCommunitiesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommunitiesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommunitiesSharpFilled as default } diff --git a/src/IconCommuteOutlinedFilled.tsx b/src/IconCommuteOutlinedFilled.tsx new file mode 100644 index 000000000..cea99717b --- /dev/null +++ b/src/IconCommuteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommuteOutlinedFilled as default } diff --git a/src/IconCommuteRoundedFilled.tsx b/src/IconCommuteRoundedFilled.tsx new file mode 100644 index 000000000..006f563bb --- /dev/null +++ b/src/IconCommuteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommuteRoundedFilled as default } diff --git a/src/IconCommuteSharpFilled.tsx b/src/IconCommuteSharpFilled.tsx new file mode 100644 index 000000000..5f452a6b8 --- /dev/null +++ b/src/IconCommuteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCommuteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCommuteSharpFilled as default } diff --git a/src/IconCompareArrowsOutlinedFilled.tsx b/src/IconCompareArrowsOutlinedFilled.tsx new file mode 100644 index 000000000..c2ccaf7e2 --- /dev/null +++ b/src/IconCompareArrowsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompareArrowsOutlinedFilled as default } diff --git a/src/IconCompareArrowsRoundedFilled.tsx b/src/IconCompareArrowsRoundedFilled.tsx new file mode 100644 index 000000000..aff7b979b --- /dev/null +++ b/src/IconCompareArrowsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompareArrowsRoundedFilled as default } diff --git a/src/IconCompareArrowsSharpFilled.tsx b/src/IconCompareArrowsSharpFilled.tsx new file mode 100644 index 000000000..bfbc532e7 --- /dev/null +++ b/src/IconCompareArrowsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareArrowsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompareArrowsSharpFilled as default } diff --git a/src/IconCompareOutlinedFilled.tsx b/src/IconCompareOutlinedFilled.tsx new file mode 100644 index 000000000..ea4f10028 --- /dev/null +++ b/src/IconCompareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompareOutlinedFilled as default } diff --git a/src/IconCompareRoundedFilled.tsx b/src/IconCompareRoundedFilled.tsx new file mode 100644 index 000000000..b1aa7cd24 --- /dev/null +++ b/src/IconCompareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompareRoundedFilled as default } diff --git a/src/IconCompareSharpFilled.tsx b/src/IconCompareSharpFilled.tsx new file mode 100644 index 000000000..7caef001d --- /dev/null +++ b/src/IconCompareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompareSharpFilled as default } diff --git a/src/IconCompassCalibrationOutlinedFilled.tsx b/src/IconCompassCalibrationOutlinedFilled.tsx new file mode 100644 index 000000000..2d73da41a --- /dev/null +++ b/src/IconCompassCalibrationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCompassCalibrationOutlinedFilled as default } diff --git a/src/IconCompassCalibrationRoundedFilled.tsx b/src/IconCompassCalibrationRoundedFilled.tsx new file mode 100644 index 000000000..49e774cec --- /dev/null +++ b/src/IconCompassCalibrationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCompassCalibrationRoundedFilled as default } diff --git a/src/IconCompassCalibrationSharpFilled.tsx b/src/IconCompassCalibrationSharpFilled.tsx new file mode 100644 index 000000000..518bdd1ad --- /dev/null +++ b/src/IconCompassCalibrationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompassCalibrationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCompassCalibrationSharpFilled as default } diff --git a/src/IconComponentExchangeOutlinedFilled.tsx b/src/IconComponentExchangeOutlinedFilled.tsx new file mode 100644 index 000000000..1071269b7 --- /dev/null +++ b/src/IconComponentExchangeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComponentExchangeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconComponentExchangeOutlinedFilled as default } diff --git a/src/IconComponentExchangeRoundedFilled.tsx b/src/IconComponentExchangeRoundedFilled.tsx new file mode 100644 index 000000000..e8c663103 --- /dev/null +++ b/src/IconComponentExchangeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComponentExchangeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconComponentExchangeRoundedFilled as default } diff --git a/src/IconComponentExchangeSharpFilled.tsx b/src/IconComponentExchangeSharpFilled.tsx new file mode 100644 index 000000000..06baaa45e --- /dev/null +++ b/src/IconComponentExchangeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComponentExchangeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconComponentExchangeSharpFilled as default } diff --git a/src/IconCompostOutlinedFilled.tsx b/src/IconCompostOutlinedFilled.tsx new file mode 100644 index 000000000..1da11063b --- /dev/null +++ b/src/IconCompostOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompostOutlinedFilled as default } diff --git a/src/IconCompostRoundedFilled.tsx b/src/IconCompostRoundedFilled.tsx new file mode 100644 index 000000000..18872f4d0 --- /dev/null +++ b/src/IconCompostRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompostRoundedFilled as default } diff --git a/src/IconCompostSharpFilled.tsx b/src/IconCompostSharpFilled.tsx new file mode 100644 index 000000000..5882dd3cd --- /dev/null +++ b/src/IconCompostSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompostSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompostSharpFilled as default } diff --git a/src/IconCompressOutlinedFilled.tsx b/src/IconCompressOutlinedFilled.tsx new file mode 100644 index 000000000..0c04c58fa --- /dev/null +++ b/src/IconCompressOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompressOutlinedFilled as default } diff --git a/src/IconCompressRoundedFilled.tsx b/src/IconCompressRoundedFilled.tsx new file mode 100644 index 000000000..70436c805 --- /dev/null +++ b/src/IconCompressRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompressRoundedFilled as default } diff --git a/src/IconCompressSharpFilled.tsx b/src/IconCompressSharpFilled.tsx new file mode 100644 index 000000000..9d7381ba5 --- /dev/null +++ b/src/IconCompressSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCompressSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCompressSharpFilled as default } diff --git a/src/IconComputerOutlinedFilled.tsx b/src/IconComputerOutlinedFilled.tsx new file mode 100644 index 000000000..b5781b62e --- /dev/null +++ b/src/IconComputerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComputerOutlinedFilled as default } diff --git a/src/IconComputerRoundedFilled.tsx b/src/IconComputerRoundedFilled.tsx new file mode 100644 index 000000000..80fb3c1f0 --- /dev/null +++ b/src/IconComputerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComputerRoundedFilled as default } diff --git a/src/IconComputerSharpFilled.tsx b/src/IconComputerSharpFilled.tsx new file mode 100644 index 000000000..11aa48dc3 --- /dev/null +++ b/src/IconComputerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconComputerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconComputerSharpFilled as default } diff --git a/src/IconConciergeOutlinedFilled.tsx b/src/IconConciergeOutlinedFilled.tsx new file mode 100644 index 000000000..492c2435d --- /dev/null +++ b/src/IconConciergeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConciergeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConciergeOutlinedFilled as default } diff --git a/src/IconConciergeRoundedFilled.tsx b/src/IconConciergeRoundedFilled.tsx new file mode 100644 index 000000000..03561fd02 --- /dev/null +++ b/src/IconConciergeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConciergeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConciergeRoundedFilled as default } diff --git a/src/IconConciergeSharpFilled.tsx b/src/IconConciergeSharpFilled.tsx new file mode 100644 index 000000000..bdb9fd43d --- /dev/null +++ b/src/IconConciergeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConciergeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConciergeSharpFilled as default } diff --git a/src/IconConditionsOutlinedFilled.tsx b/src/IconConditionsOutlinedFilled.tsx new file mode 100644 index 000000000..78190387c --- /dev/null +++ b/src/IconConditionsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConditionsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConditionsOutlinedFilled as default } diff --git a/src/IconConditionsRoundedFilled.tsx b/src/IconConditionsRoundedFilled.tsx new file mode 100644 index 000000000..f1e5a5e76 --- /dev/null +++ b/src/IconConditionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConditionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConditionsRoundedFilled as default } diff --git a/src/IconConditionsSharpFilled.tsx b/src/IconConditionsSharpFilled.tsx new file mode 100644 index 000000000..0c2dfcde3 --- /dev/null +++ b/src/IconConditionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConditionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConditionsSharpFilled as default } diff --git a/src/IconConfirmationNumberOutlinedFilled.tsx b/src/IconConfirmationNumberOutlinedFilled.tsx new file mode 100644 index 000000000..f394b7643 --- /dev/null +++ b/src/IconConfirmationNumberOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConfirmationNumberOutlinedFilled as default } diff --git a/src/IconConfirmationNumberRoundedFilled.tsx b/src/IconConfirmationNumberRoundedFilled.tsx new file mode 100644 index 000000000..95d7576e7 --- /dev/null +++ b/src/IconConfirmationNumberRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConfirmationNumberRoundedFilled as default } diff --git a/src/IconConfirmationNumberSharpFilled.tsx b/src/IconConfirmationNumberSharpFilled.tsx new file mode 100644 index 000000000..7162b1d67 --- /dev/null +++ b/src/IconConfirmationNumberSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConfirmationNumberSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConfirmationNumberSharpFilled as default } diff --git a/src/IconCongenitalOutlinedFilled.tsx b/src/IconCongenitalOutlinedFilled.tsx new file mode 100644 index 000000000..cabad9f2a --- /dev/null +++ b/src/IconCongenitalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCongenitalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCongenitalOutlinedFilled as default } diff --git a/src/IconCongenitalRoundedFilled.tsx b/src/IconCongenitalRoundedFilled.tsx new file mode 100644 index 000000000..55eccb275 --- /dev/null +++ b/src/IconCongenitalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCongenitalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCongenitalRoundedFilled as default } diff --git a/src/IconCongenitalSharpFilled.tsx b/src/IconCongenitalSharpFilled.tsx new file mode 100644 index 000000000..457820658 --- /dev/null +++ b/src/IconCongenitalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCongenitalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCongenitalSharpFilled as default } diff --git a/src/IconConnectWithoutContactOutlinedFilled.tsx b/src/IconConnectWithoutContactOutlinedFilled.tsx new file mode 100644 index 000000000..eccebc231 --- /dev/null +++ b/src/IconConnectWithoutContactOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectWithoutContactOutlinedFilled as default } diff --git a/src/IconConnectWithoutContactRoundedFilled.tsx b/src/IconConnectWithoutContactRoundedFilled.tsx new file mode 100644 index 000000000..4ba10bde1 --- /dev/null +++ b/src/IconConnectWithoutContactRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectWithoutContactRoundedFilled as default } diff --git a/src/IconConnectWithoutContactSharpFilled.tsx b/src/IconConnectWithoutContactSharpFilled.tsx new file mode 100644 index 000000000..9822ee462 --- /dev/null +++ b/src/IconConnectWithoutContactSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectWithoutContactSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectWithoutContactSharpFilled as default } diff --git a/src/IconConnectedTvOutlinedFilled.tsx b/src/IconConnectedTvOutlinedFilled.tsx new file mode 100644 index 000000000..2d5103853 --- /dev/null +++ b/src/IconConnectedTvOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectedTvOutlinedFilled as default } diff --git a/src/IconConnectedTvRoundedFilled.tsx b/src/IconConnectedTvRoundedFilled.tsx new file mode 100644 index 000000000..fd7e55319 --- /dev/null +++ b/src/IconConnectedTvRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectedTvRoundedFilled as default } diff --git a/src/IconConnectedTvSharpFilled.tsx b/src/IconConnectedTvSharpFilled.tsx new file mode 100644 index 000000000..b3bf14593 --- /dev/null +++ b/src/IconConnectedTvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectedTvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectedTvSharpFilled as default } diff --git a/src/IconConnectingAirportsOutlinedFilled.tsx b/src/IconConnectingAirportsOutlinedFilled.tsx new file mode 100644 index 000000000..9749e243a --- /dev/null +++ b/src/IconConnectingAirportsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectingAirportsOutlinedFilled as default } diff --git a/src/IconConnectingAirportsRoundedFilled.tsx b/src/IconConnectingAirportsRoundedFilled.tsx new file mode 100644 index 000000000..4cc828467 --- /dev/null +++ b/src/IconConnectingAirportsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectingAirportsRoundedFilled as default } diff --git a/src/IconConnectingAirportsSharpFilled.tsx b/src/IconConnectingAirportsSharpFilled.tsx new file mode 100644 index 000000000..8ab9dc404 --- /dev/null +++ b/src/IconConnectingAirportsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConnectingAirportsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConnectingAirportsSharpFilled as default } diff --git a/src/IconConstructionOutlinedFilled.tsx b/src/IconConstructionOutlinedFilled.tsx new file mode 100644 index 000000000..6df8159fa --- /dev/null +++ b/src/IconConstructionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConstructionOutlinedFilled as default } diff --git a/src/IconConstructionRoundedFilled.tsx b/src/IconConstructionRoundedFilled.tsx new file mode 100644 index 000000000..bbe17d709 --- /dev/null +++ b/src/IconConstructionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConstructionRoundedFilled as default } diff --git a/src/IconConstructionSharpFilled.tsx b/src/IconConstructionSharpFilled.tsx new file mode 100644 index 000000000..22bc68737 --- /dev/null +++ b/src/IconConstructionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConstructionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConstructionSharpFilled as default } diff --git a/src/IconContactEmergencyOutlinedFilled.tsx b/src/IconContactEmergencyOutlinedFilled.tsx new file mode 100644 index 000000000..bd75e5007 --- /dev/null +++ b/src/IconContactEmergencyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContactEmergencyOutlinedFilled as default } diff --git a/src/IconContactEmergencyRoundedFilled.tsx b/src/IconContactEmergencyRoundedFilled.tsx new file mode 100644 index 000000000..0ce4edc0b --- /dev/null +++ b/src/IconContactEmergencyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContactEmergencyRoundedFilled as default } diff --git a/src/IconContactEmergencySharpFilled.tsx b/src/IconContactEmergencySharpFilled.tsx new file mode 100644 index 000000000..c320e5b26 --- /dev/null +++ b/src/IconContactEmergencySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactEmergencySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactEmergencySharpFilled as default } diff --git a/src/IconContactMailOutlinedFilled.tsx b/src/IconContactMailOutlinedFilled.tsx new file mode 100644 index 000000000..22cfc3348 --- /dev/null +++ b/src/IconContactMailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactMailOutlinedFilled as default } diff --git a/src/IconContactMailRoundedFilled.tsx b/src/IconContactMailRoundedFilled.tsx new file mode 100644 index 000000000..de9b6b2f1 --- /dev/null +++ b/src/IconContactMailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactMailRoundedFilled as default } diff --git a/src/IconContactMailSharpFilled.tsx b/src/IconContactMailSharpFilled.tsx new file mode 100644 index 000000000..eb5f6aa0a --- /dev/null +++ b/src/IconContactMailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactMailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactMailSharpFilled as default } diff --git a/src/IconContactPageOutlinedFilled.tsx b/src/IconContactPageOutlinedFilled.tsx new file mode 100644 index 000000000..c7c20f2b2 --- /dev/null +++ b/src/IconContactPageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactPageOutlinedFilled as default } diff --git a/src/IconContactPageRoundedFilled.tsx b/src/IconContactPageRoundedFilled.tsx new file mode 100644 index 000000000..539861bb7 --- /dev/null +++ b/src/IconContactPageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactPageRoundedFilled as default } diff --git a/src/IconContactPageSharpFilled.tsx b/src/IconContactPageSharpFilled.tsx new file mode 100644 index 000000000..765220b12 --- /dev/null +++ b/src/IconContactPageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactPageSharpFilled as default } diff --git a/src/IconContactPhoneOutlinedFilled.tsx b/src/IconContactPhoneOutlinedFilled.tsx new file mode 100644 index 000000000..f753abbdf --- /dev/null +++ b/src/IconContactPhoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactPhoneOutlinedFilled as default } diff --git a/src/IconContactPhoneRoundedFilled.tsx b/src/IconContactPhoneRoundedFilled.tsx new file mode 100644 index 000000000..00b99d082 --- /dev/null +++ b/src/IconContactPhoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactPhoneRoundedFilled as default } diff --git a/src/IconContactPhoneSharpFilled.tsx b/src/IconContactPhoneSharpFilled.tsx new file mode 100644 index 000000000..402e914b3 --- /dev/null +++ b/src/IconContactPhoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactPhoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactPhoneSharpFilled as default } diff --git a/src/IconContactSupportOutlinedFilled.tsx b/src/IconContactSupportOutlinedFilled.tsx new file mode 100644 index 000000000..82671f9a9 --- /dev/null +++ b/src/IconContactSupportOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContactSupportOutlinedFilled as default } diff --git a/src/IconContactSupportRoundedFilled.tsx b/src/IconContactSupportRoundedFilled.tsx new file mode 100644 index 000000000..3f3675cbe --- /dev/null +++ b/src/IconContactSupportRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactSupportRoundedFilled as default } diff --git a/src/IconContactSupportSharpFilled.tsx b/src/IconContactSupportSharpFilled.tsx new file mode 100644 index 000000000..647f88302 --- /dev/null +++ b/src/IconContactSupportSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactSupportSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactSupportSharpFilled as default } diff --git a/src/IconContactlessOffOutlinedFilled.tsx b/src/IconContactlessOffOutlinedFilled.tsx new file mode 100644 index 000000000..ff9d563b3 --- /dev/null +++ b/src/IconContactlessOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContactlessOffOutlinedFilled as default } diff --git a/src/IconContactlessOffRoundedFilled.tsx b/src/IconContactlessOffRoundedFilled.tsx new file mode 100644 index 000000000..5e8784612 --- /dev/null +++ b/src/IconContactlessOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactlessOffRoundedFilled as default } diff --git a/src/IconContactlessOffSharpFilled.tsx b/src/IconContactlessOffSharpFilled.tsx new file mode 100644 index 000000000..17d0ac7fd --- /dev/null +++ b/src/IconContactlessOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactlessOffSharpFilled as default } diff --git a/src/IconContactlessOutlinedFilled.tsx b/src/IconContactlessOutlinedFilled.tsx new file mode 100644 index 000000000..38da0ed9e --- /dev/null +++ b/src/IconContactlessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactlessOutlinedFilled as default } diff --git a/src/IconContactlessRoundedFilled.tsx b/src/IconContactlessRoundedFilled.tsx new file mode 100644 index 000000000..afaa0390c --- /dev/null +++ b/src/IconContactlessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactlessRoundedFilled as default } diff --git a/src/IconContactlessSharpFilled.tsx b/src/IconContactlessSharpFilled.tsx new file mode 100644 index 000000000..682180f39 --- /dev/null +++ b/src/IconContactlessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactlessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactlessSharpFilled as default } diff --git a/src/IconContactsOutlinedFilled.tsx b/src/IconContactsOutlinedFilled.tsx new file mode 100644 index 000000000..03241adf4 --- /dev/null +++ b/src/IconContactsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactsOutlinedFilled as default } diff --git a/src/IconContactsProductOutlinedFilled.tsx b/src/IconContactsProductOutlinedFilled.tsx new file mode 100644 index 000000000..f0c2fa130 --- /dev/null +++ b/src/IconContactsProductOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsProductOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContactsProductOutlinedFilled as default } diff --git a/src/IconContactsProductRoundedFilled.tsx b/src/IconContactsProductRoundedFilled.tsx new file mode 100644 index 000000000..f8bebf1d3 --- /dev/null +++ b/src/IconContactsProductRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsProductRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContactsProductRoundedFilled as default } diff --git a/src/IconContactsProductSharpFilled.tsx b/src/IconContactsProductSharpFilled.tsx new file mode 100644 index 000000000..08b94d2df --- /dev/null +++ b/src/IconContactsProductSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsProductSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactsProductSharpFilled as default } diff --git a/src/IconContactsRoundedFilled.tsx b/src/IconContactsRoundedFilled.tsx new file mode 100644 index 000000000..fd671819a --- /dev/null +++ b/src/IconContactsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactsRoundedFilled as default } diff --git a/src/IconContactsSharpFilled.tsx b/src/IconContactsSharpFilled.tsx new file mode 100644 index 000000000..ce5ede4fb --- /dev/null +++ b/src/IconContactsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContactsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContactsSharpFilled as default } diff --git a/src/IconContentCopyOutlinedFilled.tsx b/src/IconContentCopyOutlinedFilled.tsx new file mode 100644 index 000000000..d01083849 --- /dev/null +++ b/src/IconContentCopyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentCopyOutlinedFilled as default } diff --git a/src/IconContentCopyRoundedFilled.tsx b/src/IconContentCopyRoundedFilled.tsx new file mode 100644 index 000000000..60f0a9c8a --- /dev/null +++ b/src/IconContentCopyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentCopyRoundedFilled as default } diff --git a/src/IconContentCopySharpFilled.tsx b/src/IconContentCopySharpFilled.tsx new file mode 100644 index 000000000..73b4e0606 --- /dev/null +++ b/src/IconContentCopySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCopySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentCopySharpFilled as default } diff --git a/src/IconContentCutOutlinedFilled.tsx b/src/IconContentCutOutlinedFilled.tsx new file mode 100644 index 000000000..15bfc4d97 --- /dev/null +++ b/src/IconContentCutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentCutOutlinedFilled as default } diff --git a/src/IconContentCutRoundedFilled.tsx b/src/IconContentCutRoundedFilled.tsx new file mode 100644 index 000000000..7bbc684f2 --- /dev/null +++ b/src/IconContentCutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentCutRoundedFilled as default } diff --git a/src/IconContentCutSharpFilled.tsx b/src/IconContentCutSharpFilled.tsx new file mode 100644 index 000000000..9d714a408 --- /dev/null +++ b/src/IconContentCutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentCutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentCutSharpFilled as default } diff --git a/src/IconContentPasteGoOutlinedFilled.tsx b/src/IconContentPasteGoOutlinedFilled.tsx new file mode 100644 index 000000000..8b8b3daed --- /dev/null +++ b/src/IconContentPasteGoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteGoOutlinedFilled as default } diff --git a/src/IconContentPasteGoRoundedFilled.tsx b/src/IconContentPasteGoRoundedFilled.tsx new file mode 100644 index 000000000..c520864e1 --- /dev/null +++ b/src/IconContentPasteGoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteGoRoundedFilled as default } diff --git a/src/IconContentPasteGoSharpFilled.tsx b/src/IconContentPasteGoSharpFilled.tsx new file mode 100644 index 000000000..022af4892 --- /dev/null +++ b/src/IconContentPasteGoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteGoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteGoSharpFilled as default } diff --git a/src/IconContentPasteOffOutlinedFilled.tsx b/src/IconContentPasteOffOutlinedFilled.tsx new file mode 100644 index 000000000..6fc43c526 --- /dev/null +++ b/src/IconContentPasteOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteOffOutlinedFilled as default } diff --git a/src/IconContentPasteOffRoundedFilled.tsx b/src/IconContentPasteOffRoundedFilled.tsx new file mode 100644 index 000000000..56f3b14e9 --- /dev/null +++ b/src/IconContentPasteOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteOffRoundedFilled as default } diff --git a/src/IconContentPasteOffSharpFilled.tsx b/src/IconContentPasteOffSharpFilled.tsx new file mode 100644 index 000000000..c49c6c614 --- /dev/null +++ b/src/IconContentPasteOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteOffSharpFilled as default } diff --git a/src/IconContentPasteOutlinedFilled.tsx b/src/IconContentPasteOutlinedFilled.tsx new file mode 100644 index 000000000..ae4872f4a --- /dev/null +++ b/src/IconContentPasteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteOutlinedFilled as default } diff --git a/src/IconContentPasteRoundedFilled.tsx b/src/IconContentPasteRoundedFilled.tsx new file mode 100644 index 000000000..eb33e97c7 --- /dev/null +++ b/src/IconContentPasteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteRoundedFilled as default } diff --git a/src/IconContentPasteSearchOutlinedFilled.tsx b/src/IconContentPasteSearchOutlinedFilled.tsx new file mode 100644 index 000000000..143b440cd --- /dev/null +++ b/src/IconContentPasteSearchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteSearchOutlinedFilled as default } diff --git a/src/IconContentPasteSearchRoundedFilled.tsx b/src/IconContentPasteSearchRoundedFilled.tsx new file mode 100644 index 000000000..64a0e9c83 --- /dev/null +++ b/src/IconContentPasteSearchRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteSearchRoundedFilled as default } diff --git a/src/IconContentPasteSearchSharpFilled.tsx b/src/IconContentPasteSearchSharpFilled.tsx new file mode 100644 index 000000000..a1c153f10 --- /dev/null +++ b/src/IconContentPasteSearchSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSearchSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteSearchSharpFilled as default } diff --git a/src/IconContentPasteSharpFilled.tsx b/src/IconContentPasteSharpFilled.tsx new file mode 100644 index 000000000..e522db63b --- /dev/null +++ b/src/IconContentPasteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContentPasteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContentPasteSharpFilled as default } diff --git a/src/IconContextualTokenAddOutlinedFilled.tsx b/src/IconContextualTokenAddOutlinedFilled.tsx new file mode 100644 index 000000000..18c1a5040 --- /dev/null +++ b/src/IconContextualTokenAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContextualTokenAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContextualTokenAddOutlinedFilled as default } diff --git a/src/IconContextualTokenAddRoundedFilled.tsx b/src/IconContextualTokenAddRoundedFilled.tsx new file mode 100644 index 000000000..e64f0ef5a --- /dev/null +++ b/src/IconContextualTokenAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContextualTokenAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContextualTokenAddRoundedFilled as default } diff --git a/src/IconContextualTokenAddSharpFilled.tsx b/src/IconContextualTokenAddSharpFilled.tsx new file mode 100644 index 000000000..e421702d4 --- /dev/null +++ b/src/IconContextualTokenAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContextualTokenAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContextualTokenAddSharpFilled as default } diff --git a/src/IconContextualTokenOutlinedFilled.tsx b/src/IconContextualTokenOutlinedFilled.tsx new file mode 100644 index 000000000..350c89af2 --- /dev/null +++ b/src/IconContextualTokenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContextualTokenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContextualTokenOutlinedFilled as default } diff --git a/src/IconContextualTokenRoundedFilled.tsx b/src/IconContextualTokenRoundedFilled.tsx new file mode 100644 index 000000000..1b9614594 --- /dev/null +++ b/src/IconContextualTokenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContextualTokenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContextualTokenRoundedFilled as default } diff --git a/src/IconContextualTokenSharpFilled.tsx b/src/IconContextualTokenSharpFilled.tsx new file mode 100644 index 000000000..33de89e9b --- /dev/null +++ b/src/IconContextualTokenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContextualTokenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContextualTokenSharpFilled as default } diff --git a/src/IconContractDeleteOutlinedFilled.tsx b/src/IconContractDeleteOutlinedFilled.tsx new file mode 100644 index 000000000..5410b581a --- /dev/null +++ b/src/IconContractDeleteOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractDeleteOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContractDeleteOutlinedFilled as default } diff --git a/src/IconContractDeleteRoundedFilled.tsx b/src/IconContractDeleteRoundedFilled.tsx new file mode 100644 index 000000000..c7ecf19ea --- /dev/null +++ b/src/IconContractDeleteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractDeleteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractDeleteRoundedFilled as default } diff --git a/src/IconContractDeleteSharpFilled.tsx b/src/IconContractDeleteSharpFilled.tsx new file mode 100644 index 000000000..290d3e242 --- /dev/null +++ b/src/IconContractDeleteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractDeleteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractDeleteSharpFilled as default } diff --git a/src/IconContractEditOutlinedFilled.tsx b/src/IconContractEditOutlinedFilled.tsx new file mode 100644 index 000000000..edeb80612 --- /dev/null +++ b/src/IconContractEditOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractEditOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractEditOutlinedFilled as default } diff --git a/src/IconContractEditRoundedFilled.tsx b/src/IconContractEditRoundedFilled.tsx new file mode 100644 index 000000000..a6a04f180 --- /dev/null +++ b/src/IconContractEditRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractEditRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractEditRoundedFilled as default } diff --git a/src/IconContractEditSharpFilled.tsx b/src/IconContractEditSharpFilled.tsx new file mode 100644 index 000000000..5b31441c1 --- /dev/null +++ b/src/IconContractEditSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractEditSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractEditSharpFilled as default } diff --git a/src/IconContractOutlinedFilled.tsx b/src/IconContractOutlinedFilled.tsx new file mode 100644 index 000000000..f80cef785 --- /dev/null +++ b/src/IconContractOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractOutlinedFilled as default } diff --git a/src/IconContractRoundedFilled.tsx b/src/IconContractRoundedFilled.tsx new file mode 100644 index 000000000..7d20dc3de --- /dev/null +++ b/src/IconContractRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractRoundedFilled as default } diff --git a/src/IconContractSharpFilled.tsx b/src/IconContractSharpFilled.tsx new file mode 100644 index 000000000..4dbd73038 --- /dev/null +++ b/src/IconContractSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContractSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContractSharpFilled as default } diff --git a/src/IconContrastCircleOutlinedFilled.tsx b/src/IconContrastCircleOutlinedFilled.tsx new file mode 100644 index 000000000..930c82720 --- /dev/null +++ b/src/IconContrastCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastCircleOutlinedFilled as default } diff --git a/src/IconContrastCircleRoundedFilled.tsx b/src/IconContrastCircleRoundedFilled.tsx new file mode 100644 index 000000000..9fb31c496 --- /dev/null +++ b/src/IconContrastCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastCircleRoundedFilled as default } diff --git a/src/IconContrastCircleSharpFilled.tsx b/src/IconContrastCircleSharpFilled.tsx new file mode 100644 index 000000000..ef25f4c86 --- /dev/null +++ b/src/IconContrastCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastCircleSharpFilled as default } diff --git a/src/IconContrastOutlinedFilled.tsx b/src/IconContrastOutlinedFilled.tsx new file mode 100644 index 000000000..737eaa2d9 --- /dev/null +++ b/src/IconContrastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastOutlinedFilled as default } diff --git a/src/IconContrastRoundedFilled.tsx b/src/IconContrastRoundedFilled.tsx new file mode 100644 index 000000000..b1ef43d2e --- /dev/null +++ b/src/IconContrastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastRoundedFilled as default } diff --git a/src/IconContrastRtlOffOutlinedFilled.tsx b/src/IconContrastRtlOffOutlinedFilled.tsx new file mode 100644 index 000000000..498c3ef5e --- /dev/null +++ b/src/IconContrastRtlOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastRtlOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastRtlOffOutlinedFilled as default } diff --git a/src/IconContrastRtlOffRoundedFilled.tsx b/src/IconContrastRtlOffRoundedFilled.tsx new file mode 100644 index 000000000..efa2921a7 --- /dev/null +++ b/src/IconContrastRtlOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastRtlOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastRtlOffRoundedFilled as default } diff --git a/src/IconContrastRtlOffSharpFilled.tsx b/src/IconContrastRtlOffSharpFilled.tsx new file mode 100644 index 000000000..0a8f21c1f --- /dev/null +++ b/src/IconContrastRtlOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastRtlOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastRtlOffSharpFilled as default } diff --git a/src/IconContrastSharpFilled.tsx b/src/IconContrastSharpFilled.tsx new file mode 100644 index 000000000..58a389b32 --- /dev/null +++ b/src/IconContrastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastSharpFilled as default } diff --git a/src/IconContrastSquareOutlinedFilled.tsx b/src/IconContrastSquareOutlinedFilled.tsx new file mode 100644 index 000000000..5bc699369 --- /dev/null +++ b/src/IconContrastSquareOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastSquareOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastSquareOutlinedFilled as default } diff --git a/src/IconContrastSquareRoundedFilled.tsx b/src/IconContrastSquareRoundedFilled.tsx new file mode 100644 index 000000000..342db7dc1 --- /dev/null +++ b/src/IconContrastSquareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastSquareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastSquareRoundedFilled as default } diff --git a/src/IconContrastSquareSharpFilled.tsx b/src/IconContrastSquareSharpFilled.tsx new file mode 100644 index 000000000..3f3717edf --- /dev/null +++ b/src/IconContrastSquareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconContrastSquareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconContrastSquareSharpFilled as default } diff --git a/src/IconControlCameraOutlinedFilled.tsx b/src/IconControlCameraOutlinedFilled.tsx new file mode 100644 index 000000000..cde93dd1d --- /dev/null +++ b/src/IconControlCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconControlCameraOutlinedFilled as default } diff --git a/src/IconControlCameraRoundedFilled.tsx b/src/IconControlCameraRoundedFilled.tsx new file mode 100644 index 000000000..54d2b94f7 --- /dev/null +++ b/src/IconControlCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconControlCameraRoundedFilled as default } diff --git a/src/IconControlCameraSharpFilled.tsx b/src/IconControlCameraSharpFilled.tsx new file mode 100644 index 000000000..311c85385 --- /dev/null +++ b/src/IconControlCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconControlCameraSharpFilled as default } diff --git a/src/IconControlPointDuplicateOutlinedFilled.tsx b/src/IconControlPointDuplicateOutlinedFilled.tsx new file mode 100644 index 000000000..86ba47342 --- /dev/null +++ b/src/IconControlPointDuplicateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconControlPointDuplicateOutlinedFilled as default } diff --git a/src/IconControlPointDuplicateRoundedFilled.tsx b/src/IconControlPointDuplicateRoundedFilled.tsx new file mode 100644 index 000000000..08d03a84e --- /dev/null +++ b/src/IconControlPointDuplicateRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconControlPointDuplicateRoundedFilled as default } diff --git a/src/IconControlPointDuplicateSharpFilled.tsx b/src/IconControlPointDuplicateSharpFilled.tsx new file mode 100644 index 000000000..4ff61aa0f --- /dev/null +++ b/src/IconControlPointDuplicateSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControlPointDuplicateSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconControlPointDuplicateSharpFilled as default } diff --git a/src/IconControllerGenOutlinedFilled.tsx b/src/IconControllerGenOutlinedFilled.tsx new file mode 100644 index 000000000..e8b27df9d --- /dev/null +++ b/src/IconControllerGenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControllerGenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconControllerGenOutlinedFilled as default } diff --git a/src/IconControllerGenRoundedFilled.tsx b/src/IconControllerGenRoundedFilled.tsx new file mode 100644 index 000000000..095a0da2b --- /dev/null +++ b/src/IconControllerGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControllerGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconControllerGenRoundedFilled as default } diff --git a/src/IconControllerGenSharpFilled.tsx b/src/IconControllerGenSharpFilled.tsx new file mode 100644 index 000000000..1ca9580bb --- /dev/null +++ b/src/IconControllerGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconControllerGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconControllerGenSharpFilled as default } diff --git a/src/IconConversionPathOffOutlinedFilled.tsx b/src/IconConversionPathOffOutlinedFilled.tsx new file mode 100644 index 000000000..f9ee1eb4d --- /dev/null +++ b/src/IconConversionPathOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConversionPathOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConversionPathOffOutlinedFilled as default } diff --git a/src/IconConversionPathOffRoundedFilled.tsx b/src/IconConversionPathOffRoundedFilled.tsx new file mode 100644 index 000000000..0c391b504 --- /dev/null +++ b/src/IconConversionPathOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConversionPathOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConversionPathOffRoundedFilled as default } diff --git a/src/IconConversionPathOffSharpFilled.tsx b/src/IconConversionPathOffSharpFilled.tsx new file mode 100644 index 000000000..b1d34e443 --- /dev/null +++ b/src/IconConversionPathOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConversionPathOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConversionPathOffSharpFilled as default } diff --git a/src/IconConversionPathOutlinedFilled.tsx b/src/IconConversionPathOutlinedFilled.tsx new file mode 100644 index 000000000..f1c0259a6 --- /dev/null +++ b/src/IconConversionPathOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConversionPathOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconConversionPathOutlinedFilled as default } diff --git a/src/IconConversionPathRoundedFilled.tsx b/src/IconConversionPathRoundedFilled.tsx new file mode 100644 index 000000000..6c61266db --- /dev/null +++ b/src/IconConversionPathRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConversionPathRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConversionPathRoundedFilled as default } diff --git a/src/IconConversionPathSharpFilled.tsx b/src/IconConversionPathSharpFilled.tsx new file mode 100644 index 000000000..3b170ee24 --- /dev/null +++ b/src/IconConversionPathSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConversionPathSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConversionPathSharpFilled as default } diff --git a/src/IconConvertToTextOutlinedFilled.tsx b/src/IconConvertToTextOutlinedFilled.tsx new file mode 100644 index 000000000..ba091401d --- /dev/null +++ b/src/IconConvertToTextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConvertToTextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConvertToTextOutlinedFilled as default } diff --git a/src/IconConvertToTextRoundedFilled.tsx b/src/IconConvertToTextRoundedFilled.tsx new file mode 100644 index 000000000..ba3e81756 --- /dev/null +++ b/src/IconConvertToTextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConvertToTextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConvertToTextRoundedFilled as default } diff --git a/src/IconConvertToTextSharpFilled.tsx b/src/IconConvertToTextSharpFilled.tsx new file mode 100644 index 000000000..578b516ad --- /dev/null +++ b/src/IconConvertToTextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConvertToTextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConvertToTextSharpFilled as default } diff --git a/src/IconConveyorBeltOutlinedFilled.tsx b/src/IconConveyorBeltOutlinedFilled.tsx new file mode 100644 index 000000000..f7f27b07a --- /dev/null +++ b/src/IconConveyorBeltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConveyorBeltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConveyorBeltOutlinedFilled as default } diff --git a/src/IconConveyorBeltRoundedFilled.tsx b/src/IconConveyorBeltRoundedFilled.tsx new file mode 100644 index 000000000..cf2824b6f --- /dev/null +++ b/src/IconConveyorBeltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConveyorBeltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConveyorBeltRoundedFilled as default } diff --git a/src/IconConveyorBeltSharpFilled.tsx b/src/IconConveyorBeltSharpFilled.tsx new file mode 100644 index 000000000..0102c9734 --- /dev/null +++ b/src/IconConveyorBeltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconConveyorBeltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconConveyorBeltSharpFilled as default } diff --git a/src/IconCookieOffOutlinedFilled.tsx b/src/IconCookieOffOutlinedFilled.tsx new file mode 100644 index 000000000..323dad2d3 --- /dev/null +++ b/src/IconCookieOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookieOffOutlinedFilled as default } diff --git a/src/IconCookieOffRoundedFilled.tsx b/src/IconCookieOffRoundedFilled.tsx new file mode 100644 index 000000000..8c17daeef --- /dev/null +++ b/src/IconCookieOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookieOffRoundedFilled as default } diff --git a/src/IconCookieOffSharpFilled.tsx b/src/IconCookieOffSharpFilled.tsx new file mode 100644 index 000000000..aafef8544 --- /dev/null +++ b/src/IconCookieOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookieOffSharpFilled as default } diff --git a/src/IconCookieOutlinedFilled.tsx b/src/IconCookieOutlinedFilled.tsx new file mode 100644 index 000000000..a2764cbdb --- /dev/null +++ b/src/IconCookieOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookieOutlinedFilled as default } diff --git a/src/IconCookieRoundedFilled.tsx b/src/IconCookieRoundedFilled.tsx new file mode 100644 index 000000000..39bf352d6 --- /dev/null +++ b/src/IconCookieRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookieRoundedFilled as default } diff --git a/src/IconCookieSharpFilled.tsx b/src/IconCookieSharpFilled.tsx new file mode 100644 index 000000000..80161069d --- /dev/null +++ b/src/IconCookieSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookieSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookieSharpFilled as default } diff --git a/src/IconCookingOutlinedFilled.tsx b/src/IconCookingOutlinedFilled.tsx new file mode 100644 index 000000000..983273bd7 --- /dev/null +++ b/src/IconCookingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookingOutlinedFilled as default } diff --git a/src/IconCookingRoundedFilled.tsx b/src/IconCookingRoundedFilled.tsx new file mode 100644 index 000000000..f55f564d2 --- /dev/null +++ b/src/IconCookingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookingRoundedFilled as default } diff --git a/src/IconCookingSharpFilled.tsx b/src/IconCookingSharpFilled.tsx new file mode 100644 index 000000000..7d287cc98 --- /dev/null +++ b/src/IconCookingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCookingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCookingSharpFilled as default } diff --git a/src/IconCoolToDryOutlinedFilled.tsx b/src/IconCoolToDryOutlinedFilled.tsx new file mode 100644 index 000000000..573f702e3 --- /dev/null +++ b/src/IconCoolToDryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoolToDryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoolToDryOutlinedFilled as default } diff --git a/src/IconCoolToDryRoundedFilled.tsx b/src/IconCoolToDryRoundedFilled.tsx new file mode 100644 index 000000000..97027e126 --- /dev/null +++ b/src/IconCoolToDryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoolToDryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoolToDryRoundedFilled as default } diff --git a/src/IconCoolToDrySharpFilled.tsx b/src/IconCoolToDrySharpFilled.tsx new file mode 100644 index 000000000..1b2f5bbd9 --- /dev/null +++ b/src/IconCoolToDrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoolToDrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoolToDrySharpFilled as default } diff --git a/src/IconCopyAllOutlinedFilled.tsx b/src/IconCopyAllOutlinedFilled.tsx new file mode 100644 index 000000000..7e9d5104c --- /dev/null +++ b/src/IconCopyAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCopyAllOutlinedFilled as default } diff --git a/src/IconCopyAllRoundedFilled.tsx b/src/IconCopyAllRoundedFilled.tsx new file mode 100644 index 000000000..62282ce0d --- /dev/null +++ b/src/IconCopyAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCopyAllRoundedFilled as default } diff --git a/src/IconCopyAllSharpFilled.tsx b/src/IconCopyAllSharpFilled.tsx new file mode 100644 index 000000000..ee538ee4a --- /dev/null +++ b/src/IconCopyAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCopyAllSharpFilled as default } diff --git a/src/IconCopyrightOutlinedFilled.tsx b/src/IconCopyrightOutlinedFilled.tsx new file mode 100644 index 000000000..f4aadb65d --- /dev/null +++ b/src/IconCopyrightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCopyrightOutlinedFilled as default } diff --git a/src/IconCopyrightRoundedFilled.tsx b/src/IconCopyrightRoundedFilled.tsx new file mode 100644 index 000000000..336ec24a4 --- /dev/null +++ b/src/IconCopyrightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCopyrightRoundedFilled as default } diff --git a/src/IconCopyrightSharpFilled.tsx b/src/IconCopyrightSharpFilled.tsx new file mode 100644 index 000000000..c12730084 --- /dev/null +++ b/src/IconCopyrightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCopyrightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCopyrightSharpFilled as default } diff --git a/src/IconCoronavirusOutlinedFilled.tsx b/src/IconCoronavirusOutlinedFilled.tsx new file mode 100644 index 000000000..3cd87c630 --- /dev/null +++ b/src/IconCoronavirusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoronavirusOutlinedFilled as default } diff --git a/src/IconCoronavirusRoundedFilled.tsx b/src/IconCoronavirusRoundedFilled.tsx new file mode 100644 index 000000000..1114c741d --- /dev/null +++ b/src/IconCoronavirusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoronavirusRoundedFilled as default } diff --git a/src/IconCoronavirusSharpFilled.tsx b/src/IconCoronavirusSharpFilled.tsx new file mode 100644 index 000000000..79509c829 --- /dev/null +++ b/src/IconCoronavirusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCoronavirusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCoronavirusSharpFilled as default } diff --git a/src/IconCorporateFareOutlinedFilled.tsx b/src/IconCorporateFareOutlinedFilled.tsx new file mode 100644 index 000000000..9c0d5dbf2 --- /dev/null +++ b/src/IconCorporateFareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCorporateFareOutlinedFilled as default } diff --git a/src/IconCorporateFareRoundedFilled.tsx b/src/IconCorporateFareRoundedFilled.tsx new file mode 100644 index 000000000..fe12a1bfc --- /dev/null +++ b/src/IconCorporateFareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCorporateFareRoundedFilled as default } diff --git a/src/IconCorporateFareSharpFilled.tsx b/src/IconCorporateFareSharpFilled.tsx new file mode 100644 index 000000000..9c4d115b3 --- /dev/null +++ b/src/IconCorporateFareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCorporateFareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCorporateFareSharpFilled as default } diff --git a/src/IconCottageOutlinedFilled.tsx b/src/IconCottageOutlinedFilled.tsx new file mode 100644 index 000000000..db064b9f0 --- /dev/null +++ b/src/IconCottageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCottageOutlinedFilled as default } diff --git a/src/IconCottageRoundedFilled.tsx b/src/IconCottageRoundedFilled.tsx new file mode 100644 index 000000000..c11083ba6 --- /dev/null +++ b/src/IconCottageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCottageRoundedFilled as default } diff --git a/src/IconCottageSharpFilled.tsx b/src/IconCottageSharpFilled.tsx new file mode 100644 index 000000000..4d17bd909 --- /dev/null +++ b/src/IconCottageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCottageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCottageSharpFilled as default } diff --git a/src/IconCounter0OutlinedFilled.tsx b/src/IconCounter0OutlinedFilled.tsx new file mode 100644 index 000000000..c79865723 --- /dev/null +++ b/src/IconCounter0OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter0OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter0OutlinedFilled as default } diff --git a/src/IconCounter0RoundedFilled.tsx b/src/IconCounter0RoundedFilled.tsx new file mode 100644 index 000000000..caca83edb --- /dev/null +++ b/src/IconCounter0RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter0RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter0RoundedFilled as default } diff --git a/src/IconCounter0SharpFilled.tsx b/src/IconCounter0SharpFilled.tsx new file mode 100644 index 000000000..bb3b2be71 --- /dev/null +++ b/src/IconCounter0SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter0SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter0SharpFilled as default } diff --git a/src/IconCounter1OutlinedFilled.tsx b/src/IconCounter1OutlinedFilled.tsx new file mode 100644 index 000000000..5113ffb00 --- /dev/null +++ b/src/IconCounter1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter1OutlinedFilled as default } diff --git a/src/IconCounter1RoundedFilled.tsx b/src/IconCounter1RoundedFilled.tsx new file mode 100644 index 000000000..088675600 --- /dev/null +++ b/src/IconCounter1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter1RoundedFilled as default } diff --git a/src/IconCounter1SharpFilled.tsx b/src/IconCounter1SharpFilled.tsx new file mode 100644 index 000000000..7624cc980 --- /dev/null +++ b/src/IconCounter1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter1SharpFilled as default } diff --git a/src/IconCounter2OutlinedFilled.tsx b/src/IconCounter2OutlinedFilled.tsx new file mode 100644 index 000000000..a46fca088 --- /dev/null +++ b/src/IconCounter2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter2OutlinedFilled as default } diff --git a/src/IconCounter2RoundedFilled.tsx b/src/IconCounter2RoundedFilled.tsx new file mode 100644 index 000000000..5a63a3bb9 --- /dev/null +++ b/src/IconCounter2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter2RoundedFilled as default } diff --git a/src/IconCounter2SharpFilled.tsx b/src/IconCounter2SharpFilled.tsx new file mode 100644 index 000000000..645fb560c --- /dev/null +++ b/src/IconCounter2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter2SharpFilled as default } diff --git a/src/IconCounter3OutlinedFilled.tsx b/src/IconCounter3OutlinedFilled.tsx new file mode 100644 index 000000000..d1ef02838 --- /dev/null +++ b/src/IconCounter3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter3OutlinedFilled as default } diff --git a/src/IconCounter3RoundedFilled.tsx b/src/IconCounter3RoundedFilled.tsx new file mode 100644 index 000000000..95169d0be --- /dev/null +++ b/src/IconCounter3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter3RoundedFilled as default } diff --git a/src/IconCounter3SharpFilled.tsx b/src/IconCounter3SharpFilled.tsx new file mode 100644 index 000000000..ab260020c --- /dev/null +++ b/src/IconCounter3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter3SharpFilled as default } diff --git a/src/IconCounter4OutlinedFilled.tsx b/src/IconCounter4OutlinedFilled.tsx new file mode 100644 index 000000000..767f8d723 --- /dev/null +++ b/src/IconCounter4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter4OutlinedFilled as default } diff --git a/src/IconCounter4RoundedFilled.tsx b/src/IconCounter4RoundedFilled.tsx new file mode 100644 index 000000000..e6bddea7f --- /dev/null +++ b/src/IconCounter4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter4RoundedFilled as default } diff --git a/src/IconCounter4SharpFilled.tsx b/src/IconCounter4SharpFilled.tsx new file mode 100644 index 000000000..a5c32fab6 --- /dev/null +++ b/src/IconCounter4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter4SharpFilled as default } diff --git a/src/IconCounter5OutlinedFilled.tsx b/src/IconCounter5OutlinedFilled.tsx new file mode 100644 index 000000000..332bef5b8 --- /dev/null +++ b/src/IconCounter5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter5OutlinedFilled as default } diff --git a/src/IconCounter5RoundedFilled.tsx b/src/IconCounter5RoundedFilled.tsx new file mode 100644 index 000000000..42b273dab --- /dev/null +++ b/src/IconCounter5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter5RoundedFilled as default } diff --git a/src/IconCounter5SharpFilled.tsx b/src/IconCounter5SharpFilled.tsx new file mode 100644 index 000000000..aa3574cfc --- /dev/null +++ b/src/IconCounter5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter5SharpFilled as default } diff --git a/src/IconCounter6OutlinedFilled.tsx b/src/IconCounter6OutlinedFilled.tsx new file mode 100644 index 000000000..4e44a55ed --- /dev/null +++ b/src/IconCounter6OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter6OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter6OutlinedFilled as default } diff --git a/src/IconCounter6RoundedFilled.tsx b/src/IconCounter6RoundedFilled.tsx new file mode 100644 index 000000000..de699a33d --- /dev/null +++ b/src/IconCounter6RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter6RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter6RoundedFilled as default } diff --git a/src/IconCounter6SharpFilled.tsx b/src/IconCounter6SharpFilled.tsx new file mode 100644 index 000000000..d99576a9b --- /dev/null +++ b/src/IconCounter6SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter6SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter6SharpFilled as default } diff --git a/src/IconCounter7OutlinedFilled.tsx b/src/IconCounter7OutlinedFilled.tsx new file mode 100644 index 000000000..cc25775b3 --- /dev/null +++ b/src/IconCounter7OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter7OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter7OutlinedFilled as default } diff --git a/src/IconCounter7RoundedFilled.tsx b/src/IconCounter7RoundedFilled.tsx new file mode 100644 index 000000000..da521677d --- /dev/null +++ b/src/IconCounter7RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter7RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter7RoundedFilled as default } diff --git a/src/IconCounter7SharpFilled.tsx b/src/IconCounter7SharpFilled.tsx new file mode 100644 index 000000000..b379ff45b --- /dev/null +++ b/src/IconCounter7SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter7SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter7SharpFilled as default } diff --git a/src/IconCounter8OutlinedFilled.tsx b/src/IconCounter8OutlinedFilled.tsx new file mode 100644 index 000000000..dc3562827 --- /dev/null +++ b/src/IconCounter8OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter8OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter8OutlinedFilled as default } diff --git a/src/IconCounter8RoundedFilled.tsx b/src/IconCounter8RoundedFilled.tsx new file mode 100644 index 000000000..047d6c198 --- /dev/null +++ b/src/IconCounter8RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter8RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter8RoundedFilled as default } diff --git a/src/IconCounter8SharpFilled.tsx b/src/IconCounter8SharpFilled.tsx new file mode 100644 index 000000000..f5ee29967 --- /dev/null +++ b/src/IconCounter8SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter8SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter8SharpFilled as default } diff --git a/src/IconCounter9OutlinedFilled.tsx b/src/IconCounter9OutlinedFilled.tsx new file mode 100644 index 000000000..726f736d7 --- /dev/null +++ b/src/IconCounter9OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter9OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter9OutlinedFilled as default } diff --git a/src/IconCounter9RoundedFilled.tsx b/src/IconCounter9RoundedFilled.tsx new file mode 100644 index 000000000..93afaada4 --- /dev/null +++ b/src/IconCounter9RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter9RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter9RoundedFilled as default } diff --git a/src/IconCounter9SharpFilled.tsx b/src/IconCounter9SharpFilled.tsx new file mode 100644 index 000000000..3d3b6eeac --- /dev/null +++ b/src/IconCounter9SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCounter9SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCounter9SharpFilled as default } diff --git a/src/IconCountertopsOutlinedFilled.tsx b/src/IconCountertopsOutlinedFilled.tsx new file mode 100644 index 000000000..d030c5e53 --- /dev/null +++ b/src/IconCountertopsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCountertopsOutlinedFilled as default } diff --git a/src/IconCountertopsRoundedFilled.tsx b/src/IconCountertopsRoundedFilled.tsx new file mode 100644 index 000000000..2c1e2fdbf --- /dev/null +++ b/src/IconCountertopsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCountertopsRoundedFilled as default } diff --git a/src/IconCountertopsSharpFilled.tsx b/src/IconCountertopsSharpFilled.tsx new file mode 100644 index 000000000..fa9001ce9 --- /dev/null +++ b/src/IconCountertopsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCountertopsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCountertopsSharpFilled as default } diff --git a/src/IconCreateNewFolderOutlinedFilled.tsx b/src/IconCreateNewFolderOutlinedFilled.tsx new file mode 100644 index 000000000..4469bfd81 --- /dev/null +++ b/src/IconCreateNewFolderOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreateNewFolderOutlinedFilled as default } diff --git a/src/IconCreateNewFolderRoundedFilled.tsx b/src/IconCreateNewFolderRoundedFilled.tsx new file mode 100644 index 000000000..cd94f1fbd --- /dev/null +++ b/src/IconCreateNewFolderRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreateNewFolderRoundedFilled as default } diff --git a/src/IconCreateNewFolderSharpFilled.tsx b/src/IconCreateNewFolderSharpFilled.tsx new file mode 100644 index 000000000..2576073fd --- /dev/null +++ b/src/IconCreateNewFolderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreateNewFolderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreateNewFolderSharpFilled as default } diff --git a/src/IconCreditCardClockOutlinedFilled.tsx b/src/IconCreditCardClockOutlinedFilled.tsx new file mode 100644 index 000000000..cc155331f --- /dev/null +++ b/src/IconCreditCardClockOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardClockOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardClockOutlinedFilled as default } diff --git a/src/IconCreditCardClockRoundedFilled.tsx b/src/IconCreditCardClockRoundedFilled.tsx new file mode 100644 index 000000000..f714ec71f --- /dev/null +++ b/src/IconCreditCardClockRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardClockRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardClockRoundedFilled as default } diff --git a/src/IconCreditCardClockSharpFilled.tsx b/src/IconCreditCardClockSharpFilled.tsx new file mode 100644 index 000000000..0c79debc0 --- /dev/null +++ b/src/IconCreditCardClockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardClockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardClockSharpFilled as default } diff --git a/src/IconCreditCardGearOutlinedFilled.tsx b/src/IconCreditCardGearOutlinedFilled.tsx new file mode 100644 index 000000000..2a8595e22 --- /dev/null +++ b/src/IconCreditCardGearOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardGearOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardGearOutlinedFilled as default } diff --git a/src/IconCreditCardGearRoundedFilled.tsx b/src/IconCreditCardGearRoundedFilled.tsx new file mode 100644 index 000000000..316739bf5 --- /dev/null +++ b/src/IconCreditCardGearRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardGearRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardGearRoundedFilled as default } diff --git a/src/IconCreditCardGearSharpFilled.tsx b/src/IconCreditCardGearSharpFilled.tsx new file mode 100644 index 000000000..694f93d5f --- /dev/null +++ b/src/IconCreditCardGearSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardGearSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardGearSharpFilled as default } diff --git a/src/IconCreditCardHeartOutlinedFilled.tsx b/src/IconCreditCardHeartOutlinedFilled.tsx new file mode 100644 index 000000000..499a2719e --- /dev/null +++ b/src/IconCreditCardHeartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardHeartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardHeartOutlinedFilled as default } diff --git a/src/IconCreditCardHeartRoundedFilled.tsx b/src/IconCreditCardHeartRoundedFilled.tsx new file mode 100644 index 000000000..45103985b --- /dev/null +++ b/src/IconCreditCardHeartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardHeartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardHeartRoundedFilled as default } diff --git a/src/IconCreditCardHeartSharpFilled.tsx b/src/IconCreditCardHeartSharpFilled.tsx new file mode 100644 index 000000000..e1310a24f --- /dev/null +++ b/src/IconCreditCardHeartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardHeartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardHeartSharpFilled as default } diff --git a/src/IconCreditCardOffOutlinedFilled.tsx b/src/IconCreditCardOffOutlinedFilled.tsx new file mode 100644 index 000000000..a623a0651 --- /dev/null +++ b/src/IconCreditCardOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardOffOutlinedFilled as default } diff --git a/src/IconCreditCardOffRoundedFilled.tsx b/src/IconCreditCardOffRoundedFilled.tsx new file mode 100644 index 000000000..6e3d4e112 --- /dev/null +++ b/src/IconCreditCardOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardOffRoundedFilled as default } diff --git a/src/IconCreditCardOffSharpFilled.tsx b/src/IconCreditCardOffSharpFilled.tsx new file mode 100644 index 000000000..11d632a66 --- /dev/null +++ b/src/IconCreditCardOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardOffSharpFilled as default } diff --git a/src/IconCreditCardOutlinedFilled.tsx b/src/IconCreditCardOutlinedFilled.tsx new file mode 100644 index 000000000..70b454863 --- /dev/null +++ b/src/IconCreditCardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardOutlinedFilled as default } diff --git a/src/IconCreditCardRoundedFilled.tsx b/src/IconCreditCardRoundedFilled.tsx new file mode 100644 index 000000000..44a6e84c4 --- /dev/null +++ b/src/IconCreditCardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardRoundedFilled as default } diff --git a/src/IconCreditCardSharpFilled.tsx b/src/IconCreditCardSharpFilled.tsx new file mode 100644 index 000000000..6717366f0 --- /dev/null +++ b/src/IconCreditCardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditCardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditCardSharpFilled as default } diff --git a/src/IconCreditScoreOutlinedFilled.tsx b/src/IconCreditScoreOutlinedFilled.tsx new file mode 100644 index 000000000..6027d729b --- /dev/null +++ b/src/IconCreditScoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditScoreOutlinedFilled as default } diff --git a/src/IconCreditScoreRoundedFilled.tsx b/src/IconCreditScoreRoundedFilled.tsx new file mode 100644 index 000000000..2bb2f0062 --- /dev/null +++ b/src/IconCreditScoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditScoreRoundedFilled as default } diff --git a/src/IconCreditScoreSharpFilled.tsx b/src/IconCreditScoreSharpFilled.tsx new file mode 100644 index 000000000..02b00ec21 --- /dev/null +++ b/src/IconCreditScoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCreditScoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCreditScoreSharpFilled as default } diff --git a/src/IconCribOutlinedFilled.tsx b/src/IconCribOutlinedFilled.tsx new file mode 100644 index 000000000..2cf5bdb1c --- /dev/null +++ b/src/IconCribOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCribOutlinedFilled as default } diff --git a/src/IconCribRoundedFilled.tsx b/src/IconCribRoundedFilled.tsx new file mode 100644 index 000000000..e253edd2a --- /dev/null +++ b/src/IconCribRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCribRoundedFilled as default } diff --git a/src/IconCribSharpFilled.tsx b/src/IconCribSharpFilled.tsx new file mode 100644 index 000000000..8ec010075 --- /dev/null +++ b/src/IconCribSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCribSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCribSharpFilled as default } diff --git a/src/IconCrisisAlertOutlinedFilled.tsx b/src/IconCrisisAlertOutlinedFilled.tsx new file mode 100644 index 000000000..a605828ef --- /dev/null +++ b/src/IconCrisisAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrisisAlertOutlinedFilled as default } diff --git a/src/IconCrisisAlertRoundedFilled.tsx b/src/IconCrisisAlertRoundedFilled.tsx new file mode 100644 index 000000000..fa7326034 --- /dev/null +++ b/src/IconCrisisAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrisisAlertRoundedFilled as default } diff --git a/src/IconCrisisAlertSharpFilled.tsx b/src/IconCrisisAlertSharpFilled.tsx new file mode 100644 index 000000000..2952bac3d --- /dev/null +++ b/src/IconCrisisAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrisisAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrisisAlertSharpFilled as default } diff --git a/src/IconCrop169OutlinedFilled.tsx b/src/IconCrop169OutlinedFilled.tsx new file mode 100644 index 000000000..9692d5880 --- /dev/null +++ b/src/IconCrop169OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop169OutlinedFilled as default } diff --git a/src/IconCrop169RoundedFilled.tsx b/src/IconCrop169RoundedFilled.tsx new file mode 100644 index 000000000..a89275ffd --- /dev/null +++ b/src/IconCrop169RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop169RoundedFilled as default } diff --git a/src/IconCrop169SharpFilled.tsx b/src/IconCrop169SharpFilled.tsx new file mode 100644 index 000000000..86262602f --- /dev/null +++ b/src/IconCrop169SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop169SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop169SharpFilled as default } diff --git a/src/IconCrop32OutlinedFilled.tsx b/src/IconCrop32OutlinedFilled.tsx new file mode 100644 index 000000000..c470a7e67 --- /dev/null +++ b/src/IconCrop32OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop32OutlinedFilled as default } diff --git a/src/IconCrop32RoundedFilled.tsx b/src/IconCrop32RoundedFilled.tsx new file mode 100644 index 000000000..e4d05557d --- /dev/null +++ b/src/IconCrop32RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop32RoundedFilled as default } diff --git a/src/IconCrop32SharpFilled.tsx b/src/IconCrop32SharpFilled.tsx new file mode 100644 index 000000000..c729f1ada --- /dev/null +++ b/src/IconCrop32SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop32SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop32SharpFilled as default } diff --git a/src/IconCrop54OutlinedFilled.tsx b/src/IconCrop54OutlinedFilled.tsx new file mode 100644 index 000000000..2d499227d --- /dev/null +++ b/src/IconCrop54OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop54OutlinedFilled as default } diff --git a/src/IconCrop54RoundedFilled.tsx b/src/IconCrop54RoundedFilled.tsx new file mode 100644 index 000000000..11ebc8c85 --- /dev/null +++ b/src/IconCrop54RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop54RoundedFilled as default } diff --git a/src/IconCrop54SharpFilled.tsx b/src/IconCrop54SharpFilled.tsx new file mode 100644 index 000000000..f8ac2daef --- /dev/null +++ b/src/IconCrop54SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop54SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop54SharpFilled as default } diff --git a/src/IconCrop75OutlinedFilled.tsx b/src/IconCrop75OutlinedFilled.tsx new file mode 100644 index 000000000..c13fd2ecc --- /dev/null +++ b/src/IconCrop75OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop75OutlinedFilled as default } diff --git a/src/IconCrop75RoundedFilled.tsx b/src/IconCrop75RoundedFilled.tsx new file mode 100644 index 000000000..5df3ecedb --- /dev/null +++ b/src/IconCrop75RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop75RoundedFilled as default } diff --git a/src/IconCrop75SharpFilled.tsx b/src/IconCrop75SharpFilled.tsx new file mode 100644 index 000000000..f5ac417a0 --- /dev/null +++ b/src/IconCrop75SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop75SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop75SharpFilled as default } diff --git a/src/IconCrop916OutlinedFilled.tsx b/src/IconCrop916OutlinedFilled.tsx new file mode 100644 index 000000000..70ab8a5c6 --- /dev/null +++ b/src/IconCrop916OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop916OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop916OutlinedFilled as default } diff --git a/src/IconCrop916RoundedFilled.tsx b/src/IconCrop916RoundedFilled.tsx new file mode 100644 index 000000000..e40db24fc --- /dev/null +++ b/src/IconCrop916RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop916RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop916RoundedFilled as default } diff --git a/src/IconCrop916SharpFilled.tsx b/src/IconCrop916SharpFilled.tsx new file mode 100644 index 000000000..ea2ae093a --- /dev/null +++ b/src/IconCrop916SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrop916SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrop916SharpFilled as default } diff --git a/src/IconCropFreeOutlinedFilled.tsx b/src/IconCropFreeOutlinedFilled.tsx new file mode 100644 index 000000000..e74257534 --- /dev/null +++ b/src/IconCropFreeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropFreeOutlinedFilled as default } diff --git a/src/IconCropFreeRoundedFilled.tsx b/src/IconCropFreeRoundedFilled.tsx new file mode 100644 index 000000000..d9c7dec97 --- /dev/null +++ b/src/IconCropFreeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropFreeRoundedFilled as default } diff --git a/src/IconCropFreeSharpFilled.tsx b/src/IconCropFreeSharpFilled.tsx new file mode 100644 index 000000000..615cb9bbc --- /dev/null +++ b/src/IconCropFreeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropFreeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropFreeSharpFilled as default } diff --git a/src/IconCropLandscapeOutlinedFilled.tsx b/src/IconCropLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..895b57781 --- /dev/null +++ b/src/IconCropLandscapeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropLandscapeOutlinedFilled as default } diff --git a/src/IconCropLandscapeRoundedFilled.tsx b/src/IconCropLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..c1e0d4c73 --- /dev/null +++ b/src/IconCropLandscapeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropLandscapeRoundedFilled as default } diff --git a/src/IconCropLandscapeSharpFilled.tsx b/src/IconCropLandscapeSharpFilled.tsx new file mode 100644 index 000000000..4d0a84134 --- /dev/null +++ b/src/IconCropLandscapeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropLandscapeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropLandscapeSharpFilled as default } diff --git a/src/IconCropOutlinedFilled.tsx b/src/IconCropOutlinedFilled.tsx new file mode 100644 index 000000000..703281f05 --- /dev/null +++ b/src/IconCropOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropOutlinedFilled as default } diff --git a/src/IconCropPortraitOutlinedFilled.tsx b/src/IconCropPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..5d53556be --- /dev/null +++ b/src/IconCropPortraitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropPortraitOutlinedFilled as default } diff --git a/src/IconCropPortraitRoundedFilled.tsx b/src/IconCropPortraitRoundedFilled.tsx new file mode 100644 index 000000000..3c059543f --- /dev/null +++ b/src/IconCropPortraitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropPortraitRoundedFilled as default } diff --git a/src/IconCropPortraitSharpFilled.tsx b/src/IconCropPortraitSharpFilled.tsx new file mode 100644 index 000000000..add488776 --- /dev/null +++ b/src/IconCropPortraitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropPortraitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropPortraitSharpFilled as default } diff --git a/src/IconCropRotateOutlinedFilled.tsx b/src/IconCropRotateOutlinedFilled.tsx new file mode 100644 index 000000000..a03736e1b --- /dev/null +++ b/src/IconCropRotateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropRotateOutlinedFilled as default } diff --git a/src/IconCropRotateRoundedFilled.tsx b/src/IconCropRotateRoundedFilled.tsx new file mode 100644 index 000000000..dae6a8925 --- /dev/null +++ b/src/IconCropRotateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropRotateRoundedFilled as default } diff --git a/src/IconCropRotateSharpFilled.tsx b/src/IconCropRotateSharpFilled.tsx new file mode 100644 index 000000000..a9a7256d3 --- /dev/null +++ b/src/IconCropRotateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRotateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropRotateSharpFilled as default } diff --git a/src/IconCropRoundedFilled.tsx b/src/IconCropRoundedFilled.tsx new file mode 100644 index 000000000..2bc9b79c7 --- /dev/null +++ b/src/IconCropRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropRoundedFilled as default } diff --git a/src/IconCropSharpFilled.tsx b/src/IconCropSharpFilled.tsx new file mode 100644 index 000000000..7d65149bb --- /dev/null +++ b/src/IconCropSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropSharpFilled as default } diff --git a/src/IconCropSquareOutlinedFilled.tsx b/src/IconCropSquareOutlinedFilled.tsx new file mode 100644 index 000000000..b2d54c9eb --- /dev/null +++ b/src/IconCropSquareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropSquareOutlinedFilled as default } diff --git a/src/IconCropSquareRoundedFilled.tsx b/src/IconCropSquareRoundedFilled.tsx new file mode 100644 index 000000000..2e4bbee9e --- /dev/null +++ b/src/IconCropSquareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropSquareRoundedFilled as default } diff --git a/src/IconCropSquareSharpFilled.tsx b/src/IconCropSquareSharpFilled.tsx new file mode 100644 index 000000000..ecf16fcf8 --- /dev/null +++ b/src/IconCropSquareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCropSquareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCropSquareSharpFilled as default } diff --git a/src/IconCrosswordOutlinedFilled.tsx b/src/IconCrosswordOutlinedFilled.tsx new file mode 100644 index 000000000..07cbe0d66 --- /dev/null +++ b/src/IconCrosswordOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrosswordOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrosswordOutlinedFilled as default } diff --git a/src/IconCrosswordRoundedFilled.tsx b/src/IconCrosswordRoundedFilled.tsx new file mode 100644 index 000000000..16f342e01 --- /dev/null +++ b/src/IconCrosswordRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrosswordRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrosswordRoundedFilled as default } diff --git a/src/IconCrosswordSharpFilled.tsx b/src/IconCrosswordSharpFilled.tsx new file mode 100644 index 000000000..47df8e89b --- /dev/null +++ b/src/IconCrosswordSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrosswordSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrosswordSharpFilled as default } diff --git a/src/IconCrowdsourceOutlinedFilled.tsx b/src/IconCrowdsourceOutlinedFilled.tsx new file mode 100644 index 000000000..87e9e280e --- /dev/null +++ b/src/IconCrowdsourceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrowdsourceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrowdsourceOutlinedFilled as default } diff --git a/src/IconCrowdsourceRoundedFilled.tsx b/src/IconCrowdsourceRoundedFilled.tsx new file mode 100644 index 000000000..f8ace87ff --- /dev/null +++ b/src/IconCrowdsourceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrowdsourceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrowdsourceRoundedFilled as default } diff --git a/src/IconCrowdsourceSharpFilled.tsx b/src/IconCrowdsourceSharpFilled.tsx new file mode 100644 index 000000000..36a089a83 --- /dev/null +++ b/src/IconCrowdsourceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrowdsourceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrowdsourceSharpFilled as default } diff --git a/src/IconCrueltyFreeOutlinedFilled.tsx b/src/IconCrueltyFreeOutlinedFilled.tsx new file mode 100644 index 000000000..ff851b18b --- /dev/null +++ b/src/IconCrueltyFreeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrueltyFreeOutlinedFilled as default } diff --git a/src/IconCrueltyFreeRoundedFilled.tsx b/src/IconCrueltyFreeRoundedFilled.tsx new file mode 100644 index 000000000..007a1ffa1 --- /dev/null +++ b/src/IconCrueltyFreeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrueltyFreeRoundedFilled as default } diff --git a/src/IconCrueltyFreeSharpFilled.tsx b/src/IconCrueltyFreeSharpFilled.tsx new file mode 100644 index 000000000..de10cc290 --- /dev/null +++ b/src/IconCrueltyFreeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCrueltyFreeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCrueltyFreeSharpFilled as default } diff --git a/src/IconCssOutlinedFilled.tsx b/src/IconCssOutlinedFilled.tsx new file mode 100644 index 000000000..f192dcf20 --- /dev/null +++ b/src/IconCssOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCssOutlinedFilled as default } diff --git a/src/IconCssRoundedFilled.tsx b/src/IconCssRoundedFilled.tsx new file mode 100644 index 000000000..623f1c353 --- /dev/null +++ b/src/IconCssRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCssRoundedFilled as default } diff --git a/src/IconCssSharpFilled.tsx b/src/IconCssSharpFilled.tsx new file mode 100644 index 000000000..681c0bbdc --- /dev/null +++ b/src/IconCssSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCssSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCssSharpFilled as default } diff --git a/src/IconCsvOutlinedFilled.tsx b/src/IconCsvOutlinedFilled.tsx new file mode 100644 index 000000000..d6283efc7 --- /dev/null +++ b/src/IconCsvOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCsvOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCsvOutlinedFilled as default } diff --git a/src/IconCsvRoundedFilled.tsx b/src/IconCsvRoundedFilled.tsx new file mode 100644 index 000000000..f8ab8c0d5 --- /dev/null +++ b/src/IconCsvRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCsvRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCsvRoundedFilled as default } diff --git a/src/IconCsvSharpFilled.tsx b/src/IconCsvSharpFilled.tsx new file mode 100644 index 000000000..8af35faf3 --- /dev/null +++ b/src/IconCsvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCsvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCsvSharpFilled as default } diff --git a/src/IconCurrencyBitcoinOutlinedFilled.tsx b/src/IconCurrencyBitcoinOutlinedFilled.tsx new file mode 100644 index 000000000..de058c20f --- /dev/null +++ b/src/IconCurrencyBitcoinOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyBitcoinOutlinedFilled as default } diff --git a/src/IconCurrencyBitcoinRoundedFilled.tsx b/src/IconCurrencyBitcoinRoundedFilled.tsx new file mode 100644 index 000000000..0e31f93bf --- /dev/null +++ b/src/IconCurrencyBitcoinRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyBitcoinRoundedFilled as default } diff --git a/src/IconCurrencyBitcoinSharpFilled.tsx b/src/IconCurrencyBitcoinSharpFilled.tsx new file mode 100644 index 000000000..369c349a4 --- /dev/null +++ b/src/IconCurrencyBitcoinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyBitcoinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyBitcoinSharpFilled as default } diff --git a/src/IconCurrencyExchangeOutlinedFilled.tsx b/src/IconCurrencyExchangeOutlinedFilled.tsx new file mode 100644 index 000000000..36b183de4 --- /dev/null +++ b/src/IconCurrencyExchangeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyExchangeOutlinedFilled as default } diff --git a/src/IconCurrencyExchangeRoundedFilled.tsx b/src/IconCurrencyExchangeRoundedFilled.tsx new file mode 100644 index 000000000..52b08c869 --- /dev/null +++ b/src/IconCurrencyExchangeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyExchangeRoundedFilled as default } diff --git a/src/IconCurrencyExchangeSharpFilled.tsx b/src/IconCurrencyExchangeSharpFilled.tsx new file mode 100644 index 000000000..97b6c98a5 --- /dev/null +++ b/src/IconCurrencyExchangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyExchangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyExchangeSharpFilled as default } diff --git a/src/IconCurrencyFrancOutlinedFilled.tsx b/src/IconCurrencyFrancOutlinedFilled.tsx new file mode 100644 index 000000000..e4fc855c2 --- /dev/null +++ b/src/IconCurrencyFrancOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyFrancOutlinedFilled as default } diff --git a/src/IconCurrencyFrancRoundedFilled.tsx b/src/IconCurrencyFrancRoundedFilled.tsx new file mode 100644 index 000000000..9fd7d01dc --- /dev/null +++ b/src/IconCurrencyFrancRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyFrancRoundedFilled as default } diff --git a/src/IconCurrencyFrancSharpFilled.tsx b/src/IconCurrencyFrancSharpFilled.tsx new file mode 100644 index 000000000..eaf3e1b4c --- /dev/null +++ b/src/IconCurrencyFrancSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyFrancSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyFrancSharpFilled as default } diff --git a/src/IconCurrencyLiraOutlinedFilled.tsx b/src/IconCurrencyLiraOutlinedFilled.tsx new file mode 100644 index 000000000..4b64d855c --- /dev/null +++ b/src/IconCurrencyLiraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyLiraOutlinedFilled as default } diff --git a/src/IconCurrencyLiraRoundedFilled.tsx b/src/IconCurrencyLiraRoundedFilled.tsx new file mode 100644 index 000000000..ada7d892c --- /dev/null +++ b/src/IconCurrencyLiraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyLiraRoundedFilled as default } diff --git a/src/IconCurrencyLiraSharpFilled.tsx b/src/IconCurrencyLiraSharpFilled.tsx new file mode 100644 index 000000000..d9c830a62 --- /dev/null +++ b/src/IconCurrencyLiraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyLiraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyLiraSharpFilled as default } diff --git a/src/IconCurrencyPoundOutlinedFilled.tsx b/src/IconCurrencyPoundOutlinedFilled.tsx new file mode 100644 index 000000000..fddfc6a67 --- /dev/null +++ b/src/IconCurrencyPoundOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyPoundOutlinedFilled as default } diff --git a/src/IconCurrencyPoundRoundedFilled.tsx b/src/IconCurrencyPoundRoundedFilled.tsx new file mode 100644 index 000000000..afcc882a4 --- /dev/null +++ b/src/IconCurrencyPoundRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyPoundRoundedFilled as default } diff --git a/src/IconCurrencyPoundSharpFilled.tsx b/src/IconCurrencyPoundSharpFilled.tsx new file mode 100644 index 000000000..25bac2e74 --- /dev/null +++ b/src/IconCurrencyPoundSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyPoundSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyPoundSharpFilled as default } diff --git a/src/IconCurrencyRubleOutlinedFilled.tsx b/src/IconCurrencyRubleOutlinedFilled.tsx new file mode 100644 index 000000000..4e2d299bb --- /dev/null +++ b/src/IconCurrencyRubleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRubleOutlinedFilled as default } diff --git a/src/IconCurrencyRubleRoundedFilled.tsx b/src/IconCurrencyRubleRoundedFilled.tsx new file mode 100644 index 000000000..d0db8ef4e --- /dev/null +++ b/src/IconCurrencyRubleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRubleRoundedFilled as default } diff --git a/src/IconCurrencyRubleSharpFilled.tsx b/src/IconCurrencyRubleSharpFilled.tsx new file mode 100644 index 000000000..c7ec080b0 --- /dev/null +++ b/src/IconCurrencyRubleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRubleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRubleSharpFilled as default } diff --git a/src/IconCurrencyRupeeCircleOutlinedFilled.tsx b/src/IconCurrencyRupeeCircleOutlinedFilled.tsx new file mode 100644 index 000000000..707cea655 --- /dev/null +++ b/src/IconCurrencyRupeeCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRupeeCircleOutlinedFilled as default } diff --git a/src/IconCurrencyRupeeCircleRoundedFilled.tsx b/src/IconCurrencyRupeeCircleRoundedFilled.tsx new file mode 100644 index 000000000..d51de0acc --- /dev/null +++ b/src/IconCurrencyRupeeCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRupeeCircleRoundedFilled as default } diff --git a/src/IconCurrencyRupeeCircleSharpFilled.tsx b/src/IconCurrencyRupeeCircleSharpFilled.tsx new file mode 100644 index 000000000..660df63eb --- /dev/null +++ b/src/IconCurrencyRupeeCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRupeeCircleSharpFilled as default } diff --git a/src/IconCurrencyRupeeOutlinedFilled.tsx b/src/IconCurrencyRupeeOutlinedFilled.tsx new file mode 100644 index 000000000..d44ee3a4a --- /dev/null +++ b/src/IconCurrencyRupeeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRupeeOutlinedFilled as default } diff --git a/src/IconCurrencyRupeeRoundedFilled.tsx b/src/IconCurrencyRupeeRoundedFilled.tsx new file mode 100644 index 000000000..291ae976d --- /dev/null +++ b/src/IconCurrencyRupeeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRupeeRoundedFilled as default } diff --git a/src/IconCurrencyRupeeSharpFilled.tsx b/src/IconCurrencyRupeeSharpFilled.tsx new file mode 100644 index 000000000..11c6ab99c --- /dev/null +++ b/src/IconCurrencyRupeeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyRupeeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyRupeeSharpFilled as default } diff --git a/src/IconCurrencyYenOutlinedFilled.tsx b/src/IconCurrencyYenOutlinedFilled.tsx new file mode 100644 index 000000000..ecfd3c46f --- /dev/null +++ b/src/IconCurrencyYenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyYenOutlinedFilled as default } diff --git a/src/IconCurrencyYenRoundedFilled.tsx b/src/IconCurrencyYenRoundedFilled.tsx new file mode 100644 index 000000000..dae690d96 --- /dev/null +++ b/src/IconCurrencyYenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyYenRoundedFilled as default } diff --git a/src/IconCurrencyYenSharpFilled.tsx b/src/IconCurrencyYenSharpFilled.tsx new file mode 100644 index 000000000..9eb92fd78 --- /dev/null +++ b/src/IconCurrencyYenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyYenSharpFilled as default } diff --git a/src/IconCurrencyYuanOutlinedFilled.tsx b/src/IconCurrencyYuanOutlinedFilled.tsx new file mode 100644 index 000000000..0adba098b --- /dev/null +++ b/src/IconCurrencyYuanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyYuanOutlinedFilled as default } diff --git a/src/IconCurrencyYuanRoundedFilled.tsx b/src/IconCurrencyYuanRoundedFilled.tsx new file mode 100644 index 000000000..fc00b76af --- /dev/null +++ b/src/IconCurrencyYuanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyYuanRoundedFilled as default } diff --git a/src/IconCurrencyYuanSharpFilled.tsx b/src/IconCurrencyYuanSharpFilled.tsx new file mode 100644 index 000000000..fae242519 --- /dev/null +++ b/src/IconCurrencyYuanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurrencyYuanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurrencyYuanSharpFilled as default } diff --git a/src/IconCurtainsClosedOutlinedFilled.tsx b/src/IconCurtainsClosedOutlinedFilled.tsx new file mode 100644 index 000000000..436e56119 --- /dev/null +++ b/src/IconCurtainsClosedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCurtainsClosedOutlinedFilled as default } diff --git a/src/IconCurtainsClosedRoundedFilled.tsx b/src/IconCurtainsClosedRoundedFilled.tsx new file mode 100644 index 000000000..7a30e3eaa --- /dev/null +++ b/src/IconCurtainsClosedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurtainsClosedRoundedFilled as default } diff --git a/src/IconCurtainsClosedSharpFilled.tsx b/src/IconCurtainsClosedSharpFilled.tsx new file mode 100644 index 000000000..ea640f48c --- /dev/null +++ b/src/IconCurtainsClosedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsClosedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurtainsClosedSharpFilled as default } diff --git a/src/IconCurtainsOutlinedFilled.tsx b/src/IconCurtainsOutlinedFilled.tsx new file mode 100644 index 000000000..1b733bb5d --- /dev/null +++ b/src/IconCurtainsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurtainsOutlinedFilled as default } diff --git a/src/IconCurtainsRoundedFilled.tsx b/src/IconCurtainsRoundedFilled.tsx new file mode 100644 index 000000000..66be39457 --- /dev/null +++ b/src/IconCurtainsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurtainsRoundedFilled as default } diff --git a/src/IconCurtainsSharpFilled.tsx b/src/IconCurtainsSharpFilled.tsx new file mode 100644 index 000000000..7d8b9ded4 --- /dev/null +++ b/src/IconCurtainsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCurtainsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCurtainsSharpFilled as default } diff --git a/src/IconCustomTypographyOutlinedFilled.tsx b/src/IconCustomTypographyOutlinedFilled.tsx new file mode 100644 index 000000000..ea6363859 --- /dev/null +++ b/src/IconCustomTypographyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCustomTypographyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCustomTypographyOutlinedFilled as default } diff --git a/src/IconCustomTypographyRoundedFilled.tsx b/src/IconCustomTypographyRoundedFilled.tsx new file mode 100644 index 000000000..299282732 --- /dev/null +++ b/src/IconCustomTypographyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCustomTypographyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconCustomTypographyRoundedFilled as default } diff --git a/src/IconCustomTypographySharpFilled.tsx b/src/IconCustomTypographySharpFilled.tsx new file mode 100644 index 000000000..5723c069c --- /dev/null +++ b/src/IconCustomTypographySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCustomTypographySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCustomTypographySharpFilled as default } diff --git a/src/IconCycleOutlinedFilled.tsx b/src/IconCycleOutlinedFilled.tsx new file mode 100644 index 000000000..3e61e9f7d --- /dev/null +++ b/src/IconCycleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCycleOutlinedFilled as default } diff --git a/src/IconCycleRoundedFilled.tsx b/src/IconCycleRoundedFilled.tsx new file mode 100644 index 000000000..d5c3a600c --- /dev/null +++ b/src/IconCycleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCycleRoundedFilled as default } diff --git a/src/IconCycleSharpFilled.tsx b/src/IconCycleSharpFilled.tsx new file mode 100644 index 000000000..454f15392 --- /dev/null +++ b/src/IconCycleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCycleSharpFilled as default } diff --git a/src/IconCycloneOutlinedFilled.tsx b/src/IconCycloneOutlinedFilled.tsx new file mode 100644 index 000000000..9ed370dba --- /dev/null +++ b/src/IconCycloneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCycloneOutlinedFilled as default } diff --git a/src/IconCycloneRoundedFilled.tsx b/src/IconCycloneRoundedFilled.tsx new file mode 100644 index 000000000..484da7dd9 --- /dev/null +++ b/src/IconCycloneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCycloneRoundedFilled as default } diff --git a/src/IconCycloneSharpFilled.tsx b/src/IconCycloneSharpFilled.tsx new file mode 100644 index 000000000..fc58544e9 --- /dev/null +++ b/src/IconCycloneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconCycloneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconCycloneSharpFilled as default } diff --git a/src/IconDangerousOutlinedFilled.tsx b/src/IconDangerousOutlinedFilled.tsx new file mode 100644 index 000000000..90a233d01 --- /dev/null +++ b/src/IconDangerousOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDangerousOutlinedFilled as default } diff --git a/src/IconDangerousRoundedFilled.tsx b/src/IconDangerousRoundedFilled.tsx new file mode 100644 index 000000000..fbd0b457e --- /dev/null +++ b/src/IconDangerousRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDangerousRoundedFilled as default } diff --git a/src/IconDangerousSharpFilled.tsx b/src/IconDangerousSharpFilled.tsx new file mode 100644 index 000000000..c778188ef --- /dev/null +++ b/src/IconDangerousSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDangerousSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDangerousSharpFilled as default } diff --git a/src/IconDarkModeOutlinedFilled.tsx b/src/IconDarkModeOutlinedFilled.tsx new file mode 100644 index 000000000..e860434f9 --- /dev/null +++ b/src/IconDarkModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDarkModeOutlinedFilled as default } diff --git a/src/IconDarkModeRoundedFilled.tsx b/src/IconDarkModeRoundedFilled.tsx new file mode 100644 index 000000000..31e052c68 --- /dev/null +++ b/src/IconDarkModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDarkModeRoundedFilled as default } diff --git a/src/IconDarkModeSharpFilled.tsx b/src/IconDarkModeSharpFilled.tsx new file mode 100644 index 000000000..8754aa192 --- /dev/null +++ b/src/IconDarkModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDarkModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDarkModeSharpFilled as default } diff --git a/src/IconDashboardCustomizeOutlinedFilled.tsx b/src/IconDashboardCustomizeOutlinedFilled.tsx new file mode 100644 index 000000000..6436e1189 --- /dev/null +++ b/src/IconDashboardCustomizeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDashboardCustomizeOutlinedFilled as default } diff --git a/src/IconDashboardCustomizeRoundedFilled.tsx b/src/IconDashboardCustomizeRoundedFilled.tsx new file mode 100644 index 000000000..2b7b5c106 --- /dev/null +++ b/src/IconDashboardCustomizeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDashboardCustomizeRoundedFilled as default } diff --git a/src/IconDashboardCustomizeSharpFilled.tsx b/src/IconDashboardCustomizeSharpFilled.tsx new file mode 100644 index 000000000..78ddaddbf --- /dev/null +++ b/src/IconDashboardCustomizeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardCustomizeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDashboardCustomizeSharpFilled as default } diff --git a/src/IconDashboardOutlinedFilled.tsx b/src/IconDashboardOutlinedFilled.tsx new file mode 100644 index 000000000..89ed28c13 --- /dev/null +++ b/src/IconDashboardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDashboardOutlinedFilled as default } diff --git a/src/IconDashboardRoundedFilled.tsx b/src/IconDashboardRoundedFilled.tsx new file mode 100644 index 000000000..4affce600 --- /dev/null +++ b/src/IconDashboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDashboardRoundedFilled as default } diff --git a/src/IconDashboardSharpFilled.tsx b/src/IconDashboardSharpFilled.tsx new file mode 100644 index 000000000..d4121108a --- /dev/null +++ b/src/IconDashboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDashboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDashboardSharpFilled as default } diff --git a/src/IconDataAlertOutlinedFilled.tsx b/src/IconDataAlertOutlinedFilled.tsx new file mode 100644 index 000000000..7be6a2239 --- /dev/null +++ b/src/IconDataAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataAlertOutlinedFilled as default } diff --git a/src/IconDataAlertRoundedFilled.tsx b/src/IconDataAlertRoundedFilled.tsx new file mode 100644 index 000000000..436b170c7 --- /dev/null +++ b/src/IconDataAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataAlertRoundedFilled as default } diff --git a/src/IconDataAlertSharpFilled.tsx b/src/IconDataAlertSharpFilled.tsx new file mode 100644 index 000000000..d18a4e7fe --- /dev/null +++ b/src/IconDataAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataAlertSharpFilled as default } diff --git a/src/IconDataArrayOutlinedFilled.tsx b/src/IconDataArrayOutlinedFilled.tsx new file mode 100644 index 000000000..6ada8df04 --- /dev/null +++ b/src/IconDataArrayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArrayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataArrayOutlinedFilled as default } diff --git a/src/IconDataArrayRoundedFilled.tsx b/src/IconDataArrayRoundedFilled.tsx new file mode 100644 index 000000000..86ac7f333 --- /dev/null +++ b/src/IconDataArrayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArrayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataArrayRoundedFilled as default } diff --git a/src/IconDataArraySharpFilled.tsx b/src/IconDataArraySharpFilled.tsx new file mode 100644 index 000000000..17ef5819e --- /dev/null +++ b/src/IconDataArraySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataArraySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataArraySharpFilled as default } diff --git a/src/IconDataCheckOutlinedFilled.tsx b/src/IconDataCheckOutlinedFilled.tsx new file mode 100644 index 000000000..177fcdd61 --- /dev/null +++ b/src/IconDataCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataCheckOutlinedFilled as default } diff --git a/src/IconDataCheckRoundedFilled.tsx b/src/IconDataCheckRoundedFilled.tsx new file mode 100644 index 000000000..cd801e7a7 --- /dev/null +++ b/src/IconDataCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataCheckRoundedFilled as default } diff --git a/src/IconDataCheckSharpFilled.tsx b/src/IconDataCheckSharpFilled.tsx new file mode 100644 index 000000000..8bc341544 --- /dev/null +++ b/src/IconDataCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataCheckSharpFilled as default } diff --git a/src/IconDataExplorationOutlinedFilled.tsx b/src/IconDataExplorationOutlinedFilled.tsx new file mode 100644 index 000000000..ceacfaf6e --- /dev/null +++ b/src/IconDataExplorationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataExplorationOutlinedFilled as default } diff --git a/src/IconDataExplorationRoundedFilled.tsx b/src/IconDataExplorationRoundedFilled.tsx new file mode 100644 index 000000000..adb231d88 --- /dev/null +++ b/src/IconDataExplorationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataExplorationRoundedFilled as default } diff --git a/src/IconDataExplorationSharpFilled.tsx b/src/IconDataExplorationSharpFilled.tsx new file mode 100644 index 000000000..ca302e045 --- /dev/null +++ b/src/IconDataExplorationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataExplorationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataExplorationSharpFilled as default } diff --git a/src/IconDataInfoAlertOutlinedFilled.tsx b/src/IconDataInfoAlertOutlinedFilled.tsx new file mode 100644 index 000000000..663a605ee --- /dev/null +++ b/src/IconDataInfoAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataInfoAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataInfoAlertOutlinedFilled as default } diff --git a/src/IconDataInfoAlertRoundedFilled.tsx b/src/IconDataInfoAlertRoundedFilled.tsx new file mode 100644 index 000000000..42844f04f --- /dev/null +++ b/src/IconDataInfoAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataInfoAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataInfoAlertRoundedFilled as default } diff --git a/src/IconDataInfoAlertSharpFilled.tsx b/src/IconDataInfoAlertSharpFilled.tsx new file mode 100644 index 000000000..c4178df44 --- /dev/null +++ b/src/IconDataInfoAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataInfoAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataInfoAlertSharpFilled as default } diff --git a/src/IconDataLossPreventionOutlinedFilled.tsx b/src/IconDataLossPreventionOutlinedFilled.tsx new file mode 100644 index 000000000..26527a2d3 --- /dev/null +++ b/src/IconDataLossPreventionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataLossPreventionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataLossPreventionOutlinedFilled as default } diff --git a/src/IconDataLossPreventionRoundedFilled.tsx b/src/IconDataLossPreventionRoundedFilled.tsx new file mode 100644 index 000000000..0711cf534 --- /dev/null +++ b/src/IconDataLossPreventionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataLossPreventionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataLossPreventionRoundedFilled as default } diff --git a/src/IconDataLossPreventionSharpFilled.tsx b/src/IconDataLossPreventionSharpFilled.tsx new file mode 100644 index 000000000..ebf9b3c20 --- /dev/null +++ b/src/IconDataLossPreventionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataLossPreventionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataLossPreventionSharpFilled as default } diff --git a/src/IconDataObjectOutlinedFilled.tsx b/src/IconDataObjectOutlinedFilled.tsx new file mode 100644 index 000000000..f23684824 --- /dev/null +++ b/src/IconDataObjectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataObjectOutlinedFilled as default } diff --git a/src/IconDataObjectRoundedFilled.tsx b/src/IconDataObjectRoundedFilled.tsx new file mode 100644 index 000000000..167002455 --- /dev/null +++ b/src/IconDataObjectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataObjectRoundedFilled as default } diff --git a/src/IconDataObjectSharpFilled.tsx b/src/IconDataObjectSharpFilled.tsx new file mode 100644 index 000000000..68e896990 --- /dev/null +++ b/src/IconDataObjectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataObjectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataObjectSharpFilled as default } diff --git a/src/IconDataSaverOnOutlinedFilled.tsx b/src/IconDataSaverOnOutlinedFilled.tsx new file mode 100644 index 000000000..eb984a2e0 --- /dev/null +++ b/src/IconDataSaverOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataSaverOnOutlinedFilled as default } diff --git a/src/IconDataSaverOnRoundedFilled.tsx b/src/IconDataSaverOnRoundedFilled.tsx new file mode 100644 index 000000000..94a72e1ea --- /dev/null +++ b/src/IconDataSaverOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataSaverOnRoundedFilled as default } diff --git a/src/IconDataSaverOnSharpFilled.tsx b/src/IconDataSaverOnSharpFilled.tsx new file mode 100644 index 000000000..2d2cddb00 --- /dev/null +++ b/src/IconDataSaverOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataSaverOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataSaverOnSharpFilled as default } diff --git a/src/IconDataTableOutlinedFilled.tsx b/src/IconDataTableOutlinedFilled.tsx new file mode 100644 index 000000000..edb057277 --- /dev/null +++ b/src/IconDataTableOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataTableOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataTableOutlinedFilled as default } diff --git a/src/IconDataTableRoundedFilled.tsx b/src/IconDataTableRoundedFilled.tsx new file mode 100644 index 000000000..a80b1c1ab --- /dev/null +++ b/src/IconDataTableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataTableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataTableRoundedFilled as default } diff --git a/src/IconDataTableSharpFilled.tsx b/src/IconDataTableSharpFilled.tsx new file mode 100644 index 000000000..03a945060 --- /dev/null +++ b/src/IconDataTableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataTableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataTableSharpFilled as default } diff --git a/src/IconDataThresholdingOutlinedFilled.tsx b/src/IconDataThresholdingOutlinedFilled.tsx new file mode 100644 index 000000000..8731b96af --- /dev/null +++ b/src/IconDataThresholdingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataThresholdingOutlinedFilled as default } diff --git a/src/IconDataThresholdingRoundedFilled.tsx b/src/IconDataThresholdingRoundedFilled.tsx new file mode 100644 index 000000000..939c155ac --- /dev/null +++ b/src/IconDataThresholdingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDataThresholdingRoundedFilled as default } diff --git a/src/IconDataThresholdingSharpFilled.tsx b/src/IconDataThresholdingSharpFilled.tsx new file mode 100644 index 000000000..54224f3bc --- /dev/null +++ b/src/IconDataThresholdingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataThresholdingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataThresholdingSharpFilled as default } diff --git a/src/IconDataUsageOutlinedFilled.tsx b/src/IconDataUsageOutlinedFilled.tsx new file mode 100644 index 000000000..a7b76e9e8 --- /dev/null +++ b/src/IconDataUsageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataUsageOutlinedFilled as default } diff --git a/src/IconDataUsageRoundedFilled.tsx b/src/IconDataUsageRoundedFilled.tsx new file mode 100644 index 000000000..a6ae02921 --- /dev/null +++ b/src/IconDataUsageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataUsageRoundedFilled as default } diff --git a/src/IconDataUsageSharpFilled.tsx b/src/IconDataUsageSharpFilled.tsx new file mode 100644 index 000000000..9bddf2af4 --- /dev/null +++ b/src/IconDataUsageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDataUsageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDataUsageSharpFilled as default } diff --git a/src/IconDatabaseOffOutlinedFilled.tsx b/src/IconDatabaseOffOutlinedFilled.tsx new file mode 100644 index 000000000..5e3d5c30c --- /dev/null +++ b/src/IconDatabaseOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatabaseOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatabaseOffOutlinedFilled as default } diff --git a/src/IconDatabaseOffRoundedFilled.tsx b/src/IconDatabaseOffRoundedFilled.tsx new file mode 100644 index 000000000..e34dfd23e --- /dev/null +++ b/src/IconDatabaseOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatabaseOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatabaseOffRoundedFilled as default } diff --git a/src/IconDatabaseOffSharpFilled.tsx b/src/IconDatabaseOffSharpFilled.tsx new file mode 100644 index 000000000..433fc4cb3 --- /dev/null +++ b/src/IconDatabaseOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatabaseOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatabaseOffSharpFilled as default } diff --git a/src/IconDatabaseOutlinedFilled.tsx b/src/IconDatabaseOutlinedFilled.tsx new file mode 100644 index 000000000..9dedd25fa --- /dev/null +++ b/src/IconDatabaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatabaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatabaseOutlinedFilled as default } diff --git a/src/IconDatabaseRoundedFilled.tsx b/src/IconDatabaseRoundedFilled.tsx new file mode 100644 index 000000000..6f3060e67 --- /dev/null +++ b/src/IconDatabaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatabaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatabaseRoundedFilled as default } diff --git a/src/IconDatabaseSharpFilled.tsx b/src/IconDatabaseSharpFilled.tsx new file mode 100644 index 000000000..8c2c29107 --- /dev/null +++ b/src/IconDatabaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatabaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatabaseSharpFilled as default } diff --git a/src/IconDatasetLinkedOutlinedFilled.tsx b/src/IconDatasetLinkedOutlinedFilled.tsx new file mode 100644 index 000000000..4069bc711 --- /dev/null +++ b/src/IconDatasetLinkedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatasetLinkedOutlinedFilled as default } diff --git a/src/IconDatasetLinkedRoundedFilled.tsx b/src/IconDatasetLinkedRoundedFilled.tsx new file mode 100644 index 000000000..ff39dbfea --- /dev/null +++ b/src/IconDatasetLinkedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatasetLinkedRoundedFilled as default } diff --git a/src/IconDatasetLinkedSharpFilled.tsx b/src/IconDatasetLinkedSharpFilled.tsx new file mode 100644 index 000000000..92776d9ce --- /dev/null +++ b/src/IconDatasetLinkedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetLinkedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatasetLinkedSharpFilled as default } diff --git a/src/IconDatasetOutlinedFilled.tsx b/src/IconDatasetOutlinedFilled.tsx new file mode 100644 index 000000000..785e0fb9e --- /dev/null +++ b/src/IconDatasetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatasetOutlinedFilled as default } diff --git a/src/IconDatasetRoundedFilled.tsx b/src/IconDatasetRoundedFilled.tsx new file mode 100644 index 000000000..ced6c6985 --- /dev/null +++ b/src/IconDatasetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatasetRoundedFilled as default } diff --git a/src/IconDatasetSharpFilled.tsx b/src/IconDatasetSharpFilled.tsx new file mode 100644 index 000000000..b563caadb --- /dev/null +++ b/src/IconDatasetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDatasetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDatasetSharpFilled as default } diff --git a/src/IconDateRangeOutlinedFilled.tsx b/src/IconDateRangeOutlinedFilled.tsx new file mode 100644 index 000000000..f50a61d79 --- /dev/null +++ b/src/IconDateRangeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDateRangeOutlinedFilled as default } diff --git a/src/IconDateRangeRoundedFilled.tsx b/src/IconDateRangeRoundedFilled.tsx new file mode 100644 index 000000000..085507e31 --- /dev/null +++ b/src/IconDateRangeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDateRangeRoundedFilled as default } diff --git a/src/IconDateRangeSharpFilled.tsx b/src/IconDateRangeSharpFilled.tsx new file mode 100644 index 000000000..febdad112 --- /dev/null +++ b/src/IconDateRangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDateRangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDateRangeSharpFilled as default } diff --git a/src/IconDeblurOutlinedFilled.tsx b/src/IconDeblurOutlinedFilled.tsx new file mode 100644 index 000000000..f8ad4400d --- /dev/null +++ b/src/IconDeblurOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeblurOutlinedFilled as default } diff --git a/src/IconDeblurRoundedFilled.tsx b/src/IconDeblurRoundedFilled.tsx new file mode 100644 index 000000000..b110e0198 --- /dev/null +++ b/src/IconDeblurRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeblurRoundedFilled as default } diff --git a/src/IconDeblurSharpFilled.tsx b/src/IconDeblurSharpFilled.tsx new file mode 100644 index 000000000..d8b3fc0ea --- /dev/null +++ b/src/IconDeblurSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeblurSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeblurSharpFilled as default } diff --git a/src/IconDeceasedOutlinedFilled.tsx b/src/IconDeceasedOutlinedFilled.tsx new file mode 100644 index 000000000..5c8e9512e --- /dev/null +++ b/src/IconDeceasedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeceasedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeceasedOutlinedFilled as default } diff --git a/src/IconDeceasedRoundedFilled.tsx b/src/IconDeceasedRoundedFilled.tsx new file mode 100644 index 000000000..462399a95 --- /dev/null +++ b/src/IconDeceasedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeceasedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeceasedRoundedFilled as default } diff --git a/src/IconDeceasedSharpFilled.tsx b/src/IconDeceasedSharpFilled.tsx new file mode 100644 index 000000000..483c453a0 --- /dev/null +++ b/src/IconDeceasedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeceasedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeceasedSharpFilled as default } diff --git a/src/IconDecimalDecreaseOutlinedFilled.tsx b/src/IconDecimalDecreaseOutlinedFilled.tsx new file mode 100644 index 000000000..a8703e57b --- /dev/null +++ b/src/IconDecimalDecreaseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDecimalDecreaseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDecimalDecreaseOutlinedFilled as default } diff --git a/src/IconDecimalDecreaseRoundedFilled.tsx b/src/IconDecimalDecreaseRoundedFilled.tsx new file mode 100644 index 000000000..6656713e2 --- /dev/null +++ b/src/IconDecimalDecreaseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDecimalDecreaseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDecimalDecreaseRoundedFilled as default } diff --git a/src/IconDecimalDecreaseSharpFilled.tsx b/src/IconDecimalDecreaseSharpFilled.tsx new file mode 100644 index 000000000..4e7155315 --- /dev/null +++ b/src/IconDecimalDecreaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDecimalDecreaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDecimalDecreaseSharpFilled as default } diff --git a/src/IconDecimalIncreaseOutlinedFilled.tsx b/src/IconDecimalIncreaseOutlinedFilled.tsx new file mode 100644 index 000000000..da2a049cb --- /dev/null +++ b/src/IconDecimalIncreaseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDecimalIncreaseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDecimalIncreaseOutlinedFilled as default } diff --git a/src/IconDecimalIncreaseRoundedFilled.tsx b/src/IconDecimalIncreaseRoundedFilled.tsx new file mode 100644 index 000000000..77637492f --- /dev/null +++ b/src/IconDecimalIncreaseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDecimalIncreaseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDecimalIncreaseRoundedFilled as default } diff --git a/src/IconDecimalIncreaseSharpFilled.tsx b/src/IconDecimalIncreaseSharpFilled.tsx new file mode 100644 index 000000000..98d0dbdc1 --- /dev/null +++ b/src/IconDecimalIncreaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDecimalIncreaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDecimalIncreaseSharpFilled as default } diff --git a/src/IconDeckOutlinedFilled.tsx b/src/IconDeckOutlinedFilled.tsx new file mode 100644 index 000000000..bd40a609f --- /dev/null +++ b/src/IconDeckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeckOutlinedFilled as default } diff --git a/src/IconDeckRoundedFilled.tsx b/src/IconDeckRoundedFilled.tsx new file mode 100644 index 000000000..da11e73cf --- /dev/null +++ b/src/IconDeckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeckRoundedFilled as default } diff --git a/src/IconDeckSharpFilled.tsx b/src/IconDeckSharpFilled.tsx new file mode 100644 index 000000000..ce894f3bf --- /dev/null +++ b/src/IconDeckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeckSharpFilled as default } diff --git a/src/IconDehazeOutlinedFilled.tsx b/src/IconDehazeOutlinedFilled.tsx new file mode 100644 index 000000000..4c2cf4916 --- /dev/null +++ b/src/IconDehazeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDehazeOutlinedFilled as default } diff --git a/src/IconDehazeRoundedFilled.tsx b/src/IconDehazeRoundedFilled.tsx new file mode 100644 index 000000000..7c657ac2f --- /dev/null +++ b/src/IconDehazeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDehazeRoundedFilled as default } diff --git a/src/IconDehazeSharpFilled.tsx b/src/IconDehazeSharpFilled.tsx new file mode 100644 index 000000000..5f295e0ea --- /dev/null +++ b/src/IconDehazeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDehazeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDehazeSharpFilled as default } diff --git a/src/IconDeleteForeverOutlinedFilled.tsx b/src/IconDeleteForeverOutlinedFilled.tsx new file mode 100644 index 000000000..e0c939df0 --- /dev/null +++ b/src/IconDeleteForeverOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteForeverOutlinedFilled as default } diff --git a/src/IconDeleteForeverRoundedFilled.tsx b/src/IconDeleteForeverRoundedFilled.tsx new file mode 100644 index 000000000..2cb07d22d --- /dev/null +++ b/src/IconDeleteForeverRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteForeverRoundedFilled as default } diff --git a/src/IconDeleteForeverSharpFilled.tsx b/src/IconDeleteForeverSharpFilled.tsx new file mode 100644 index 000000000..51075189d --- /dev/null +++ b/src/IconDeleteForeverSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteForeverSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteForeverSharpFilled as default } diff --git a/src/IconDeleteHistoryOutlinedFilled.tsx b/src/IconDeleteHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..8978e4e78 --- /dev/null +++ b/src/IconDeleteHistoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteHistoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteHistoryOutlinedFilled as default } diff --git a/src/IconDeleteHistoryRoundedFilled.tsx b/src/IconDeleteHistoryRoundedFilled.tsx new file mode 100644 index 000000000..16457800b --- /dev/null +++ b/src/IconDeleteHistoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteHistoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteHistoryRoundedFilled as default } diff --git a/src/IconDeleteHistorySharpFilled.tsx b/src/IconDeleteHistorySharpFilled.tsx new file mode 100644 index 000000000..bdc1c8564 --- /dev/null +++ b/src/IconDeleteHistorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteHistorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteHistorySharpFilled as default } diff --git a/src/IconDeleteOutlinedFilled.tsx b/src/IconDeleteOutlinedFilled.tsx new file mode 100644 index 000000000..692e823da --- /dev/null +++ b/src/IconDeleteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteOutlinedFilled as default } diff --git a/src/IconDeleteRoundedFilled.tsx b/src/IconDeleteRoundedFilled.tsx new file mode 100644 index 000000000..25d4b90b3 --- /dev/null +++ b/src/IconDeleteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteRoundedFilled as default } diff --git a/src/IconDeleteSharpFilled.tsx b/src/IconDeleteSharpFilled.tsx new file mode 100644 index 000000000..479d6249a --- /dev/null +++ b/src/IconDeleteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteSharpFilled as default } diff --git a/src/IconDeleteSweepOutlinedFilled.tsx b/src/IconDeleteSweepOutlinedFilled.tsx new file mode 100644 index 000000000..880b74afb --- /dev/null +++ b/src/IconDeleteSweepOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteSweepOutlinedFilled as default } diff --git a/src/IconDeleteSweepRoundedFilled.tsx b/src/IconDeleteSweepRoundedFilled.tsx new file mode 100644 index 000000000..0c2974daf --- /dev/null +++ b/src/IconDeleteSweepRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteSweepRoundedFilled as default } diff --git a/src/IconDeleteSweepSharpFilled.tsx b/src/IconDeleteSweepSharpFilled.tsx new file mode 100644 index 000000000..bd43567d4 --- /dev/null +++ b/src/IconDeleteSweepSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeleteSweepSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeleteSweepSharpFilled as default } diff --git a/src/IconDemographyOutlinedFilled.tsx b/src/IconDemographyOutlinedFilled.tsx new file mode 100644 index 000000000..d72ffac5d --- /dev/null +++ b/src/IconDemographyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDemographyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDemographyOutlinedFilled as default } diff --git a/src/IconDemographyRoundedFilled.tsx b/src/IconDemographyRoundedFilled.tsx new file mode 100644 index 000000000..da412853e --- /dev/null +++ b/src/IconDemographyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDemographyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDemographyRoundedFilled as default } diff --git a/src/IconDemographySharpFilled.tsx b/src/IconDemographySharpFilled.tsx new file mode 100644 index 000000000..54b9e7a1f --- /dev/null +++ b/src/IconDemographySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDemographySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDemographySharpFilled as default } diff --git a/src/IconDensityLargeOutlinedFilled.tsx b/src/IconDensityLargeOutlinedFilled.tsx new file mode 100644 index 000000000..14a0d5cd4 --- /dev/null +++ b/src/IconDensityLargeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensityLargeOutlinedFilled as default } diff --git a/src/IconDensityLargeRoundedFilled.tsx b/src/IconDensityLargeRoundedFilled.tsx new file mode 100644 index 000000000..a57f5be6a --- /dev/null +++ b/src/IconDensityLargeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensityLargeRoundedFilled as default } diff --git a/src/IconDensityLargeSharpFilled.tsx b/src/IconDensityLargeSharpFilled.tsx new file mode 100644 index 000000000..61b11c66a --- /dev/null +++ b/src/IconDensityLargeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityLargeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensityLargeSharpFilled as default } diff --git a/src/IconDensityMediumOutlinedFilled.tsx b/src/IconDensityMediumOutlinedFilled.tsx new file mode 100644 index 000000000..29bfb221b --- /dev/null +++ b/src/IconDensityMediumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensityMediumOutlinedFilled as default } diff --git a/src/IconDensityMediumRoundedFilled.tsx b/src/IconDensityMediumRoundedFilled.tsx new file mode 100644 index 000000000..d161db22f --- /dev/null +++ b/src/IconDensityMediumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensityMediumRoundedFilled as default } diff --git a/src/IconDensityMediumSharpFilled.tsx b/src/IconDensityMediumSharpFilled.tsx new file mode 100644 index 000000000..74727063c --- /dev/null +++ b/src/IconDensityMediumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensityMediumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensityMediumSharpFilled as default } diff --git a/src/IconDensitySmallOutlinedFilled.tsx b/src/IconDensitySmallOutlinedFilled.tsx new file mode 100644 index 000000000..1824a2d2b --- /dev/null +++ b/src/IconDensitySmallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensitySmallOutlinedFilled as default } diff --git a/src/IconDensitySmallRoundedFilled.tsx b/src/IconDensitySmallRoundedFilled.tsx new file mode 100644 index 000000000..dad8584d1 --- /dev/null +++ b/src/IconDensitySmallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensitySmallRoundedFilled as default } diff --git a/src/IconDensitySmallSharpFilled.tsx b/src/IconDensitySmallSharpFilled.tsx new file mode 100644 index 000000000..c53851a86 --- /dev/null +++ b/src/IconDensitySmallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDensitySmallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDensitySmallSharpFilled as default } diff --git a/src/IconDentistryOutlinedFilled.tsx b/src/IconDentistryOutlinedFilled.tsx new file mode 100644 index 000000000..7758c3852 --- /dev/null +++ b/src/IconDentistryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDentistryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDentistryOutlinedFilled as default } diff --git a/src/IconDentistryRoundedFilled.tsx b/src/IconDentistryRoundedFilled.tsx new file mode 100644 index 000000000..c690d8a46 --- /dev/null +++ b/src/IconDentistryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDentistryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDentistryRoundedFilled as default } diff --git a/src/IconDentistrySharpFilled.tsx b/src/IconDentistrySharpFilled.tsx new file mode 100644 index 000000000..5607a3463 --- /dev/null +++ b/src/IconDentistrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDentistrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDentistrySharpFilled as default } diff --git a/src/IconDepartureBoardOutlinedFilled.tsx b/src/IconDepartureBoardOutlinedFilled.tsx new file mode 100644 index 000000000..ad70be662 --- /dev/null +++ b/src/IconDepartureBoardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDepartureBoardOutlinedFilled as default } diff --git a/src/IconDepartureBoardRoundedFilled.tsx b/src/IconDepartureBoardRoundedFilled.tsx new file mode 100644 index 000000000..88804989b --- /dev/null +++ b/src/IconDepartureBoardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDepartureBoardRoundedFilled as default } diff --git a/src/IconDepartureBoardSharpFilled.tsx b/src/IconDepartureBoardSharpFilled.tsx new file mode 100644 index 000000000..41f80cdae --- /dev/null +++ b/src/IconDepartureBoardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDepartureBoardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDepartureBoardSharpFilled as default } diff --git a/src/IconDeployedCodeAccountOutlinedFilled.tsx b/src/IconDeployedCodeAccountOutlinedFilled.tsx new file mode 100644 index 000000000..36b455a4f --- /dev/null +++ b/src/IconDeployedCodeAccountOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeAccountOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeAccountOutlinedFilled as default } diff --git a/src/IconDeployedCodeAccountRoundedFilled.tsx b/src/IconDeployedCodeAccountRoundedFilled.tsx new file mode 100644 index 000000000..8e48f3b8e --- /dev/null +++ b/src/IconDeployedCodeAccountRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeAccountRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeAccountRoundedFilled as default } diff --git a/src/IconDeployedCodeAccountSharpFilled.tsx b/src/IconDeployedCodeAccountSharpFilled.tsx new file mode 100644 index 000000000..e1cc1d6f5 --- /dev/null +++ b/src/IconDeployedCodeAccountSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeAccountSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeAccountSharpFilled as default } diff --git a/src/IconDeployedCodeAlertOutlinedFilled.tsx b/src/IconDeployedCodeAlertOutlinedFilled.tsx new file mode 100644 index 000000000..46884550f --- /dev/null +++ b/src/IconDeployedCodeAlertOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeAlertOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeAlertOutlinedFilled as default } diff --git a/src/IconDeployedCodeAlertRoundedFilled.tsx b/src/IconDeployedCodeAlertRoundedFilled.tsx new file mode 100644 index 000000000..37bb8450b --- /dev/null +++ b/src/IconDeployedCodeAlertRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeAlertRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeAlertRoundedFilled as default } diff --git a/src/IconDeployedCodeAlertSharpFilled.tsx b/src/IconDeployedCodeAlertSharpFilled.tsx new file mode 100644 index 000000000..49353f988 --- /dev/null +++ b/src/IconDeployedCodeAlertSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeAlertSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeAlertSharpFilled as default } diff --git a/src/IconDeployedCodeHistoryOutlinedFilled.tsx b/src/IconDeployedCodeHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..8ae10979b --- /dev/null +++ b/src/IconDeployedCodeHistoryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeHistoryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeHistoryOutlinedFilled as default } diff --git a/src/IconDeployedCodeHistoryRoundedFilled.tsx b/src/IconDeployedCodeHistoryRoundedFilled.tsx new file mode 100644 index 000000000..b8817adf6 --- /dev/null +++ b/src/IconDeployedCodeHistoryRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeHistoryRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeHistoryRoundedFilled as default } diff --git a/src/IconDeployedCodeHistorySharpFilled.tsx b/src/IconDeployedCodeHistorySharpFilled.tsx new file mode 100644 index 000000000..18179d4d9 --- /dev/null +++ b/src/IconDeployedCodeHistorySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeHistorySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeHistorySharpFilled as default } diff --git a/src/IconDeployedCodeOutlinedFilled.tsx b/src/IconDeployedCodeOutlinedFilled.tsx new file mode 100644 index 000000000..4b6b6833c --- /dev/null +++ b/src/IconDeployedCodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeOutlinedFilled as default } diff --git a/src/IconDeployedCodeRoundedFilled.tsx b/src/IconDeployedCodeRoundedFilled.tsx new file mode 100644 index 000000000..bd8ecb52c --- /dev/null +++ b/src/IconDeployedCodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeRoundedFilled as default } diff --git a/src/IconDeployedCodeSharpFilled.tsx b/src/IconDeployedCodeSharpFilled.tsx new file mode 100644 index 000000000..4ee893b21 --- /dev/null +++ b/src/IconDeployedCodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeSharpFilled as default } diff --git a/src/IconDeployedCodeUpdateOutlinedFilled.tsx b/src/IconDeployedCodeUpdateOutlinedFilled.tsx new file mode 100644 index 000000000..4ab258061 --- /dev/null +++ b/src/IconDeployedCodeUpdateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeUpdateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeUpdateOutlinedFilled as default } diff --git a/src/IconDeployedCodeUpdateRoundedFilled.tsx b/src/IconDeployedCodeUpdateRoundedFilled.tsx new file mode 100644 index 000000000..5bfed3b1a --- /dev/null +++ b/src/IconDeployedCodeUpdateRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeUpdateRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeUpdateRoundedFilled as default } diff --git a/src/IconDeployedCodeUpdateSharpFilled.tsx b/src/IconDeployedCodeUpdateSharpFilled.tsx new file mode 100644 index 000000000..a1b4e3981 --- /dev/null +++ b/src/IconDeployedCodeUpdateSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeployedCodeUpdateSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeployedCodeUpdateSharpFilled as default } diff --git a/src/IconDermatologyOutlinedFilled.tsx b/src/IconDermatologyOutlinedFilled.tsx new file mode 100644 index 000000000..e9b63e985 --- /dev/null +++ b/src/IconDermatologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDermatologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDermatologyOutlinedFilled as default } diff --git a/src/IconDermatologyRoundedFilled.tsx b/src/IconDermatologyRoundedFilled.tsx new file mode 100644 index 000000000..03eea6662 --- /dev/null +++ b/src/IconDermatologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDermatologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDermatologyRoundedFilled as default } diff --git a/src/IconDermatologySharpFilled.tsx b/src/IconDermatologySharpFilled.tsx new file mode 100644 index 000000000..0a249b57c --- /dev/null +++ b/src/IconDermatologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDermatologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDermatologySharpFilled as default } diff --git a/src/IconDescriptionOutlinedFilled.tsx b/src/IconDescriptionOutlinedFilled.tsx new file mode 100644 index 000000000..44b1325af --- /dev/null +++ b/src/IconDescriptionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDescriptionOutlinedFilled as default } diff --git a/src/IconDescriptionRoundedFilled.tsx b/src/IconDescriptionRoundedFilled.tsx new file mode 100644 index 000000000..44768c468 --- /dev/null +++ b/src/IconDescriptionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDescriptionRoundedFilled as default } diff --git a/src/IconDescriptionSharpFilled.tsx b/src/IconDescriptionSharpFilled.tsx new file mode 100644 index 000000000..5324bce32 --- /dev/null +++ b/src/IconDescriptionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDescriptionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDescriptionSharpFilled as default } diff --git a/src/IconDeselectOutlinedFilled.tsx b/src/IconDeselectOutlinedFilled.tsx new file mode 100644 index 000000000..eea1b2308 --- /dev/null +++ b/src/IconDeselectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeselectOutlinedFilled as default } diff --git a/src/IconDeselectRoundedFilled.tsx b/src/IconDeselectRoundedFilled.tsx new file mode 100644 index 000000000..0916fc54b --- /dev/null +++ b/src/IconDeselectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeselectRoundedFilled as default } diff --git a/src/IconDeselectSharpFilled.tsx b/src/IconDeselectSharpFilled.tsx new file mode 100644 index 000000000..b2b86d571 --- /dev/null +++ b/src/IconDeselectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeselectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeselectSharpFilled as default } diff --git a/src/IconDesignServicesOutlinedFilled.tsx b/src/IconDesignServicesOutlinedFilled.tsx new file mode 100644 index 000000000..6f7986f1a --- /dev/null +++ b/src/IconDesignServicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesignServicesOutlinedFilled as default } diff --git a/src/IconDesignServicesRoundedFilled.tsx b/src/IconDesignServicesRoundedFilled.tsx new file mode 100644 index 000000000..0a0ab5bc9 --- /dev/null +++ b/src/IconDesignServicesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesignServicesRoundedFilled as default } diff --git a/src/IconDesignServicesSharpFilled.tsx b/src/IconDesignServicesSharpFilled.tsx new file mode 100644 index 000000000..7ad3e985e --- /dev/null +++ b/src/IconDesignServicesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesignServicesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesignServicesSharpFilled as default } diff --git a/src/IconDeskOutlinedFilled.tsx b/src/IconDeskOutlinedFilled.tsx new file mode 100644 index 000000000..cd599777f --- /dev/null +++ b/src/IconDeskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeskOutlinedFilled as default } diff --git a/src/IconDeskRoundedFilled.tsx b/src/IconDeskRoundedFilled.tsx new file mode 100644 index 000000000..715a54f9b --- /dev/null +++ b/src/IconDeskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeskRoundedFilled as default } diff --git a/src/IconDeskSharpFilled.tsx b/src/IconDeskSharpFilled.tsx new file mode 100644 index 000000000..9ac7bc6b6 --- /dev/null +++ b/src/IconDeskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeskSharpFilled as default } diff --git a/src/IconDeskphoneOutlinedFilled.tsx b/src/IconDeskphoneOutlinedFilled.tsx new file mode 100644 index 000000000..8058c62e9 --- /dev/null +++ b/src/IconDeskphoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskphoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeskphoneOutlinedFilled as default } diff --git a/src/IconDeskphoneRoundedFilled.tsx b/src/IconDeskphoneRoundedFilled.tsx new file mode 100644 index 000000000..7018050fd --- /dev/null +++ b/src/IconDeskphoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskphoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeskphoneRoundedFilled as default } diff --git a/src/IconDeskphoneSharpFilled.tsx b/src/IconDeskphoneSharpFilled.tsx new file mode 100644 index 000000000..54f13deb5 --- /dev/null +++ b/src/IconDeskphoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeskphoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeskphoneSharpFilled as default } diff --git a/src/IconDesktopAccessDisabledOutlinedFilled.tsx b/src/IconDesktopAccessDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..a9180ce40 --- /dev/null +++ b/src/IconDesktopAccessDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopAccessDisabledOutlinedFilled as default } diff --git a/src/IconDesktopAccessDisabledRoundedFilled.tsx b/src/IconDesktopAccessDisabledRoundedFilled.tsx new file mode 100644 index 000000000..d0cb07329 --- /dev/null +++ b/src/IconDesktopAccessDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopAccessDisabledRoundedFilled as default } diff --git a/src/IconDesktopAccessDisabledSharpFilled.tsx b/src/IconDesktopAccessDisabledSharpFilled.tsx new file mode 100644 index 000000000..445f30f72 --- /dev/null +++ b/src/IconDesktopAccessDisabledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopAccessDisabledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopAccessDisabledSharpFilled as default } diff --git a/src/IconDesktopLandscapeAddOutlinedFilled.tsx b/src/IconDesktopLandscapeAddOutlinedFilled.tsx new file mode 100644 index 000000000..c6951a2c2 --- /dev/null +++ b/src/IconDesktopLandscapeAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopLandscapeAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopLandscapeAddOutlinedFilled as default } diff --git a/src/IconDesktopLandscapeAddRoundedFilled.tsx b/src/IconDesktopLandscapeAddRoundedFilled.tsx new file mode 100644 index 000000000..c88ed2c7d --- /dev/null +++ b/src/IconDesktopLandscapeAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopLandscapeAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopLandscapeAddRoundedFilled as default } diff --git a/src/IconDesktopLandscapeAddSharpFilled.tsx b/src/IconDesktopLandscapeAddSharpFilled.tsx new file mode 100644 index 000000000..259f0bc56 --- /dev/null +++ b/src/IconDesktopLandscapeAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopLandscapeAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopLandscapeAddSharpFilled as default } diff --git a/src/IconDesktopLandscapeOutlinedFilled.tsx b/src/IconDesktopLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..102274ec4 --- /dev/null +++ b/src/IconDesktopLandscapeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopLandscapeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopLandscapeOutlinedFilled as default } diff --git a/src/IconDesktopLandscapeRoundedFilled.tsx b/src/IconDesktopLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..484fd9e7f --- /dev/null +++ b/src/IconDesktopLandscapeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopLandscapeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopLandscapeRoundedFilled as default } diff --git a/src/IconDesktopLandscapeSharpFilled.tsx b/src/IconDesktopLandscapeSharpFilled.tsx new file mode 100644 index 000000000..d315b95e3 --- /dev/null +++ b/src/IconDesktopLandscapeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopLandscapeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopLandscapeSharpFilled as default } diff --git a/src/IconDesktopMacOutlinedFilled.tsx b/src/IconDesktopMacOutlinedFilled.tsx new file mode 100644 index 000000000..05d40b15d --- /dev/null +++ b/src/IconDesktopMacOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopMacOutlinedFilled as default } diff --git a/src/IconDesktopMacRoundedFilled.tsx b/src/IconDesktopMacRoundedFilled.tsx new file mode 100644 index 000000000..39f0b8f6e --- /dev/null +++ b/src/IconDesktopMacRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopMacRoundedFilled as default } diff --git a/src/IconDesktopMacSharpFilled.tsx b/src/IconDesktopMacSharpFilled.tsx new file mode 100644 index 000000000..e3a004655 --- /dev/null +++ b/src/IconDesktopMacSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopMacSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopMacSharpFilled as default } diff --git a/src/IconDesktopPortraitOutlinedFilled.tsx b/src/IconDesktopPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..13a66bbf0 --- /dev/null +++ b/src/IconDesktopPortraitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopPortraitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopPortraitOutlinedFilled as default } diff --git a/src/IconDesktopPortraitRoundedFilled.tsx b/src/IconDesktopPortraitRoundedFilled.tsx new file mode 100644 index 000000000..934f7254f --- /dev/null +++ b/src/IconDesktopPortraitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopPortraitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopPortraitRoundedFilled as default } diff --git a/src/IconDesktopPortraitSharpFilled.tsx b/src/IconDesktopPortraitSharpFilled.tsx new file mode 100644 index 000000000..878531c9d --- /dev/null +++ b/src/IconDesktopPortraitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopPortraitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopPortraitSharpFilled as default } diff --git a/src/IconDesktopWindowsOutlinedFilled.tsx b/src/IconDesktopWindowsOutlinedFilled.tsx new file mode 100644 index 000000000..1506a1d13 --- /dev/null +++ b/src/IconDesktopWindowsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopWindowsOutlinedFilled as default } diff --git a/src/IconDesktopWindowsRoundedFilled.tsx b/src/IconDesktopWindowsRoundedFilled.tsx new file mode 100644 index 000000000..7674a1a21 --- /dev/null +++ b/src/IconDesktopWindowsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopWindowsRoundedFilled as default } diff --git a/src/IconDesktopWindowsSharpFilled.tsx b/src/IconDesktopWindowsSharpFilled.tsx new file mode 100644 index 000000000..8b5c8b75f --- /dev/null +++ b/src/IconDesktopWindowsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDesktopWindowsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDesktopWindowsSharpFilled as default } diff --git a/src/IconDestructionOutlinedFilled.tsx b/src/IconDestructionOutlinedFilled.tsx new file mode 100644 index 000000000..58d159710 --- /dev/null +++ b/src/IconDestructionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDestructionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDestructionOutlinedFilled as default } diff --git a/src/IconDestructionRoundedFilled.tsx b/src/IconDestructionRoundedFilled.tsx new file mode 100644 index 000000000..76496e412 --- /dev/null +++ b/src/IconDestructionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDestructionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDestructionRoundedFilled as default } diff --git a/src/IconDestructionSharpFilled.tsx b/src/IconDestructionSharpFilled.tsx new file mode 100644 index 000000000..57129b460 --- /dev/null +++ b/src/IconDestructionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDestructionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDestructionSharpFilled as default } diff --git a/src/IconDetailsOutlinedFilled.tsx b/src/IconDetailsOutlinedFilled.tsx new file mode 100644 index 000000000..36261d0c0 --- /dev/null +++ b/src/IconDetailsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetailsOutlinedFilled as default } diff --git a/src/IconDetailsRoundedFilled.tsx b/src/IconDetailsRoundedFilled.tsx new file mode 100644 index 000000000..37151711d --- /dev/null +++ b/src/IconDetailsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetailsRoundedFilled as default } diff --git a/src/IconDetailsSharpFilled.tsx b/src/IconDetailsSharpFilled.tsx new file mode 100644 index 000000000..ed989b801 --- /dev/null +++ b/src/IconDetailsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetailsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetailsSharpFilled as default } diff --git a/src/IconDetectionAndZoneOutlinedFilled.tsx b/src/IconDetectionAndZoneOutlinedFilled.tsx new file mode 100644 index 000000000..77265db6b --- /dev/null +++ b/src/IconDetectionAndZoneOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectionAndZoneOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectionAndZoneOutlinedFilled as default } diff --git a/src/IconDetectionAndZoneRoundedFilled.tsx b/src/IconDetectionAndZoneRoundedFilled.tsx new file mode 100644 index 000000000..58be3fd2b --- /dev/null +++ b/src/IconDetectionAndZoneRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectionAndZoneRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectionAndZoneRoundedFilled as default } diff --git a/src/IconDetectionAndZoneSharpFilled.tsx b/src/IconDetectionAndZoneSharpFilled.tsx new file mode 100644 index 000000000..375271cf0 --- /dev/null +++ b/src/IconDetectionAndZoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectionAndZoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectionAndZoneSharpFilled as default } diff --git a/src/IconDetectorAlarmOutlinedFilled.tsx b/src/IconDetectorAlarmOutlinedFilled.tsx new file mode 100644 index 000000000..187363b9d --- /dev/null +++ b/src/IconDetectorAlarmOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorAlarmOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorAlarmOutlinedFilled as default } diff --git a/src/IconDetectorAlarmRoundedFilled.tsx b/src/IconDetectorAlarmRoundedFilled.tsx new file mode 100644 index 000000000..8180651d9 --- /dev/null +++ b/src/IconDetectorAlarmRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorAlarmRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorAlarmRoundedFilled as default } diff --git a/src/IconDetectorAlarmSharpFilled.tsx b/src/IconDetectorAlarmSharpFilled.tsx new file mode 100644 index 000000000..02774715a --- /dev/null +++ b/src/IconDetectorAlarmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorAlarmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorAlarmSharpFilled as default } diff --git a/src/IconDetectorBatteryOutlinedFilled.tsx b/src/IconDetectorBatteryOutlinedFilled.tsx new file mode 100644 index 000000000..a69bf9a00 --- /dev/null +++ b/src/IconDetectorBatteryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorBatteryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorBatteryOutlinedFilled as default } diff --git a/src/IconDetectorBatteryRoundedFilled.tsx b/src/IconDetectorBatteryRoundedFilled.tsx new file mode 100644 index 000000000..96c9b4cf2 --- /dev/null +++ b/src/IconDetectorBatteryRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorBatteryRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorBatteryRoundedFilled as default } diff --git a/src/IconDetectorBatterySharpFilled.tsx b/src/IconDetectorBatterySharpFilled.tsx new file mode 100644 index 000000000..ab997ca04 --- /dev/null +++ b/src/IconDetectorBatterySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorBatterySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorBatterySharpFilled as default } diff --git a/src/IconDetectorCoOutlinedFilled.tsx b/src/IconDetectorCoOutlinedFilled.tsx new file mode 100644 index 000000000..2d0037200 --- /dev/null +++ b/src/IconDetectorCoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorCoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorCoOutlinedFilled as default } diff --git a/src/IconDetectorCoRoundedFilled.tsx b/src/IconDetectorCoRoundedFilled.tsx new file mode 100644 index 000000000..d8e5508e2 --- /dev/null +++ b/src/IconDetectorCoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorCoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorCoRoundedFilled as default } diff --git a/src/IconDetectorCoSharpFilled.tsx b/src/IconDetectorCoSharpFilled.tsx new file mode 100644 index 000000000..0ee345f20 --- /dev/null +++ b/src/IconDetectorCoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorCoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorCoSharpFilled as default } diff --git a/src/IconDetectorOfflineOutlinedFilled.tsx b/src/IconDetectorOfflineOutlinedFilled.tsx new file mode 100644 index 000000000..85e35c4b7 --- /dev/null +++ b/src/IconDetectorOfflineOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorOfflineOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorOfflineOutlinedFilled as default } diff --git a/src/IconDetectorOfflineRoundedFilled.tsx b/src/IconDetectorOfflineRoundedFilled.tsx new file mode 100644 index 000000000..fa1f597f3 --- /dev/null +++ b/src/IconDetectorOfflineRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorOfflineRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorOfflineRoundedFilled as default } diff --git a/src/IconDetectorOfflineSharpFilled.tsx b/src/IconDetectorOfflineSharpFilled.tsx new file mode 100644 index 000000000..884dea126 --- /dev/null +++ b/src/IconDetectorOfflineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorOfflineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorOfflineSharpFilled as default } diff --git a/src/IconDetectorOutlinedFilled.tsx b/src/IconDetectorOutlinedFilled.tsx new file mode 100644 index 000000000..3f998082b --- /dev/null +++ b/src/IconDetectorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorOutlinedFilled as default } diff --git a/src/IconDetectorRoundedFilled.tsx b/src/IconDetectorRoundedFilled.tsx new file mode 100644 index 000000000..1fcbb7639 --- /dev/null +++ b/src/IconDetectorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorRoundedFilled as default } diff --git a/src/IconDetectorSharpFilled.tsx b/src/IconDetectorSharpFilled.tsx new file mode 100644 index 000000000..39fb8c452 --- /dev/null +++ b/src/IconDetectorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorSharpFilled as default } diff --git a/src/IconDetectorSmokeOutlinedFilled.tsx b/src/IconDetectorSmokeOutlinedFilled.tsx new file mode 100644 index 000000000..e53c6aaca --- /dev/null +++ b/src/IconDetectorSmokeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorSmokeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorSmokeOutlinedFilled as default } diff --git a/src/IconDetectorSmokeRoundedFilled.tsx b/src/IconDetectorSmokeRoundedFilled.tsx new file mode 100644 index 000000000..43a876663 --- /dev/null +++ b/src/IconDetectorSmokeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorSmokeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorSmokeRoundedFilled as default } diff --git a/src/IconDetectorSmokeSharpFilled.tsx b/src/IconDetectorSmokeSharpFilled.tsx new file mode 100644 index 000000000..5bf26f5f0 --- /dev/null +++ b/src/IconDetectorSmokeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorSmokeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorSmokeSharpFilled as default } diff --git a/src/IconDetectorStatusOutlinedFilled.tsx b/src/IconDetectorStatusOutlinedFilled.tsx new file mode 100644 index 000000000..135d84472 --- /dev/null +++ b/src/IconDetectorStatusOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorStatusOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorStatusOutlinedFilled as default } diff --git a/src/IconDetectorStatusRoundedFilled.tsx b/src/IconDetectorStatusRoundedFilled.tsx new file mode 100644 index 000000000..edaf98c1d --- /dev/null +++ b/src/IconDetectorStatusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorStatusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorStatusRoundedFilled as default } diff --git a/src/IconDetectorStatusSharpFilled.tsx b/src/IconDetectorStatusSharpFilled.tsx new file mode 100644 index 000000000..a2491a8ce --- /dev/null +++ b/src/IconDetectorStatusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDetectorStatusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDetectorStatusSharpFilled as default } diff --git a/src/IconDeveloperBoardOffOutlinedFilled.tsx b/src/IconDeveloperBoardOffOutlinedFilled.tsx new file mode 100644 index 000000000..338ecb0b9 --- /dev/null +++ b/src/IconDeveloperBoardOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardOffOutlinedFilled as default } diff --git a/src/IconDeveloperBoardOffRoundedFilled.tsx b/src/IconDeveloperBoardOffRoundedFilled.tsx new file mode 100644 index 000000000..7fb70534e --- /dev/null +++ b/src/IconDeveloperBoardOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardOffRoundedFilled as default } diff --git a/src/IconDeveloperBoardOffSharpFilled.tsx b/src/IconDeveloperBoardOffSharpFilled.tsx new file mode 100644 index 000000000..27ac94969 --- /dev/null +++ b/src/IconDeveloperBoardOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardOffSharpFilled as default } diff --git a/src/IconDeveloperBoardOutlinedFilled.tsx b/src/IconDeveloperBoardOutlinedFilled.tsx new file mode 100644 index 000000000..5d7efd276 --- /dev/null +++ b/src/IconDeveloperBoardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardOutlinedFilled as default } diff --git a/src/IconDeveloperBoardRoundedFilled.tsx b/src/IconDeveloperBoardRoundedFilled.tsx new file mode 100644 index 000000000..933979063 --- /dev/null +++ b/src/IconDeveloperBoardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardRoundedFilled as default } diff --git a/src/IconDeveloperBoardSharpFilled.tsx b/src/IconDeveloperBoardSharpFilled.tsx new file mode 100644 index 000000000..6c2dd82d1 --- /dev/null +++ b/src/IconDeveloperBoardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperBoardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperBoardSharpFilled as default } diff --git a/src/IconDeveloperGuideOutlinedFilled.tsx b/src/IconDeveloperGuideOutlinedFilled.tsx new file mode 100644 index 000000000..b5ca33f1e --- /dev/null +++ b/src/IconDeveloperGuideOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperGuideOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperGuideOutlinedFilled as default } diff --git a/src/IconDeveloperGuideRoundedFilled.tsx b/src/IconDeveloperGuideRoundedFilled.tsx new file mode 100644 index 000000000..22b156dbd --- /dev/null +++ b/src/IconDeveloperGuideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperGuideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperGuideRoundedFilled as default } diff --git a/src/IconDeveloperGuideSharpFilled.tsx b/src/IconDeveloperGuideSharpFilled.tsx new file mode 100644 index 000000000..26de8ae47 --- /dev/null +++ b/src/IconDeveloperGuideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperGuideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperGuideSharpFilled as default } diff --git a/src/IconDeveloperModeOutlinedFilled.tsx b/src/IconDeveloperModeOutlinedFilled.tsx new file mode 100644 index 000000000..d05e06e98 --- /dev/null +++ b/src/IconDeveloperModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperModeOutlinedFilled as default } diff --git a/src/IconDeveloperModeRoundedFilled.tsx b/src/IconDeveloperModeRoundedFilled.tsx new file mode 100644 index 000000000..4d58f1c57 --- /dev/null +++ b/src/IconDeveloperModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperModeRoundedFilled as default } diff --git a/src/IconDeveloperModeSharpFilled.tsx b/src/IconDeveloperModeSharpFilled.tsx new file mode 100644 index 000000000..3c8a16834 --- /dev/null +++ b/src/IconDeveloperModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperModeSharpFilled as default } diff --git a/src/IconDeveloperModeTvOutlinedFilled.tsx b/src/IconDeveloperModeTvOutlinedFilled.tsx new file mode 100644 index 000000000..e8c5b336a --- /dev/null +++ b/src/IconDeveloperModeTvOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeTvOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperModeTvOutlinedFilled as default } diff --git a/src/IconDeveloperModeTvRoundedFilled.tsx b/src/IconDeveloperModeTvRoundedFilled.tsx new file mode 100644 index 000000000..6cd231281 --- /dev/null +++ b/src/IconDeveloperModeTvRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeTvRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperModeTvRoundedFilled as default } diff --git a/src/IconDeveloperModeTvSharpFilled.tsx b/src/IconDeveloperModeTvSharpFilled.tsx new file mode 100644 index 000000000..7b01caa7f --- /dev/null +++ b/src/IconDeveloperModeTvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeveloperModeTvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeveloperModeTvSharpFilled as default } diff --git a/src/IconDeviceHubOutlinedFilled.tsx b/src/IconDeviceHubOutlinedFilled.tsx new file mode 100644 index 000000000..25b3646a0 --- /dev/null +++ b/src/IconDeviceHubOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceHubOutlinedFilled as default } diff --git a/src/IconDeviceHubRoundedFilled.tsx b/src/IconDeviceHubRoundedFilled.tsx new file mode 100644 index 000000000..a6026ceb1 --- /dev/null +++ b/src/IconDeviceHubRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceHubRoundedFilled as default } diff --git a/src/IconDeviceHubSharpFilled.tsx b/src/IconDeviceHubSharpFilled.tsx new file mode 100644 index 000000000..d98373b0e --- /dev/null +++ b/src/IconDeviceHubSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceHubSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceHubSharpFilled as default } diff --git a/src/IconDeviceThermostatOutlinedFilled.tsx b/src/IconDeviceThermostatOutlinedFilled.tsx new file mode 100644 index 000000000..8046467c9 --- /dev/null +++ b/src/IconDeviceThermostatOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceThermostatOutlinedFilled as default } diff --git a/src/IconDeviceThermostatRoundedFilled.tsx b/src/IconDeviceThermostatRoundedFilled.tsx new file mode 100644 index 000000000..3cb20540c --- /dev/null +++ b/src/IconDeviceThermostatRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceThermostatRoundedFilled as default } diff --git a/src/IconDeviceThermostatSharpFilled.tsx b/src/IconDeviceThermostatSharpFilled.tsx new file mode 100644 index 000000000..c0fd76acb --- /dev/null +++ b/src/IconDeviceThermostatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceThermostatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceThermostatSharpFilled as default } diff --git a/src/IconDeviceUnknownOutlinedFilled.tsx b/src/IconDeviceUnknownOutlinedFilled.tsx new file mode 100644 index 000000000..39ee3117d --- /dev/null +++ b/src/IconDeviceUnknownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceUnknownOutlinedFilled as default } diff --git a/src/IconDeviceUnknownRoundedFilled.tsx b/src/IconDeviceUnknownRoundedFilled.tsx new file mode 100644 index 000000000..0bdd16ba0 --- /dev/null +++ b/src/IconDeviceUnknownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceUnknownRoundedFilled as default } diff --git a/src/IconDeviceUnknownSharpFilled.tsx b/src/IconDeviceUnknownSharpFilled.tsx new file mode 100644 index 000000000..ea1177e64 --- /dev/null +++ b/src/IconDeviceUnknownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDeviceUnknownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDeviceUnknownSharpFilled as default } diff --git a/src/IconDevicesFold2OutlinedFilled.tsx b/src/IconDevicesFold2OutlinedFilled.tsx new file mode 100644 index 000000000..543a6c78d --- /dev/null +++ b/src/IconDevicesFold2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFold2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesFold2OutlinedFilled as default } diff --git a/src/IconDevicesFold2RoundedFilled.tsx b/src/IconDevicesFold2RoundedFilled.tsx new file mode 100644 index 000000000..1bad83bcd --- /dev/null +++ b/src/IconDevicesFold2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFold2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesFold2RoundedFilled as default } diff --git a/src/IconDevicesFold2SharpFilled.tsx b/src/IconDevicesFold2SharpFilled.tsx new file mode 100644 index 000000000..4372860f4 --- /dev/null +++ b/src/IconDevicesFold2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFold2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesFold2SharpFilled as default } diff --git a/src/IconDevicesFoldOutlinedFilled.tsx b/src/IconDevicesFoldOutlinedFilled.tsx new file mode 100644 index 000000000..ca9325f3d --- /dev/null +++ b/src/IconDevicesFoldOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesFoldOutlinedFilled as default } diff --git a/src/IconDevicesFoldRoundedFilled.tsx b/src/IconDevicesFoldRoundedFilled.tsx new file mode 100644 index 000000000..01839162b --- /dev/null +++ b/src/IconDevicesFoldRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesFoldRoundedFilled as default } diff --git a/src/IconDevicesFoldSharpFilled.tsx b/src/IconDevicesFoldSharpFilled.tsx new file mode 100644 index 000000000..8020818d6 --- /dev/null +++ b/src/IconDevicesFoldSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesFoldSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesFoldSharpFilled as default } diff --git a/src/IconDevicesOffOutlinedFilled.tsx b/src/IconDevicesOffOutlinedFilled.tsx new file mode 100644 index 000000000..1a65dbe68 --- /dev/null +++ b/src/IconDevicesOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOffOutlinedFilled as default } diff --git a/src/IconDevicesOffRoundedFilled.tsx b/src/IconDevicesOffRoundedFilled.tsx new file mode 100644 index 000000000..b021d6d86 --- /dev/null +++ b/src/IconDevicesOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOffRoundedFilled as default } diff --git a/src/IconDevicesOffSharpFilled.tsx b/src/IconDevicesOffSharpFilled.tsx new file mode 100644 index 000000000..21f5f1c27 --- /dev/null +++ b/src/IconDevicesOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOffSharpFilled as default } diff --git a/src/IconDevicesOtherOutlinedFilled.tsx b/src/IconDevicesOtherOutlinedFilled.tsx new file mode 100644 index 000000000..821b6bdc9 --- /dev/null +++ b/src/IconDevicesOtherOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOtherOutlinedFilled as default } diff --git a/src/IconDevicesOtherRoundedFilled.tsx b/src/IconDevicesOtherRoundedFilled.tsx new file mode 100644 index 000000000..fcf9f0fea --- /dev/null +++ b/src/IconDevicesOtherRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOtherRoundedFilled as default } diff --git a/src/IconDevicesOtherSharpFilled.tsx b/src/IconDevicesOtherSharpFilled.tsx new file mode 100644 index 000000000..02932a12c --- /dev/null +++ b/src/IconDevicesOtherSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOtherSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOtherSharpFilled as default } diff --git a/src/IconDevicesOutlinedFilled.tsx b/src/IconDevicesOutlinedFilled.tsx new file mode 100644 index 000000000..6c44d825b --- /dev/null +++ b/src/IconDevicesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesOutlinedFilled as default } diff --git a/src/IconDevicesRoundedFilled.tsx b/src/IconDevicesRoundedFilled.tsx new file mode 100644 index 000000000..ed8e5680c --- /dev/null +++ b/src/IconDevicesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesRoundedFilled as default } diff --git a/src/IconDevicesSharpFilled.tsx b/src/IconDevicesSharpFilled.tsx new file mode 100644 index 000000000..868075841 --- /dev/null +++ b/src/IconDevicesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesSharpFilled as default } diff --git a/src/IconDevicesWearablesOutlinedFilled.tsx b/src/IconDevicesWearablesOutlinedFilled.tsx new file mode 100644 index 000000000..64d4ec91f --- /dev/null +++ b/src/IconDevicesWearablesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesWearablesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesWearablesOutlinedFilled as default } diff --git a/src/IconDevicesWearablesRoundedFilled.tsx b/src/IconDevicesWearablesRoundedFilled.tsx new file mode 100644 index 000000000..4a78e7cca --- /dev/null +++ b/src/IconDevicesWearablesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesWearablesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesWearablesRoundedFilled as default } diff --git a/src/IconDevicesWearablesSharpFilled.tsx b/src/IconDevicesWearablesSharpFilled.tsx new file mode 100644 index 000000000..6a20dee42 --- /dev/null +++ b/src/IconDevicesWearablesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDevicesWearablesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDevicesWearablesSharpFilled as default } diff --git a/src/IconDewPointOutlinedFilled.tsx b/src/IconDewPointOutlinedFilled.tsx new file mode 100644 index 000000000..03722e4c0 --- /dev/null +++ b/src/IconDewPointOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDewPointOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDewPointOutlinedFilled as default } diff --git a/src/IconDewPointRoundedFilled.tsx b/src/IconDewPointRoundedFilled.tsx new file mode 100644 index 000000000..e6460a33e --- /dev/null +++ b/src/IconDewPointRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDewPointRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDewPointRoundedFilled as default } diff --git a/src/IconDewPointSharpFilled.tsx b/src/IconDewPointSharpFilled.tsx new file mode 100644 index 000000000..6db32df2b --- /dev/null +++ b/src/IconDewPointSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDewPointSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDewPointSharpFilled as default } diff --git a/src/IconDiagnosisOutlinedFilled.tsx b/src/IconDiagnosisOutlinedFilled.tsx new file mode 100644 index 000000000..def90cb26 --- /dev/null +++ b/src/IconDiagnosisOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiagnosisOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiagnosisOutlinedFilled as default } diff --git a/src/IconDiagnosisRoundedFilled.tsx b/src/IconDiagnosisRoundedFilled.tsx new file mode 100644 index 000000000..6c0e185ce --- /dev/null +++ b/src/IconDiagnosisRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiagnosisRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiagnosisRoundedFilled as default } diff --git a/src/IconDiagnosisSharpFilled.tsx b/src/IconDiagnosisSharpFilled.tsx new file mode 100644 index 000000000..7926c56a5 --- /dev/null +++ b/src/IconDiagnosisSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiagnosisSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiagnosisSharpFilled as default } diff --git a/src/IconDiagonalLineOutlinedFilled.tsx b/src/IconDiagonalLineOutlinedFilled.tsx new file mode 100644 index 000000000..dc373e015 --- /dev/null +++ b/src/IconDiagonalLineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiagonalLineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiagonalLineOutlinedFilled as default } diff --git a/src/IconDiagonalLineRoundedFilled.tsx b/src/IconDiagonalLineRoundedFilled.tsx new file mode 100644 index 000000000..ce8074705 --- /dev/null +++ b/src/IconDiagonalLineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiagonalLineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiagonalLineRoundedFilled as default } diff --git a/src/IconDiagonalLineSharpFilled.tsx b/src/IconDiagonalLineSharpFilled.tsx new file mode 100644 index 000000000..20ba73a75 --- /dev/null +++ b/src/IconDiagonalLineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiagonalLineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiagonalLineSharpFilled as default } diff --git a/src/IconDialerSipOutlinedFilled.tsx b/src/IconDialerSipOutlinedFilled.tsx new file mode 100644 index 000000000..447e8b4dc --- /dev/null +++ b/src/IconDialerSipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialerSipOutlinedFilled as default } diff --git a/src/IconDialerSipRoundedFilled.tsx b/src/IconDialerSipRoundedFilled.tsx new file mode 100644 index 000000000..064d121d2 --- /dev/null +++ b/src/IconDialerSipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialerSipRoundedFilled as default } diff --git a/src/IconDialerSipSharpFilled.tsx b/src/IconDialerSipSharpFilled.tsx new file mode 100644 index 000000000..14a87e7ae --- /dev/null +++ b/src/IconDialerSipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialerSipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialerSipSharpFilled as default } diff --git a/src/IconDialogsOutlinedFilled.tsx b/src/IconDialogsOutlinedFilled.tsx new file mode 100644 index 000000000..d68715d8e --- /dev/null +++ b/src/IconDialogsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialogsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialogsOutlinedFilled as default } diff --git a/src/IconDialogsRoundedFilled.tsx b/src/IconDialogsRoundedFilled.tsx new file mode 100644 index 000000000..3614701db --- /dev/null +++ b/src/IconDialogsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialogsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialogsRoundedFilled as default } diff --git a/src/IconDialogsSharpFilled.tsx b/src/IconDialogsSharpFilled.tsx new file mode 100644 index 000000000..c6984a418 --- /dev/null +++ b/src/IconDialogsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialogsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialogsSharpFilled as default } diff --git a/src/IconDialpadOutlinedFilled.tsx b/src/IconDialpadOutlinedFilled.tsx new file mode 100644 index 000000000..d65470710 --- /dev/null +++ b/src/IconDialpadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialpadOutlinedFilled as default } diff --git a/src/IconDialpadRoundedFilled.tsx b/src/IconDialpadRoundedFilled.tsx new file mode 100644 index 000000000..76410d003 --- /dev/null +++ b/src/IconDialpadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialpadRoundedFilled as default } diff --git a/src/IconDialpadSharpFilled.tsx b/src/IconDialpadSharpFilled.tsx new file mode 100644 index 000000000..305dcbe4c --- /dev/null +++ b/src/IconDialpadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDialpadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDialpadSharpFilled as default } diff --git a/src/IconDiamondOutlinedFilled.tsx b/src/IconDiamondOutlinedFilled.tsx new file mode 100644 index 000000000..43e19b3d8 --- /dev/null +++ b/src/IconDiamondOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiamondOutlinedFilled as default } diff --git a/src/IconDiamondRoundedFilled.tsx b/src/IconDiamondRoundedFilled.tsx new file mode 100644 index 000000000..a466c91b8 --- /dev/null +++ b/src/IconDiamondRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiamondRoundedFilled as default } diff --git a/src/IconDiamondSharpFilled.tsx b/src/IconDiamondSharpFilled.tsx new file mode 100644 index 000000000..628bb494b --- /dev/null +++ b/src/IconDiamondSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiamondSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiamondSharpFilled as default } diff --git a/src/IconDictionaryOutlinedFilled.tsx b/src/IconDictionaryOutlinedFilled.tsx new file mode 100644 index 000000000..d9a2878c7 --- /dev/null +++ b/src/IconDictionaryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDictionaryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDictionaryOutlinedFilled as default } diff --git a/src/IconDictionaryRoundedFilled.tsx b/src/IconDictionaryRoundedFilled.tsx new file mode 100644 index 000000000..95179dfca --- /dev/null +++ b/src/IconDictionaryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDictionaryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDictionaryRoundedFilled as default } diff --git a/src/IconDictionarySharpFilled.tsx b/src/IconDictionarySharpFilled.tsx new file mode 100644 index 000000000..457fe8489 --- /dev/null +++ b/src/IconDictionarySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDictionarySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDictionarySharpFilled as default } diff --git a/src/IconDifferenceOutlinedFilled.tsx b/src/IconDifferenceOutlinedFilled.tsx new file mode 100644 index 000000000..37c3e309e --- /dev/null +++ b/src/IconDifferenceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDifferenceOutlinedFilled as default } diff --git a/src/IconDifferenceRoundedFilled.tsx b/src/IconDifferenceRoundedFilled.tsx new file mode 100644 index 000000000..563501952 --- /dev/null +++ b/src/IconDifferenceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDifferenceRoundedFilled as default } diff --git a/src/IconDifferenceSharpFilled.tsx b/src/IconDifferenceSharpFilled.tsx new file mode 100644 index 000000000..670446a6c --- /dev/null +++ b/src/IconDifferenceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDifferenceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDifferenceSharpFilled as default } diff --git a/src/IconDigitalOutOfHomeOutlinedFilled.tsx b/src/IconDigitalOutOfHomeOutlinedFilled.tsx new file mode 100644 index 000000000..231cfc40d --- /dev/null +++ b/src/IconDigitalOutOfHomeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDigitalOutOfHomeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDigitalOutOfHomeOutlinedFilled as default } diff --git a/src/IconDigitalOutOfHomeRoundedFilled.tsx b/src/IconDigitalOutOfHomeRoundedFilled.tsx new file mode 100644 index 000000000..799111ab3 --- /dev/null +++ b/src/IconDigitalOutOfHomeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDigitalOutOfHomeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDigitalOutOfHomeRoundedFilled as default } diff --git a/src/IconDigitalOutOfHomeSharpFilled.tsx b/src/IconDigitalOutOfHomeSharpFilled.tsx new file mode 100644 index 000000000..2e2c0f238 --- /dev/null +++ b/src/IconDigitalOutOfHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDigitalOutOfHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDigitalOutOfHomeSharpFilled as default } diff --git a/src/IconDigitalWellbeingOutlinedFilled.tsx b/src/IconDigitalWellbeingOutlinedFilled.tsx new file mode 100644 index 000000000..1e1cbb256 --- /dev/null +++ b/src/IconDigitalWellbeingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDigitalWellbeingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDigitalWellbeingOutlinedFilled as default } diff --git a/src/IconDigitalWellbeingRoundedFilled.tsx b/src/IconDigitalWellbeingRoundedFilled.tsx new file mode 100644 index 000000000..0ecc522c3 --- /dev/null +++ b/src/IconDigitalWellbeingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDigitalWellbeingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDigitalWellbeingRoundedFilled as default } diff --git a/src/IconDigitalWellbeingSharpFilled.tsx b/src/IconDigitalWellbeingSharpFilled.tsx new file mode 100644 index 000000000..180d1feb3 --- /dev/null +++ b/src/IconDigitalWellbeingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDigitalWellbeingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDigitalWellbeingSharpFilled as default } diff --git a/src/IconDiningOutlinedFilled.tsx b/src/IconDiningOutlinedFilled.tsx new file mode 100644 index 000000000..9cbe79859 --- /dev/null +++ b/src/IconDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiningOutlinedFilled as default } diff --git a/src/IconDiningRoundedFilled.tsx b/src/IconDiningRoundedFilled.tsx new file mode 100644 index 000000000..eb2d99a9d --- /dev/null +++ b/src/IconDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiningRoundedFilled as default } diff --git a/src/IconDiningSharpFilled.tsx b/src/IconDiningSharpFilled.tsx new file mode 100644 index 000000000..b24e8d8bc --- /dev/null +++ b/src/IconDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiningSharpFilled as default } diff --git a/src/IconDinnerDiningOutlinedFilled.tsx b/src/IconDinnerDiningOutlinedFilled.tsx new file mode 100644 index 000000000..2ee560e7d --- /dev/null +++ b/src/IconDinnerDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDinnerDiningOutlinedFilled as default } diff --git a/src/IconDinnerDiningRoundedFilled.tsx b/src/IconDinnerDiningRoundedFilled.tsx new file mode 100644 index 000000000..574a183fc --- /dev/null +++ b/src/IconDinnerDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDinnerDiningRoundedFilled as default } diff --git a/src/IconDinnerDiningSharpFilled.tsx b/src/IconDinnerDiningSharpFilled.tsx new file mode 100644 index 000000000..d9b9b5b5f --- /dev/null +++ b/src/IconDinnerDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDinnerDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDinnerDiningSharpFilled as default } diff --git a/src/IconDirectionsAltOffOutlinedFilled.tsx b/src/IconDirectionsAltOffOutlinedFilled.tsx new file mode 100644 index 000000000..02b82c011 --- /dev/null +++ b/src/IconDirectionsAltOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsAltOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsAltOffOutlinedFilled as default } diff --git a/src/IconDirectionsAltOffRoundedFilled.tsx b/src/IconDirectionsAltOffRoundedFilled.tsx new file mode 100644 index 000000000..203400e5d --- /dev/null +++ b/src/IconDirectionsAltOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsAltOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsAltOffRoundedFilled as default } diff --git a/src/IconDirectionsAltOffSharpFilled.tsx b/src/IconDirectionsAltOffSharpFilled.tsx new file mode 100644 index 000000000..92dac0a8a --- /dev/null +++ b/src/IconDirectionsAltOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsAltOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsAltOffSharpFilled as default } diff --git a/src/IconDirectionsAltOutlinedFilled.tsx b/src/IconDirectionsAltOutlinedFilled.tsx new file mode 100644 index 000000000..f9ca5be40 --- /dev/null +++ b/src/IconDirectionsAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsAltOutlinedFilled as default } diff --git a/src/IconDirectionsAltRoundedFilled.tsx b/src/IconDirectionsAltRoundedFilled.tsx new file mode 100644 index 000000000..d6a340607 --- /dev/null +++ b/src/IconDirectionsAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsAltRoundedFilled as default } diff --git a/src/IconDirectionsAltSharpFilled.tsx b/src/IconDirectionsAltSharpFilled.tsx new file mode 100644 index 000000000..46d1a1ff3 --- /dev/null +++ b/src/IconDirectionsAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsAltSharpFilled as default } diff --git a/src/IconDirectionsBikeOutlinedFilled.tsx b/src/IconDirectionsBikeOutlinedFilled.tsx new file mode 100644 index 000000000..adefec64b --- /dev/null +++ b/src/IconDirectionsBikeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBikeOutlinedFilled as default } diff --git a/src/IconDirectionsBikeRoundedFilled.tsx b/src/IconDirectionsBikeRoundedFilled.tsx new file mode 100644 index 000000000..6ca415c8f --- /dev/null +++ b/src/IconDirectionsBikeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBikeRoundedFilled as default } diff --git a/src/IconDirectionsBikeSharpFilled.tsx b/src/IconDirectionsBikeSharpFilled.tsx new file mode 100644 index 000000000..fa36672ca --- /dev/null +++ b/src/IconDirectionsBikeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBikeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBikeSharpFilled as default } diff --git a/src/IconDirectionsBoatOutlinedFilled.tsx b/src/IconDirectionsBoatOutlinedFilled.tsx new file mode 100644 index 000000000..50df7f76d --- /dev/null +++ b/src/IconDirectionsBoatOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBoatOutlinedFilled as default } diff --git a/src/IconDirectionsBoatRoundedFilled.tsx b/src/IconDirectionsBoatRoundedFilled.tsx new file mode 100644 index 000000000..fbc3d477a --- /dev/null +++ b/src/IconDirectionsBoatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBoatRoundedFilled as default } diff --git a/src/IconDirectionsBoatSharpFilled.tsx b/src/IconDirectionsBoatSharpFilled.tsx new file mode 100644 index 000000000..2e9501633 --- /dev/null +++ b/src/IconDirectionsBoatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBoatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBoatSharpFilled as default } diff --git a/src/IconDirectionsBusOutlinedFilled.tsx b/src/IconDirectionsBusOutlinedFilled.tsx new file mode 100644 index 000000000..170338101 --- /dev/null +++ b/src/IconDirectionsBusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBusOutlinedFilled as default } diff --git a/src/IconDirectionsBusRoundedFilled.tsx b/src/IconDirectionsBusRoundedFilled.tsx new file mode 100644 index 000000000..38fa9b3f8 --- /dev/null +++ b/src/IconDirectionsBusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBusRoundedFilled as default } diff --git a/src/IconDirectionsBusSharpFilled.tsx b/src/IconDirectionsBusSharpFilled.tsx new file mode 100644 index 000000000..49d52cd10 --- /dev/null +++ b/src/IconDirectionsBusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsBusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsBusSharpFilled as default } diff --git a/src/IconDirectionsCarOutlinedFilled.tsx b/src/IconDirectionsCarOutlinedFilled.tsx new file mode 100644 index 000000000..e80cbeab9 --- /dev/null +++ b/src/IconDirectionsCarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsCarOutlinedFilled as default } diff --git a/src/IconDirectionsCarRoundedFilled.tsx b/src/IconDirectionsCarRoundedFilled.tsx new file mode 100644 index 000000000..568d3b8d1 --- /dev/null +++ b/src/IconDirectionsCarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsCarRoundedFilled as default } diff --git a/src/IconDirectionsCarSharpFilled.tsx b/src/IconDirectionsCarSharpFilled.tsx new file mode 100644 index 000000000..7437dfb80 --- /dev/null +++ b/src/IconDirectionsCarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsCarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsCarSharpFilled as default } diff --git a/src/IconDirectionsOffOutlinedFilled.tsx b/src/IconDirectionsOffOutlinedFilled.tsx new file mode 100644 index 000000000..9a890719f --- /dev/null +++ b/src/IconDirectionsOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsOffOutlinedFilled as default } diff --git a/src/IconDirectionsOffRoundedFilled.tsx b/src/IconDirectionsOffRoundedFilled.tsx new file mode 100644 index 000000000..3a51eb771 --- /dev/null +++ b/src/IconDirectionsOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsOffRoundedFilled as default } diff --git a/src/IconDirectionsOffSharpFilled.tsx b/src/IconDirectionsOffSharpFilled.tsx new file mode 100644 index 000000000..92cb32955 --- /dev/null +++ b/src/IconDirectionsOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsOffSharpFilled as default } diff --git a/src/IconDirectionsOutlinedFilled.tsx b/src/IconDirectionsOutlinedFilled.tsx new file mode 100644 index 000000000..dc29dba24 --- /dev/null +++ b/src/IconDirectionsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsOutlinedFilled as default } diff --git a/src/IconDirectionsRailway2OutlinedFilled.tsx b/src/IconDirectionsRailway2OutlinedFilled.tsx new file mode 100644 index 000000000..b834671ad --- /dev/null +++ b/src/IconDirectionsRailway2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailway2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRailway2OutlinedFilled as default } diff --git a/src/IconDirectionsRailway2RoundedFilled.tsx b/src/IconDirectionsRailway2RoundedFilled.tsx new file mode 100644 index 000000000..8eee4b814 --- /dev/null +++ b/src/IconDirectionsRailway2RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailway2RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRailway2RoundedFilled as default } diff --git a/src/IconDirectionsRailway2SharpFilled.tsx b/src/IconDirectionsRailway2SharpFilled.tsx new file mode 100644 index 000000000..5d618db2d --- /dev/null +++ b/src/IconDirectionsRailway2SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailway2SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRailway2SharpFilled as default } diff --git a/src/IconDirectionsRailwayOutlinedFilled.tsx b/src/IconDirectionsRailwayOutlinedFilled.tsx new file mode 100644 index 000000000..9a6056ecb --- /dev/null +++ b/src/IconDirectionsRailwayOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRailwayOutlinedFilled as default } diff --git a/src/IconDirectionsRailwayRoundedFilled.tsx b/src/IconDirectionsRailwayRoundedFilled.tsx new file mode 100644 index 000000000..3be7f93ba --- /dev/null +++ b/src/IconDirectionsRailwayRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwayRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRailwayRoundedFilled as default } diff --git a/src/IconDirectionsRailwaySharpFilled.tsx b/src/IconDirectionsRailwaySharpFilled.tsx new file mode 100644 index 000000000..a264b3f71 --- /dev/null +++ b/src/IconDirectionsRailwaySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRailwaySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRailwaySharpFilled as default } diff --git a/src/IconDirectionsRoundedFilled.tsx b/src/IconDirectionsRoundedFilled.tsx new file mode 100644 index 000000000..6e9c1dafa --- /dev/null +++ b/src/IconDirectionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRoundedFilled as default } diff --git a/src/IconDirectionsRunOutlinedFilled.tsx b/src/IconDirectionsRunOutlinedFilled.tsx new file mode 100644 index 000000000..e70e1473c --- /dev/null +++ b/src/IconDirectionsRunOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRunOutlinedFilled as default } diff --git a/src/IconDirectionsRunRoundedFilled.tsx b/src/IconDirectionsRunRoundedFilled.tsx new file mode 100644 index 000000000..1cd31825f --- /dev/null +++ b/src/IconDirectionsRunRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRunRoundedFilled as default } diff --git a/src/IconDirectionsRunSharpFilled.tsx b/src/IconDirectionsRunSharpFilled.tsx new file mode 100644 index 000000000..31be5aa02 --- /dev/null +++ b/src/IconDirectionsRunSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsRunSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsRunSharpFilled as default } diff --git a/src/IconDirectionsSharpFilled.tsx b/src/IconDirectionsSharpFilled.tsx new file mode 100644 index 000000000..4276fd379 --- /dev/null +++ b/src/IconDirectionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsSharpFilled as default } diff --git a/src/IconDirectionsSubwayOutlinedFilled.tsx b/src/IconDirectionsSubwayOutlinedFilled.tsx new file mode 100644 index 000000000..d3a24290e --- /dev/null +++ b/src/IconDirectionsSubwayOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsSubwayOutlinedFilled as default } diff --git a/src/IconDirectionsSubwayRoundedFilled.tsx b/src/IconDirectionsSubwayRoundedFilled.tsx new file mode 100644 index 000000000..b798aee8c --- /dev/null +++ b/src/IconDirectionsSubwayRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwayRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsSubwayRoundedFilled as default } diff --git a/src/IconDirectionsSubwaySharpFilled.tsx b/src/IconDirectionsSubwaySharpFilled.tsx new file mode 100644 index 000000000..9eb74139b --- /dev/null +++ b/src/IconDirectionsSubwaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsSubwaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsSubwaySharpFilled as default } diff --git a/src/IconDirectionsWalkOutlinedFilled.tsx b/src/IconDirectionsWalkOutlinedFilled.tsx new file mode 100644 index 000000000..913430763 --- /dev/null +++ b/src/IconDirectionsWalkOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsWalkOutlinedFilled as default } diff --git a/src/IconDirectionsWalkRoundedFilled.tsx b/src/IconDirectionsWalkRoundedFilled.tsx new file mode 100644 index 000000000..072466b19 --- /dev/null +++ b/src/IconDirectionsWalkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsWalkRoundedFilled as default } diff --git a/src/IconDirectionsWalkSharpFilled.tsx b/src/IconDirectionsWalkSharpFilled.tsx new file mode 100644 index 000000000..c7e058a59 --- /dev/null +++ b/src/IconDirectionsWalkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectionsWalkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectionsWalkSharpFilled as default } diff --git a/src/IconDirectorySyncOutlinedFilled.tsx b/src/IconDirectorySyncOutlinedFilled.tsx new file mode 100644 index 000000000..4e9ed2096 --- /dev/null +++ b/src/IconDirectorySyncOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectorySyncOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectorySyncOutlinedFilled as default } diff --git a/src/IconDirectorySyncRoundedFilled.tsx b/src/IconDirectorySyncRoundedFilled.tsx new file mode 100644 index 000000000..fd8a5396a --- /dev/null +++ b/src/IconDirectorySyncRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectorySyncRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectorySyncRoundedFilled as default } diff --git a/src/IconDirectorySyncSharpFilled.tsx b/src/IconDirectorySyncSharpFilled.tsx new file mode 100644 index 000000000..5d1ba0b90 --- /dev/null +++ b/src/IconDirectorySyncSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirectorySyncSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirectorySyncSharpFilled as default } diff --git a/src/IconDirtyLensOutlinedFilled.tsx b/src/IconDirtyLensOutlinedFilled.tsx new file mode 100644 index 000000000..c28035991 --- /dev/null +++ b/src/IconDirtyLensOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirtyLensOutlinedFilled as default } diff --git a/src/IconDirtyLensRoundedFilled.tsx b/src/IconDirtyLensRoundedFilled.tsx new file mode 100644 index 000000000..80b10327c --- /dev/null +++ b/src/IconDirtyLensRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirtyLensRoundedFilled as default } diff --git a/src/IconDirtyLensSharpFilled.tsx b/src/IconDirtyLensSharpFilled.tsx new file mode 100644 index 000000000..d05840872 --- /dev/null +++ b/src/IconDirtyLensSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDirtyLensSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDirtyLensSharpFilled as default } diff --git a/src/IconDisabledByDefaultOutlinedFilled.tsx b/src/IconDisabledByDefaultOutlinedFilled.tsx new file mode 100644 index 000000000..0dbad65bb --- /dev/null +++ b/src/IconDisabledByDefaultOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisabledByDefaultOutlinedFilled as default } diff --git a/src/IconDisabledByDefaultRoundedFilled.tsx b/src/IconDisabledByDefaultRoundedFilled.tsx new file mode 100644 index 000000000..5307d3bb4 --- /dev/null +++ b/src/IconDisabledByDefaultRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisabledByDefaultRoundedFilled as default } diff --git a/src/IconDisabledByDefaultSharpFilled.tsx b/src/IconDisabledByDefaultSharpFilled.tsx new file mode 100644 index 000000000..3d19a2c85 --- /dev/null +++ b/src/IconDisabledByDefaultSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledByDefaultSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisabledByDefaultSharpFilled as default } diff --git a/src/IconDisabledVisibleOutlinedFilled.tsx b/src/IconDisabledVisibleOutlinedFilled.tsx new file mode 100644 index 000000000..f92e7ed78 --- /dev/null +++ b/src/IconDisabledVisibleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisabledVisibleOutlinedFilled as default } diff --git a/src/IconDisabledVisibleRoundedFilled.tsx b/src/IconDisabledVisibleRoundedFilled.tsx new file mode 100644 index 000000000..dee52c24e --- /dev/null +++ b/src/IconDisabledVisibleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisabledVisibleRoundedFilled as default } diff --git a/src/IconDisabledVisibleSharpFilled.tsx b/src/IconDisabledVisibleSharpFilled.tsx new file mode 100644 index 000000000..9edb9ecef --- /dev/null +++ b/src/IconDisabledVisibleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisabledVisibleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDisabledVisibleSharpFilled as default } diff --git a/src/IconDiscFullOutlinedFilled.tsx b/src/IconDiscFullOutlinedFilled.tsx new file mode 100644 index 000000000..3606ac431 --- /dev/null +++ b/src/IconDiscFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiscFullOutlinedFilled as default } diff --git a/src/IconDiscFullRoundedFilled.tsx b/src/IconDiscFullRoundedFilled.tsx new file mode 100644 index 000000000..9e4bc9e77 --- /dev/null +++ b/src/IconDiscFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiscFullRoundedFilled as default } diff --git a/src/IconDiscFullSharpFilled.tsx b/src/IconDiscFullSharpFilled.tsx new file mode 100644 index 000000000..0646130a2 --- /dev/null +++ b/src/IconDiscFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiscFullSharpFilled as default } diff --git a/src/IconDiscoverTuneOutlinedFilled.tsx b/src/IconDiscoverTuneOutlinedFilled.tsx new file mode 100644 index 000000000..a59c6fba2 --- /dev/null +++ b/src/IconDiscoverTuneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscoverTuneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiscoverTuneOutlinedFilled as default } diff --git a/src/IconDiscoverTuneRoundedFilled.tsx b/src/IconDiscoverTuneRoundedFilled.tsx new file mode 100644 index 000000000..82dc8b380 --- /dev/null +++ b/src/IconDiscoverTuneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscoverTuneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiscoverTuneRoundedFilled as default } diff --git a/src/IconDiscoverTuneSharpFilled.tsx b/src/IconDiscoverTuneSharpFilled.tsx new file mode 100644 index 000000000..2a15225eb --- /dev/null +++ b/src/IconDiscoverTuneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiscoverTuneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiscoverTuneSharpFilled as default } diff --git a/src/IconDishwasherGenOutlinedFilled.tsx b/src/IconDishwasherGenOutlinedFilled.tsx new file mode 100644 index 000000000..b83f3e5a5 --- /dev/null +++ b/src/IconDishwasherGenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDishwasherGenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDishwasherGenOutlinedFilled as default } diff --git a/src/IconDishwasherGenRoundedFilled.tsx b/src/IconDishwasherGenRoundedFilled.tsx new file mode 100644 index 000000000..32a905345 --- /dev/null +++ b/src/IconDishwasherGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDishwasherGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDishwasherGenRoundedFilled as default } diff --git a/src/IconDishwasherGenSharpFilled.tsx b/src/IconDishwasherGenSharpFilled.tsx new file mode 100644 index 000000000..a946946f4 --- /dev/null +++ b/src/IconDishwasherGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDishwasherGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDishwasherGenSharpFilled as default } diff --git a/src/IconDishwasherOutlinedFilled.tsx b/src/IconDishwasherOutlinedFilled.tsx new file mode 100644 index 000000000..eafde60f4 --- /dev/null +++ b/src/IconDishwasherOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDishwasherOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDishwasherOutlinedFilled as default } diff --git a/src/IconDishwasherRoundedFilled.tsx b/src/IconDishwasherRoundedFilled.tsx new file mode 100644 index 000000000..587fbb7bc --- /dev/null +++ b/src/IconDishwasherRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDishwasherRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDishwasherRoundedFilled as default } diff --git a/src/IconDishwasherSharpFilled.tsx b/src/IconDishwasherSharpFilled.tsx new file mode 100644 index 000000000..fb04df92c --- /dev/null +++ b/src/IconDishwasherSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDishwasherSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDishwasherSharpFilled as default } diff --git a/src/IconDisplayExternalInputOutlinedFilled.tsx b/src/IconDisplayExternalInputOutlinedFilled.tsx new file mode 100644 index 000000000..ef6ad380a --- /dev/null +++ b/src/IconDisplayExternalInputOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplayExternalInputOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisplayExternalInputOutlinedFilled as default } diff --git a/src/IconDisplayExternalInputRoundedFilled.tsx b/src/IconDisplayExternalInputRoundedFilled.tsx new file mode 100644 index 000000000..8a22c38e5 --- /dev/null +++ b/src/IconDisplayExternalInputRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplayExternalInputRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisplayExternalInputRoundedFilled as default } diff --git a/src/IconDisplayExternalInputSharpFilled.tsx b/src/IconDisplayExternalInputSharpFilled.tsx new file mode 100644 index 000000000..caf1e0a9d --- /dev/null +++ b/src/IconDisplayExternalInputSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplayExternalInputSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisplayExternalInputSharpFilled as default } diff --git a/src/IconDisplaySettingsOutlinedFilled.tsx b/src/IconDisplaySettingsOutlinedFilled.tsx new file mode 100644 index 000000000..32eb0e0ed --- /dev/null +++ b/src/IconDisplaySettingsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisplaySettingsOutlinedFilled as default } diff --git a/src/IconDisplaySettingsRoundedFilled.tsx b/src/IconDisplaySettingsRoundedFilled.tsx new file mode 100644 index 000000000..0379b126b --- /dev/null +++ b/src/IconDisplaySettingsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDisplaySettingsRoundedFilled as default } diff --git a/src/IconDisplaySettingsSharpFilled.tsx b/src/IconDisplaySettingsSharpFilled.tsx new file mode 100644 index 000000000..c6b1bbb20 --- /dev/null +++ b/src/IconDisplaySettingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDisplaySettingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDisplaySettingsSharpFilled as default } diff --git a/src/IconDistanceOutlinedFilled.tsx b/src/IconDistanceOutlinedFilled.tsx new file mode 100644 index 000000000..5c5dc1661 --- /dev/null +++ b/src/IconDistanceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDistanceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDistanceOutlinedFilled as default } diff --git a/src/IconDistanceRoundedFilled.tsx b/src/IconDistanceRoundedFilled.tsx new file mode 100644 index 000000000..4cdcb23d6 --- /dev/null +++ b/src/IconDistanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDistanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDistanceRoundedFilled as default } diff --git a/src/IconDistanceSharpFilled.tsx b/src/IconDistanceSharpFilled.tsx new file mode 100644 index 000000000..1ddf6c5c5 --- /dev/null +++ b/src/IconDistanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDistanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDistanceSharpFilled as default } diff --git a/src/IconDiversity1OutlinedFilled.tsx b/src/IconDiversity1OutlinedFilled.tsx new file mode 100644 index 000000000..128cbf300 --- /dev/null +++ b/src/IconDiversity1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity1OutlinedFilled as default } diff --git a/src/IconDiversity1RoundedFilled.tsx b/src/IconDiversity1RoundedFilled.tsx new file mode 100644 index 000000000..9dc83e52a --- /dev/null +++ b/src/IconDiversity1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity1RoundedFilled as default } diff --git a/src/IconDiversity1SharpFilled.tsx b/src/IconDiversity1SharpFilled.tsx new file mode 100644 index 000000000..f1d74364f --- /dev/null +++ b/src/IconDiversity1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity1SharpFilled as default } diff --git a/src/IconDiversity2OutlinedFilled.tsx b/src/IconDiversity2OutlinedFilled.tsx new file mode 100644 index 000000000..e53137ee5 --- /dev/null +++ b/src/IconDiversity2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity2OutlinedFilled as default } diff --git a/src/IconDiversity2RoundedFilled.tsx b/src/IconDiversity2RoundedFilled.tsx new file mode 100644 index 000000000..752c1bc6b --- /dev/null +++ b/src/IconDiversity2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity2RoundedFilled as default } diff --git a/src/IconDiversity2SharpFilled.tsx b/src/IconDiversity2SharpFilled.tsx new file mode 100644 index 000000000..7d68d2300 --- /dev/null +++ b/src/IconDiversity2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity2SharpFilled as default } diff --git a/src/IconDiversity3OutlinedFilled.tsx b/src/IconDiversity3OutlinedFilled.tsx new file mode 100644 index 000000000..f7a8808d2 --- /dev/null +++ b/src/IconDiversity3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity3OutlinedFilled as default } diff --git a/src/IconDiversity3RoundedFilled.tsx b/src/IconDiversity3RoundedFilled.tsx new file mode 100644 index 000000000..97742db1b --- /dev/null +++ b/src/IconDiversity3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity3RoundedFilled as default } diff --git a/src/IconDiversity3SharpFilled.tsx b/src/IconDiversity3SharpFilled.tsx new file mode 100644 index 000000000..b99d06a6b --- /dev/null +++ b/src/IconDiversity3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity3SharpFilled as default } diff --git a/src/IconDiversity4OutlinedFilled.tsx b/src/IconDiversity4OutlinedFilled.tsx new file mode 100644 index 000000000..d07d674a2 --- /dev/null +++ b/src/IconDiversity4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity4OutlinedFilled as default } diff --git a/src/IconDiversity4RoundedFilled.tsx b/src/IconDiversity4RoundedFilled.tsx new file mode 100644 index 000000000..a4a564b77 --- /dev/null +++ b/src/IconDiversity4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity4RoundedFilled as default } diff --git a/src/IconDiversity4SharpFilled.tsx b/src/IconDiversity4SharpFilled.tsx new file mode 100644 index 000000000..f53089c72 --- /dev/null +++ b/src/IconDiversity4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDiversity4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDiversity4SharpFilled as default } diff --git a/src/IconDnsOutlinedFilled.tsx b/src/IconDnsOutlinedFilled.tsx new file mode 100644 index 000000000..6636f5591 --- /dev/null +++ b/src/IconDnsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDnsOutlinedFilled as default } diff --git a/src/IconDnsRoundedFilled.tsx b/src/IconDnsRoundedFilled.tsx new file mode 100644 index 000000000..9bcbacd8d --- /dev/null +++ b/src/IconDnsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDnsRoundedFilled as default } diff --git a/src/IconDnsSharpFilled.tsx b/src/IconDnsSharpFilled.tsx new file mode 100644 index 000000000..9a1d485a3 --- /dev/null +++ b/src/IconDnsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDnsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDnsSharpFilled as default } diff --git a/src/IconDoNotDisturbOffOutlinedFilled.tsx b/src/IconDoNotDisturbOffOutlinedFilled.tsx new file mode 100644 index 000000000..9b0d509da --- /dev/null +++ b/src/IconDoNotDisturbOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOffOutlinedFilled as default } diff --git a/src/IconDoNotDisturbOffRoundedFilled.tsx b/src/IconDoNotDisturbOffRoundedFilled.tsx new file mode 100644 index 000000000..70db8c869 --- /dev/null +++ b/src/IconDoNotDisturbOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOffRoundedFilled as default } diff --git a/src/IconDoNotDisturbOffSharpFilled.tsx b/src/IconDoNotDisturbOffSharpFilled.tsx new file mode 100644 index 000000000..f35c935aa --- /dev/null +++ b/src/IconDoNotDisturbOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOffSharpFilled as default } diff --git a/src/IconDoNotDisturbOnOutlinedFilled.tsx b/src/IconDoNotDisturbOnOutlinedFilled.tsx new file mode 100644 index 000000000..f6b2b7b3f --- /dev/null +++ b/src/IconDoNotDisturbOnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOnOutlinedFilled as default } diff --git a/src/IconDoNotDisturbOnRoundedFilled.tsx b/src/IconDoNotDisturbOnRoundedFilled.tsx new file mode 100644 index 000000000..175b1d0de --- /dev/null +++ b/src/IconDoNotDisturbOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOnRoundedFilled as default } diff --git a/src/IconDoNotDisturbOnSharpFilled.tsx b/src/IconDoNotDisturbOnSharpFilled.tsx new file mode 100644 index 000000000..769fc8f09 --- /dev/null +++ b/src/IconDoNotDisturbOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOnSharpFilled as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx b/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx new file mode 100644 index 000000000..b24b4540b --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOnTotalSilenceOutlinedFilled as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx b/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx new file mode 100644 index 000000000..c5b54b75d --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOnTotalSilenceRoundedFilled as default } diff --git a/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx b/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx new file mode 100644 index 000000000..7380fb444 --- /dev/null +++ b/src/IconDoNotDisturbOnTotalSilenceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotDisturbOnTotalSilenceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotDisturbOnTotalSilenceSharpFilled as default } diff --git a/src/IconDoNotStepOutlinedFilled.tsx b/src/IconDoNotStepOutlinedFilled.tsx new file mode 100644 index 000000000..28a60177f --- /dev/null +++ b/src/IconDoNotStepOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotStepOutlinedFilled as default } diff --git a/src/IconDoNotStepRoundedFilled.tsx b/src/IconDoNotStepRoundedFilled.tsx new file mode 100644 index 000000000..b5c2d0a43 --- /dev/null +++ b/src/IconDoNotStepRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotStepRoundedFilled as default } diff --git a/src/IconDoNotStepSharpFilled.tsx b/src/IconDoNotStepSharpFilled.tsx new file mode 100644 index 000000000..81deeb8c5 --- /dev/null +++ b/src/IconDoNotStepSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotStepSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotStepSharpFilled as default } diff --git a/src/IconDoNotTouchOutlinedFilled.tsx b/src/IconDoNotTouchOutlinedFilled.tsx new file mode 100644 index 000000000..61a45b7cc --- /dev/null +++ b/src/IconDoNotTouchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotTouchOutlinedFilled as default } diff --git a/src/IconDoNotTouchRoundedFilled.tsx b/src/IconDoNotTouchRoundedFilled.tsx new file mode 100644 index 000000000..609a79c02 --- /dev/null +++ b/src/IconDoNotTouchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotTouchRoundedFilled as default } diff --git a/src/IconDoNotTouchSharpFilled.tsx b/src/IconDoNotTouchSharpFilled.tsx new file mode 100644 index 000000000..b29cb4efe --- /dev/null +++ b/src/IconDoNotTouchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoNotTouchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoNotTouchSharpFilled as default } diff --git a/src/IconDockOutlinedFilled.tsx b/src/IconDockOutlinedFilled.tsx new file mode 100644 index 000000000..4594ea684 --- /dev/null +++ b/src/IconDockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockOutlinedFilled as default } diff --git a/src/IconDockRoundedFilled.tsx b/src/IconDockRoundedFilled.tsx new file mode 100644 index 000000000..a4c094954 --- /dev/null +++ b/src/IconDockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockRoundedFilled as default } diff --git a/src/IconDockSharpFilled.tsx b/src/IconDockSharpFilled.tsx new file mode 100644 index 000000000..42a0c6509 --- /dev/null +++ b/src/IconDockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockSharpFilled as default } diff --git a/src/IconDockToBottomOutlinedFilled.tsx b/src/IconDockToBottomOutlinedFilled.tsx new file mode 100644 index 000000000..9f0172806 --- /dev/null +++ b/src/IconDockToBottomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToBottomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToBottomOutlinedFilled as default } diff --git a/src/IconDockToBottomRoundedFilled.tsx b/src/IconDockToBottomRoundedFilled.tsx new file mode 100644 index 000000000..7eaf229a0 --- /dev/null +++ b/src/IconDockToBottomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToBottomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToBottomRoundedFilled as default } diff --git a/src/IconDockToBottomSharpFilled.tsx b/src/IconDockToBottomSharpFilled.tsx new file mode 100644 index 000000000..12f409428 --- /dev/null +++ b/src/IconDockToBottomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToBottomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToBottomSharpFilled as default } diff --git a/src/IconDockToLeftOutlinedFilled.tsx b/src/IconDockToLeftOutlinedFilled.tsx new file mode 100644 index 000000000..337bbe40e --- /dev/null +++ b/src/IconDockToLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToLeftOutlinedFilled as default } diff --git a/src/IconDockToLeftRoundedFilled.tsx b/src/IconDockToLeftRoundedFilled.tsx new file mode 100644 index 000000000..503a236a8 --- /dev/null +++ b/src/IconDockToLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToLeftRoundedFilled as default } diff --git a/src/IconDockToLeftSharpFilled.tsx b/src/IconDockToLeftSharpFilled.tsx new file mode 100644 index 000000000..f9c634b73 --- /dev/null +++ b/src/IconDockToLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToLeftSharpFilled as default } diff --git a/src/IconDockToRightOutlinedFilled.tsx b/src/IconDockToRightOutlinedFilled.tsx new file mode 100644 index 000000000..02c5f994a --- /dev/null +++ b/src/IconDockToRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToRightOutlinedFilled as default } diff --git a/src/IconDockToRightRoundedFilled.tsx b/src/IconDockToRightRoundedFilled.tsx new file mode 100644 index 000000000..5a8174a5e --- /dev/null +++ b/src/IconDockToRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToRightRoundedFilled as default } diff --git a/src/IconDockToRightSharpFilled.tsx b/src/IconDockToRightSharpFilled.tsx new file mode 100644 index 000000000..e995ed447 --- /dev/null +++ b/src/IconDockToRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDockToRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDockToRightSharpFilled as default } diff --git a/src/IconDocsAddOnOutlinedFilled.tsx b/src/IconDocsAddOnOutlinedFilled.tsx new file mode 100644 index 000000000..311ccebd1 --- /dev/null +++ b/src/IconDocsAddOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocsAddOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDocsAddOnOutlinedFilled as default } diff --git a/src/IconDocsAddOnRoundedFilled.tsx b/src/IconDocsAddOnRoundedFilled.tsx new file mode 100644 index 000000000..d519d8aaf --- /dev/null +++ b/src/IconDocsAddOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocsAddOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDocsAddOnRoundedFilled as default } diff --git a/src/IconDocsAddOnSharpFilled.tsx b/src/IconDocsAddOnSharpFilled.tsx new file mode 100644 index 000000000..b2d8588a9 --- /dev/null +++ b/src/IconDocsAddOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocsAddOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDocsAddOnSharpFilled as default } diff --git a/src/IconDocsAppsScriptOutlinedFilled.tsx b/src/IconDocsAppsScriptOutlinedFilled.tsx new file mode 100644 index 000000000..fb8005776 --- /dev/null +++ b/src/IconDocsAppsScriptOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocsAppsScriptOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDocsAppsScriptOutlinedFilled as default } diff --git a/src/IconDocsAppsScriptRoundedFilled.tsx b/src/IconDocsAppsScriptRoundedFilled.tsx new file mode 100644 index 000000000..fed8ec664 --- /dev/null +++ b/src/IconDocsAppsScriptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocsAppsScriptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDocsAppsScriptRoundedFilled as default } diff --git a/src/IconDocsAppsScriptSharpFilled.tsx b/src/IconDocsAppsScriptSharpFilled.tsx new file mode 100644 index 000000000..10a5978d6 --- /dev/null +++ b/src/IconDocsAppsScriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocsAppsScriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDocsAppsScriptSharpFilled as default } diff --git a/src/IconDocumentScannerOutlinedFilled.tsx b/src/IconDocumentScannerOutlinedFilled.tsx new file mode 100644 index 000000000..18a81a11e --- /dev/null +++ b/src/IconDocumentScannerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDocumentScannerOutlinedFilled as default } diff --git a/src/IconDocumentScannerRoundedFilled.tsx b/src/IconDocumentScannerRoundedFilled.tsx new file mode 100644 index 000000000..78bcba8ea --- /dev/null +++ b/src/IconDocumentScannerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDocumentScannerRoundedFilled as default } diff --git a/src/IconDocumentScannerSharpFilled.tsx b/src/IconDocumentScannerSharpFilled.tsx new file mode 100644 index 000000000..717ad2b7e --- /dev/null +++ b/src/IconDocumentScannerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDocumentScannerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDocumentScannerSharpFilled as default } diff --git a/src/IconDomainAddOutlinedFilled.tsx b/src/IconDomainAddOutlinedFilled.tsx new file mode 100644 index 000000000..adf14fe64 --- /dev/null +++ b/src/IconDomainAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainAddOutlinedFilled as default } diff --git a/src/IconDomainAddRoundedFilled.tsx b/src/IconDomainAddRoundedFilled.tsx new file mode 100644 index 000000000..2b7a50571 --- /dev/null +++ b/src/IconDomainAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainAddRoundedFilled as default } diff --git a/src/IconDomainAddSharpFilled.tsx b/src/IconDomainAddSharpFilled.tsx new file mode 100644 index 000000000..1edf677ae --- /dev/null +++ b/src/IconDomainAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainAddSharpFilled as default } diff --git a/src/IconDomainDisabledOutlinedFilled.tsx b/src/IconDomainDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..91683a5a2 --- /dev/null +++ b/src/IconDomainDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainDisabledOutlinedFilled as default } diff --git a/src/IconDomainDisabledRoundedFilled.tsx b/src/IconDomainDisabledRoundedFilled.tsx new file mode 100644 index 000000000..0ad169497 --- /dev/null +++ b/src/IconDomainDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainDisabledRoundedFilled as default } diff --git a/src/IconDomainDisabledSharpFilled.tsx b/src/IconDomainDisabledSharpFilled.tsx new file mode 100644 index 000000000..7f9889183 --- /dev/null +++ b/src/IconDomainDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainDisabledSharpFilled as default } diff --git a/src/IconDomainOutlinedFilled.tsx b/src/IconDomainOutlinedFilled.tsx new file mode 100644 index 000000000..a07fac9e4 --- /dev/null +++ b/src/IconDomainOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainOutlinedFilled as default } diff --git a/src/IconDomainRoundedFilled.tsx b/src/IconDomainRoundedFilled.tsx new file mode 100644 index 000000000..af2182647 --- /dev/null +++ b/src/IconDomainRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainRoundedFilled as default } diff --git a/src/IconDomainSharpFilled.tsx b/src/IconDomainSharpFilled.tsx new file mode 100644 index 000000000..74adf1b63 --- /dev/null +++ b/src/IconDomainSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainSharpFilled as default } diff --git a/src/IconDomainVerificationOffOutlinedFilled.tsx b/src/IconDomainVerificationOffOutlinedFilled.tsx new file mode 100644 index 000000000..e011af99d --- /dev/null +++ b/src/IconDomainVerificationOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainVerificationOffOutlinedFilled as default } diff --git a/src/IconDomainVerificationOffRoundedFilled.tsx b/src/IconDomainVerificationOffRoundedFilled.tsx new file mode 100644 index 000000000..1080af348 --- /dev/null +++ b/src/IconDomainVerificationOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainVerificationOffRoundedFilled as default } diff --git a/src/IconDomainVerificationOffSharpFilled.tsx b/src/IconDomainVerificationOffSharpFilled.tsx new file mode 100644 index 000000000..fb0a6f221 --- /dev/null +++ b/src/IconDomainVerificationOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainVerificationOffSharpFilled as default } diff --git a/src/IconDomainVerificationOutlinedFilled.tsx b/src/IconDomainVerificationOutlinedFilled.tsx new file mode 100644 index 000000000..50dfa6c87 --- /dev/null +++ b/src/IconDomainVerificationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainVerificationOutlinedFilled as default } diff --git a/src/IconDomainVerificationRoundedFilled.tsx b/src/IconDomainVerificationRoundedFilled.tsx new file mode 100644 index 000000000..428e122ba --- /dev/null +++ b/src/IconDomainVerificationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainVerificationRoundedFilled as default } diff --git a/src/IconDomainVerificationSharpFilled.tsx b/src/IconDomainVerificationSharpFilled.tsx new file mode 100644 index 000000000..6d1264ce4 --- /dev/null +++ b/src/IconDomainVerificationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDomainVerificationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDomainVerificationSharpFilled as default } diff --git a/src/IconDominoMaskOutlinedFilled.tsx b/src/IconDominoMaskOutlinedFilled.tsx new file mode 100644 index 000000000..a3ed7b656 --- /dev/null +++ b/src/IconDominoMaskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDominoMaskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDominoMaskOutlinedFilled as default } diff --git a/src/IconDominoMaskRoundedFilled.tsx b/src/IconDominoMaskRoundedFilled.tsx new file mode 100644 index 000000000..8ab3c92d6 --- /dev/null +++ b/src/IconDominoMaskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDominoMaskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDominoMaskRoundedFilled as default } diff --git a/src/IconDominoMaskSharpFilled.tsx b/src/IconDominoMaskSharpFilled.tsx new file mode 100644 index 000000000..100ab09be --- /dev/null +++ b/src/IconDominoMaskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDominoMaskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDominoMaskSharpFilled as default } diff --git a/src/IconDoneAllOutlinedFilled.tsx b/src/IconDoneAllOutlinedFilled.tsx new file mode 100644 index 000000000..c1aa45a44 --- /dev/null +++ b/src/IconDoneAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoneAllOutlinedFilled as default } diff --git a/src/IconDoneAllRoundedFilled.tsx b/src/IconDoneAllRoundedFilled.tsx new file mode 100644 index 000000000..a76d0ab76 --- /dev/null +++ b/src/IconDoneAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoneAllRoundedFilled as default } diff --git a/src/IconDoneAllSharpFilled.tsx b/src/IconDoneAllSharpFilled.tsx new file mode 100644 index 000000000..852fb77eb --- /dev/null +++ b/src/IconDoneAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoneAllSharpFilled as default } diff --git a/src/IconDoneOutlineOutlinedFilled.tsx b/src/IconDoneOutlineOutlinedFilled.tsx new file mode 100644 index 000000000..7945e129f --- /dev/null +++ b/src/IconDoneOutlineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoneOutlineOutlinedFilled as default } diff --git a/src/IconDoneOutlineRoundedFilled.tsx b/src/IconDoneOutlineRoundedFilled.tsx new file mode 100644 index 000000000..6627cf1ee --- /dev/null +++ b/src/IconDoneOutlineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoneOutlineRoundedFilled as default } diff --git a/src/IconDoneOutlineSharpFilled.tsx b/src/IconDoneOutlineSharpFilled.tsx new file mode 100644 index 000000000..6d381b4b5 --- /dev/null +++ b/src/IconDoneOutlineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoneOutlineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoneOutlineSharpFilled as default } diff --git a/src/IconDonutLargeOutlinedFilled.tsx b/src/IconDonutLargeOutlinedFilled.tsx new file mode 100644 index 000000000..ea04e49eb --- /dev/null +++ b/src/IconDonutLargeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDonutLargeOutlinedFilled as default } diff --git a/src/IconDonutLargeRoundedFilled.tsx b/src/IconDonutLargeRoundedFilled.tsx new file mode 100644 index 000000000..75f2c776d --- /dev/null +++ b/src/IconDonutLargeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDonutLargeRoundedFilled as default } diff --git a/src/IconDonutLargeSharpFilled.tsx b/src/IconDonutLargeSharpFilled.tsx new file mode 100644 index 000000000..98ccd9290 --- /dev/null +++ b/src/IconDonutLargeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutLargeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDonutLargeSharpFilled as default } diff --git a/src/IconDonutSmallOutlinedFilled.tsx b/src/IconDonutSmallOutlinedFilled.tsx new file mode 100644 index 000000000..5bc0480cc --- /dev/null +++ b/src/IconDonutSmallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDonutSmallOutlinedFilled as default } diff --git a/src/IconDonutSmallRoundedFilled.tsx b/src/IconDonutSmallRoundedFilled.tsx new file mode 100644 index 000000000..47647af7b --- /dev/null +++ b/src/IconDonutSmallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDonutSmallRoundedFilled as default } diff --git a/src/IconDonutSmallSharpFilled.tsx b/src/IconDonutSmallSharpFilled.tsx new file mode 100644 index 000000000..527d90683 --- /dev/null +++ b/src/IconDonutSmallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDonutSmallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDonutSmallSharpFilled as default } diff --git a/src/IconDoorBackOutlinedFilled.tsx b/src/IconDoorBackOutlinedFilled.tsx new file mode 100644 index 000000000..61fced819 --- /dev/null +++ b/src/IconDoorBackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorBackOutlinedFilled as default } diff --git a/src/IconDoorBackRoundedFilled.tsx b/src/IconDoorBackRoundedFilled.tsx new file mode 100644 index 000000000..9775cc654 --- /dev/null +++ b/src/IconDoorBackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorBackRoundedFilled as default } diff --git a/src/IconDoorBackSharpFilled.tsx b/src/IconDoorBackSharpFilled.tsx new file mode 100644 index 000000000..d75003ab9 --- /dev/null +++ b/src/IconDoorBackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorBackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorBackSharpFilled as default } diff --git a/src/IconDoorFrontOutlinedFilled.tsx b/src/IconDoorFrontOutlinedFilled.tsx new file mode 100644 index 000000000..3002ded9a --- /dev/null +++ b/src/IconDoorFrontOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorFrontOutlinedFilled as default } diff --git a/src/IconDoorFrontRoundedFilled.tsx b/src/IconDoorFrontRoundedFilled.tsx new file mode 100644 index 000000000..76c8b3d16 --- /dev/null +++ b/src/IconDoorFrontRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorFrontRoundedFilled as default } diff --git a/src/IconDoorFrontSharpFilled.tsx b/src/IconDoorFrontSharpFilled.tsx new file mode 100644 index 000000000..c8b06ed99 --- /dev/null +++ b/src/IconDoorFrontSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorFrontSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorFrontSharpFilled as default } diff --git a/src/IconDoorOpenOutlinedFilled.tsx b/src/IconDoorOpenOutlinedFilled.tsx new file mode 100644 index 000000000..e9a50cc1f --- /dev/null +++ b/src/IconDoorOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorOpenOutlinedFilled as default } diff --git a/src/IconDoorOpenRoundedFilled.tsx b/src/IconDoorOpenRoundedFilled.tsx new file mode 100644 index 000000000..7f26a12bb --- /dev/null +++ b/src/IconDoorOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorOpenRoundedFilled as default } diff --git a/src/IconDoorOpenSharpFilled.tsx b/src/IconDoorOpenSharpFilled.tsx new file mode 100644 index 000000000..c8448ca82 --- /dev/null +++ b/src/IconDoorOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorOpenSharpFilled as default } diff --git a/src/IconDoorSensorOutlinedFilled.tsx b/src/IconDoorSensorOutlinedFilled.tsx new file mode 100644 index 000000000..fb16741ae --- /dev/null +++ b/src/IconDoorSensorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSensorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorSensorOutlinedFilled as default } diff --git a/src/IconDoorSensorRoundedFilled.tsx b/src/IconDoorSensorRoundedFilled.tsx new file mode 100644 index 000000000..2298e070f --- /dev/null +++ b/src/IconDoorSensorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSensorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorSensorRoundedFilled as default } diff --git a/src/IconDoorSensorSharpFilled.tsx b/src/IconDoorSensorSharpFilled.tsx new file mode 100644 index 000000000..f4755de29 --- /dev/null +++ b/src/IconDoorSensorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSensorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorSensorSharpFilled as default } diff --git a/src/IconDoorSlidingOutlinedFilled.tsx b/src/IconDoorSlidingOutlinedFilled.tsx new file mode 100644 index 000000000..9544a08ed --- /dev/null +++ b/src/IconDoorSlidingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorSlidingOutlinedFilled as default } diff --git a/src/IconDoorSlidingRoundedFilled.tsx b/src/IconDoorSlidingRoundedFilled.tsx new file mode 100644 index 000000000..fe050da6c --- /dev/null +++ b/src/IconDoorSlidingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorSlidingRoundedFilled as default } diff --git a/src/IconDoorSlidingSharpFilled.tsx b/src/IconDoorSlidingSharpFilled.tsx new file mode 100644 index 000000000..a2595ea2e --- /dev/null +++ b/src/IconDoorSlidingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorSlidingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorSlidingSharpFilled as default } diff --git a/src/IconDoorbell3pOutlinedFilled.tsx b/src/IconDoorbell3pOutlinedFilled.tsx new file mode 100644 index 000000000..f46d64548 --- /dev/null +++ b/src/IconDoorbell3pOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbell3pOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbell3pOutlinedFilled as default } diff --git a/src/IconDoorbell3pRoundedFilled.tsx b/src/IconDoorbell3pRoundedFilled.tsx new file mode 100644 index 000000000..10787e471 --- /dev/null +++ b/src/IconDoorbell3pRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbell3pRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbell3pRoundedFilled as default } diff --git a/src/IconDoorbell3pSharpFilled.tsx b/src/IconDoorbell3pSharpFilled.tsx new file mode 100644 index 000000000..d6e206055 --- /dev/null +++ b/src/IconDoorbell3pSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbell3pSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbell3pSharpFilled as default } diff --git a/src/IconDoorbellChimeOutlinedFilled.tsx b/src/IconDoorbellChimeOutlinedFilled.tsx new file mode 100644 index 000000000..6951ccb26 --- /dev/null +++ b/src/IconDoorbellChimeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellChimeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbellChimeOutlinedFilled as default } diff --git a/src/IconDoorbellChimeRoundedFilled.tsx b/src/IconDoorbellChimeRoundedFilled.tsx new file mode 100644 index 000000000..c35bb2d49 --- /dev/null +++ b/src/IconDoorbellChimeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellChimeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbellChimeRoundedFilled as default } diff --git a/src/IconDoorbellChimeSharpFilled.tsx b/src/IconDoorbellChimeSharpFilled.tsx new file mode 100644 index 000000000..c0794e8f4 --- /dev/null +++ b/src/IconDoorbellChimeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellChimeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbellChimeSharpFilled as default } diff --git a/src/IconDoorbellOutlinedFilled.tsx b/src/IconDoorbellOutlinedFilled.tsx new file mode 100644 index 000000000..d8dde0108 --- /dev/null +++ b/src/IconDoorbellOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbellOutlinedFilled as default } diff --git a/src/IconDoorbellRoundedFilled.tsx b/src/IconDoorbellRoundedFilled.tsx new file mode 100644 index 000000000..f4957ba38 --- /dev/null +++ b/src/IconDoorbellRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbellRoundedFilled as default } diff --git a/src/IconDoorbellSharpFilled.tsx b/src/IconDoorbellSharpFilled.tsx new file mode 100644 index 000000000..ea1dac250 --- /dev/null +++ b/src/IconDoorbellSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoorbellSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoorbellSharpFilled as default } diff --git a/src/IconDoubleArrowOutlinedFilled.tsx b/src/IconDoubleArrowOutlinedFilled.tsx new file mode 100644 index 000000000..f1eff283f --- /dev/null +++ b/src/IconDoubleArrowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoubleArrowOutlinedFilled as default } diff --git a/src/IconDoubleArrowRoundedFilled.tsx b/src/IconDoubleArrowRoundedFilled.tsx new file mode 100644 index 000000000..fb3f014da --- /dev/null +++ b/src/IconDoubleArrowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoubleArrowRoundedFilled as default } diff --git a/src/IconDoubleArrowSharpFilled.tsx b/src/IconDoubleArrowSharpFilled.tsx new file mode 100644 index 000000000..6fbd40a80 --- /dev/null +++ b/src/IconDoubleArrowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDoubleArrowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDoubleArrowSharpFilled as default } diff --git a/src/IconDownhillSkiingOutlinedFilled.tsx b/src/IconDownhillSkiingOutlinedFilled.tsx new file mode 100644 index 000000000..a702f70c0 --- /dev/null +++ b/src/IconDownhillSkiingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDownhillSkiingOutlinedFilled as default } diff --git a/src/IconDownhillSkiingRoundedFilled.tsx b/src/IconDownhillSkiingRoundedFilled.tsx new file mode 100644 index 000000000..aa8db08b8 --- /dev/null +++ b/src/IconDownhillSkiingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownhillSkiingRoundedFilled as default } diff --git a/src/IconDownhillSkiingSharpFilled.tsx b/src/IconDownhillSkiingSharpFilled.tsx new file mode 100644 index 000000000..970d06d7a --- /dev/null +++ b/src/IconDownhillSkiingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownhillSkiingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownhillSkiingSharpFilled as default } diff --git a/src/IconDownload2OutlinedFilled.tsx b/src/IconDownload2OutlinedFilled.tsx new file mode 100644 index 000000000..e3792ef81 --- /dev/null +++ b/src/IconDownload2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownload2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownload2OutlinedFilled as default } diff --git a/src/IconDownload2RoundedFilled.tsx b/src/IconDownload2RoundedFilled.tsx new file mode 100644 index 000000000..c7a2d9aef --- /dev/null +++ b/src/IconDownload2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownload2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownload2RoundedFilled as default } diff --git a/src/IconDownload2SharpFilled.tsx b/src/IconDownload2SharpFilled.tsx new file mode 100644 index 000000000..679843f5c --- /dev/null +++ b/src/IconDownload2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownload2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownload2SharpFilled as default } diff --git a/src/IconDownloadDoneOutlinedFilled.tsx b/src/IconDownloadDoneOutlinedFilled.tsx new file mode 100644 index 000000000..2f9e1e50c --- /dev/null +++ b/src/IconDownloadDoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadDoneOutlinedFilled as default } diff --git a/src/IconDownloadDoneRoundedFilled.tsx b/src/IconDownloadDoneRoundedFilled.tsx new file mode 100644 index 000000000..d3db79a73 --- /dev/null +++ b/src/IconDownloadDoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadDoneRoundedFilled as default } diff --git a/src/IconDownloadDoneSharpFilled.tsx b/src/IconDownloadDoneSharpFilled.tsx new file mode 100644 index 000000000..b9db17d98 --- /dev/null +++ b/src/IconDownloadDoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadDoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadDoneSharpFilled as default } diff --git a/src/IconDownloadForOfflineOutlinedFilled.tsx b/src/IconDownloadForOfflineOutlinedFilled.tsx new file mode 100644 index 000000000..c31f0cc3c --- /dev/null +++ b/src/IconDownloadForOfflineOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadForOfflineOutlinedFilled as default } diff --git a/src/IconDownloadForOfflineRoundedFilled.tsx b/src/IconDownloadForOfflineRoundedFilled.tsx new file mode 100644 index 000000000..09312f6c2 --- /dev/null +++ b/src/IconDownloadForOfflineRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadForOfflineRoundedFilled as default } diff --git a/src/IconDownloadForOfflineSharpFilled.tsx b/src/IconDownloadForOfflineSharpFilled.tsx new file mode 100644 index 000000000..a0f8694cf --- /dev/null +++ b/src/IconDownloadForOfflineSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadForOfflineSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadForOfflineSharpFilled as default } diff --git a/src/IconDownloadOutlinedFilled.tsx b/src/IconDownloadOutlinedFilled.tsx new file mode 100644 index 000000000..fdcdb0837 --- /dev/null +++ b/src/IconDownloadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadOutlinedFilled as default } diff --git a/src/IconDownloadRoundedFilled.tsx b/src/IconDownloadRoundedFilled.tsx new file mode 100644 index 000000000..84beb2a1e --- /dev/null +++ b/src/IconDownloadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadRoundedFilled as default } diff --git a/src/IconDownloadSharpFilled.tsx b/src/IconDownloadSharpFilled.tsx new file mode 100644 index 000000000..967524579 --- /dev/null +++ b/src/IconDownloadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadSharpFilled as default } diff --git a/src/IconDownloadingOutlinedFilled.tsx b/src/IconDownloadingOutlinedFilled.tsx new file mode 100644 index 000000000..126df54c6 --- /dev/null +++ b/src/IconDownloadingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadingOutlinedFilled as default } diff --git a/src/IconDownloadingRoundedFilled.tsx b/src/IconDownloadingRoundedFilled.tsx new file mode 100644 index 000000000..3112d8d78 --- /dev/null +++ b/src/IconDownloadingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadingRoundedFilled as default } diff --git a/src/IconDownloadingSharpFilled.tsx b/src/IconDownloadingSharpFilled.tsx new file mode 100644 index 000000000..f922968f2 --- /dev/null +++ b/src/IconDownloadingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDownloadingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDownloadingSharpFilled as default } diff --git a/src/IconDraftOrdersOutlinedFilled.tsx b/src/IconDraftOrdersOutlinedFilled.tsx new file mode 100644 index 000000000..8913e93f7 --- /dev/null +++ b/src/IconDraftOrdersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftOrdersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftOrdersOutlinedFilled as default } diff --git a/src/IconDraftOrdersRoundedFilled.tsx b/src/IconDraftOrdersRoundedFilled.tsx new file mode 100644 index 000000000..f97ca8878 --- /dev/null +++ b/src/IconDraftOrdersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftOrdersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftOrdersRoundedFilled as default } diff --git a/src/IconDraftOrdersSharpFilled.tsx b/src/IconDraftOrdersSharpFilled.tsx new file mode 100644 index 000000000..5eb1722e0 --- /dev/null +++ b/src/IconDraftOrdersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftOrdersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftOrdersSharpFilled as default } diff --git a/src/IconDraftOutlinedFilled.tsx b/src/IconDraftOutlinedFilled.tsx new file mode 100644 index 000000000..d02a47292 --- /dev/null +++ b/src/IconDraftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftOutlinedFilled as default } diff --git a/src/IconDraftRoundedFilled.tsx b/src/IconDraftRoundedFilled.tsx new file mode 100644 index 000000000..e96a1e4d0 --- /dev/null +++ b/src/IconDraftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftRoundedFilled as default } diff --git a/src/IconDraftSharpFilled.tsx b/src/IconDraftSharpFilled.tsx new file mode 100644 index 000000000..6899f42a4 --- /dev/null +++ b/src/IconDraftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftSharpFilled as default } diff --git a/src/IconDraftsOutlinedFilled.tsx b/src/IconDraftsOutlinedFilled.tsx new file mode 100644 index 000000000..6245e1e99 --- /dev/null +++ b/src/IconDraftsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftsOutlinedFilled as default } diff --git a/src/IconDraftsRoundedFilled.tsx b/src/IconDraftsRoundedFilled.tsx new file mode 100644 index 000000000..f810128a5 --- /dev/null +++ b/src/IconDraftsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftsRoundedFilled as default } diff --git a/src/IconDraftsSharpFilled.tsx b/src/IconDraftsSharpFilled.tsx new file mode 100644 index 000000000..4a0c4e72f --- /dev/null +++ b/src/IconDraftsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDraftsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDraftsSharpFilled as default } diff --git a/src/IconDragClickOutlinedFilled.tsx b/src/IconDragClickOutlinedFilled.tsx new file mode 100644 index 000000000..60ab10648 --- /dev/null +++ b/src/IconDragClickOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragClickOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragClickOutlinedFilled as default } diff --git a/src/IconDragClickRoundedFilled.tsx b/src/IconDragClickRoundedFilled.tsx new file mode 100644 index 000000000..78d6792ea --- /dev/null +++ b/src/IconDragClickRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragClickRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragClickRoundedFilled as default } diff --git a/src/IconDragClickSharpFilled.tsx b/src/IconDragClickSharpFilled.tsx new file mode 100644 index 000000000..1a57fffe2 --- /dev/null +++ b/src/IconDragClickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragClickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragClickSharpFilled as default } diff --git a/src/IconDragHandleOutlinedFilled.tsx b/src/IconDragHandleOutlinedFilled.tsx new file mode 100644 index 000000000..e80609e32 --- /dev/null +++ b/src/IconDragHandleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragHandleOutlinedFilled as default } diff --git a/src/IconDragHandleRoundedFilled.tsx b/src/IconDragHandleRoundedFilled.tsx new file mode 100644 index 000000000..a1b809b09 --- /dev/null +++ b/src/IconDragHandleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragHandleRoundedFilled as default } diff --git a/src/IconDragHandleSharpFilled.tsx b/src/IconDragHandleSharpFilled.tsx new file mode 100644 index 000000000..0caf1a2ce --- /dev/null +++ b/src/IconDragHandleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragHandleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragHandleSharpFilled as default } diff --git a/src/IconDragIndicatorOutlinedFilled.tsx b/src/IconDragIndicatorOutlinedFilled.tsx new file mode 100644 index 000000000..ac9b3af47 --- /dev/null +++ b/src/IconDragIndicatorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragIndicatorOutlinedFilled as default } diff --git a/src/IconDragIndicatorRoundedFilled.tsx b/src/IconDragIndicatorRoundedFilled.tsx new file mode 100644 index 000000000..9d324abe1 --- /dev/null +++ b/src/IconDragIndicatorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragIndicatorRoundedFilled as default } diff --git a/src/IconDragIndicatorSharpFilled.tsx b/src/IconDragIndicatorSharpFilled.tsx new file mode 100644 index 000000000..cb0f8f4cc --- /dev/null +++ b/src/IconDragIndicatorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragIndicatorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragIndicatorSharpFilled as default } diff --git a/src/IconDragPanOutlinedFilled.tsx b/src/IconDragPanOutlinedFilled.tsx new file mode 100644 index 000000000..b78e67609 --- /dev/null +++ b/src/IconDragPanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragPanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragPanOutlinedFilled as default } diff --git a/src/IconDragPanRoundedFilled.tsx b/src/IconDragPanRoundedFilled.tsx new file mode 100644 index 000000000..3f253c14e --- /dev/null +++ b/src/IconDragPanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragPanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragPanRoundedFilled as default } diff --git a/src/IconDragPanSharpFilled.tsx b/src/IconDragPanSharpFilled.tsx new file mode 100644 index 000000000..6d00e0e1d --- /dev/null +++ b/src/IconDragPanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDragPanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDragPanSharpFilled as default } diff --git a/src/IconDrawAbstractOutlinedFilled.tsx b/src/IconDrawAbstractOutlinedFilled.tsx new file mode 100644 index 000000000..d4cbbd1fa --- /dev/null +++ b/src/IconDrawAbstractOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawAbstractOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawAbstractOutlinedFilled as default } diff --git a/src/IconDrawAbstractRoundedFilled.tsx b/src/IconDrawAbstractRoundedFilled.tsx new file mode 100644 index 000000000..87d2f5c23 --- /dev/null +++ b/src/IconDrawAbstractRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawAbstractRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawAbstractRoundedFilled as default } diff --git a/src/IconDrawAbstractSharpFilled.tsx b/src/IconDrawAbstractSharpFilled.tsx new file mode 100644 index 000000000..076bb9702 --- /dev/null +++ b/src/IconDrawAbstractSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawAbstractSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawAbstractSharpFilled as default } diff --git a/src/IconDrawCollageOutlinedFilled.tsx b/src/IconDrawCollageOutlinedFilled.tsx new file mode 100644 index 000000000..9f7a2ac00 --- /dev/null +++ b/src/IconDrawCollageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawCollageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawCollageOutlinedFilled as default } diff --git a/src/IconDrawCollageRoundedFilled.tsx b/src/IconDrawCollageRoundedFilled.tsx new file mode 100644 index 000000000..dc5359dbc --- /dev/null +++ b/src/IconDrawCollageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawCollageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawCollageRoundedFilled as default } diff --git a/src/IconDrawCollageSharpFilled.tsx b/src/IconDrawCollageSharpFilled.tsx new file mode 100644 index 000000000..bff85ef7b --- /dev/null +++ b/src/IconDrawCollageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawCollageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawCollageSharpFilled as default } diff --git a/src/IconDrawOutlinedFilled.tsx b/src/IconDrawOutlinedFilled.tsx new file mode 100644 index 000000000..0f33b2b87 --- /dev/null +++ b/src/IconDrawOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawOutlinedFilled as default } diff --git a/src/IconDrawRoundedFilled.tsx b/src/IconDrawRoundedFilled.tsx new file mode 100644 index 000000000..3e40d2b08 --- /dev/null +++ b/src/IconDrawRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawRoundedFilled as default } diff --git a/src/IconDrawSharpFilled.tsx b/src/IconDrawSharpFilled.tsx new file mode 100644 index 000000000..38a1844ac --- /dev/null +++ b/src/IconDrawSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrawSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrawSharpFilled as default } diff --git a/src/IconDresserOutlinedFilled.tsx b/src/IconDresserOutlinedFilled.tsx new file mode 100644 index 000000000..2f71343a7 --- /dev/null +++ b/src/IconDresserOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDresserOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDresserOutlinedFilled as default } diff --git a/src/IconDresserRoundedFilled.tsx b/src/IconDresserRoundedFilled.tsx new file mode 100644 index 000000000..2d3d894b2 --- /dev/null +++ b/src/IconDresserRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDresserRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDresserRoundedFilled as default } diff --git a/src/IconDresserSharpFilled.tsx b/src/IconDresserSharpFilled.tsx new file mode 100644 index 000000000..30fa92c0b --- /dev/null +++ b/src/IconDresserSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDresserSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDresserSharpFilled as default } diff --git a/src/IconDriveExportOutlinedFilled.tsx b/src/IconDriveExportOutlinedFilled.tsx new file mode 100644 index 000000000..83fd70415 --- /dev/null +++ b/src/IconDriveExportOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveExportOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveExportOutlinedFilled as default } diff --git a/src/IconDriveExportRoundedFilled.tsx b/src/IconDriveExportRoundedFilled.tsx new file mode 100644 index 000000000..b3906e909 --- /dev/null +++ b/src/IconDriveExportRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveExportRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveExportRoundedFilled as default } diff --git a/src/IconDriveExportSharpFilled.tsx b/src/IconDriveExportSharpFilled.tsx new file mode 100644 index 000000000..9a112f691 --- /dev/null +++ b/src/IconDriveExportSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveExportSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveExportSharpFilled as default } diff --git a/src/IconDriveFileMoveOutlinedFilled.tsx b/src/IconDriveFileMoveOutlinedFilled.tsx new file mode 100644 index 000000000..022b8ca03 --- /dev/null +++ b/src/IconDriveFileMoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveFileMoveOutlinedFilled as default } diff --git a/src/IconDriveFileMoveRoundedFilled.tsx b/src/IconDriveFileMoveRoundedFilled.tsx new file mode 100644 index 000000000..2d70987fe --- /dev/null +++ b/src/IconDriveFileMoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveFileMoveRoundedFilled as default } diff --git a/src/IconDriveFileMoveSharpFilled.tsx b/src/IconDriveFileMoveSharpFilled.tsx new file mode 100644 index 000000000..71a36a516 --- /dev/null +++ b/src/IconDriveFileMoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFileMoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveFileMoveSharpFilled as default } diff --git a/src/IconDriveFolderUploadOutlinedFilled.tsx b/src/IconDriveFolderUploadOutlinedFilled.tsx new file mode 100644 index 000000000..77d25b437 --- /dev/null +++ b/src/IconDriveFolderUploadOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveFolderUploadOutlinedFilled as default } diff --git a/src/IconDriveFolderUploadRoundedFilled.tsx b/src/IconDriveFolderUploadRoundedFilled.tsx new file mode 100644 index 000000000..b6dd44762 --- /dev/null +++ b/src/IconDriveFolderUploadRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveFolderUploadRoundedFilled as default } diff --git a/src/IconDriveFolderUploadSharpFilled.tsx b/src/IconDriveFolderUploadSharpFilled.tsx new file mode 100644 index 000000000..32d716fb5 --- /dev/null +++ b/src/IconDriveFolderUploadSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDriveFolderUploadSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconDriveFolderUploadSharpFilled as default } diff --git a/src/IconDropdownOutlinedFilled.tsx b/src/IconDropdownOutlinedFilled.tsx new file mode 100644 index 000000000..d90236e9a --- /dev/null +++ b/src/IconDropdownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDropdownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDropdownOutlinedFilled as default } diff --git a/src/IconDropdownRoundedFilled.tsx b/src/IconDropdownRoundedFilled.tsx new file mode 100644 index 000000000..ba4ddd0dc --- /dev/null +++ b/src/IconDropdownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDropdownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDropdownRoundedFilled as default } diff --git a/src/IconDropdownSharpFilled.tsx b/src/IconDropdownSharpFilled.tsx new file mode 100644 index 000000000..afd8fc753 --- /dev/null +++ b/src/IconDropdownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDropdownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDropdownSharpFilled as default } diff --git a/src/IconDryCleaningOutlinedFilled.tsx b/src/IconDryCleaningOutlinedFilled.tsx new file mode 100644 index 000000000..961e2834d --- /dev/null +++ b/src/IconDryCleaningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDryCleaningOutlinedFilled as default } diff --git a/src/IconDryCleaningRoundedFilled.tsx b/src/IconDryCleaningRoundedFilled.tsx new file mode 100644 index 000000000..a41ef4b96 --- /dev/null +++ b/src/IconDryCleaningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDryCleaningRoundedFilled as default } diff --git a/src/IconDryCleaningSharpFilled.tsx b/src/IconDryCleaningSharpFilled.tsx new file mode 100644 index 000000000..73d143eb3 --- /dev/null +++ b/src/IconDryCleaningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryCleaningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDryCleaningSharpFilled as default } diff --git a/src/IconDryOutlinedFilled.tsx b/src/IconDryOutlinedFilled.tsx new file mode 100644 index 000000000..1357950a8 --- /dev/null +++ b/src/IconDryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDryOutlinedFilled as default } diff --git a/src/IconDryRoundedFilled.tsx b/src/IconDryRoundedFilled.tsx new file mode 100644 index 000000000..db9175e71 --- /dev/null +++ b/src/IconDryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDryRoundedFilled as default } diff --git a/src/IconDrySharpFilled.tsx b/src/IconDrySharpFilled.tsx new file mode 100644 index 000000000..5594a0454 --- /dev/null +++ b/src/IconDrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDrySharpFilled as default } diff --git a/src/IconDualScreenOutlinedFilled.tsx b/src/IconDualScreenOutlinedFilled.tsx new file mode 100644 index 000000000..d953073b3 --- /dev/null +++ b/src/IconDualScreenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDualScreenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDualScreenOutlinedFilled as default } diff --git a/src/IconDualScreenRoundedFilled.tsx b/src/IconDualScreenRoundedFilled.tsx new file mode 100644 index 000000000..211648f4b --- /dev/null +++ b/src/IconDualScreenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDualScreenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDualScreenRoundedFilled as default } diff --git a/src/IconDualScreenSharpFilled.tsx b/src/IconDualScreenSharpFilled.tsx new file mode 100644 index 000000000..d09dff457 --- /dev/null +++ b/src/IconDualScreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDualScreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDualScreenSharpFilled as default } diff --git a/src/IconDuoOutlinedFilled.tsx b/src/IconDuoOutlinedFilled.tsx new file mode 100644 index 000000000..cbf134805 --- /dev/null +++ b/src/IconDuoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDuoOutlinedFilled as default } diff --git a/src/IconDuoRoundedFilled.tsx b/src/IconDuoRoundedFilled.tsx new file mode 100644 index 000000000..a5c735c50 --- /dev/null +++ b/src/IconDuoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDuoRoundedFilled as default } diff --git a/src/IconDuoSharpFilled.tsx b/src/IconDuoSharpFilled.tsx new file mode 100644 index 000000000..e10432c2c --- /dev/null +++ b/src/IconDuoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDuoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDuoSharpFilled as default } diff --git a/src/IconDvrOutlinedFilled.tsx b/src/IconDvrOutlinedFilled.tsx new file mode 100644 index 000000000..cd83ec816 --- /dev/null +++ b/src/IconDvrOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDvrOutlinedFilled as default } diff --git a/src/IconDvrRoundedFilled.tsx b/src/IconDvrRoundedFilled.tsx new file mode 100644 index 000000000..8eb6fbede --- /dev/null +++ b/src/IconDvrRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDvrRoundedFilled as default } diff --git a/src/IconDvrSharpFilled.tsx b/src/IconDvrSharpFilled.tsx new file mode 100644 index 000000000..680355d65 --- /dev/null +++ b/src/IconDvrSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDvrSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDvrSharpFilled as default } diff --git a/src/IconDynamicFeedOutlinedFilled.tsx b/src/IconDynamicFeedOutlinedFilled.tsx new file mode 100644 index 000000000..c920e5114 --- /dev/null +++ b/src/IconDynamicFeedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDynamicFeedOutlinedFilled as default } diff --git a/src/IconDynamicFeedRoundedFilled.tsx b/src/IconDynamicFeedRoundedFilled.tsx new file mode 100644 index 000000000..59b747f40 --- /dev/null +++ b/src/IconDynamicFeedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDynamicFeedRoundedFilled as default } diff --git a/src/IconDynamicFeedSharpFilled.tsx b/src/IconDynamicFeedSharpFilled.tsx new file mode 100644 index 000000000..45f7e2205 --- /dev/null +++ b/src/IconDynamicFeedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFeedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDynamicFeedSharpFilled as default } diff --git a/src/IconDynamicFormOutlinedFilled.tsx b/src/IconDynamicFormOutlinedFilled.tsx new file mode 100644 index 000000000..34d55fdea --- /dev/null +++ b/src/IconDynamicFormOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDynamicFormOutlinedFilled as default } diff --git a/src/IconDynamicFormRoundedFilled.tsx b/src/IconDynamicFormRoundedFilled.tsx new file mode 100644 index 000000000..83ba6d18b --- /dev/null +++ b/src/IconDynamicFormRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDynamicFormRoundedFilled as default } diff --git a/src/IconDynamicFormSharpFilled.tsx b/src/IconDynamicFormSharpFilled.tsx new file mode 100644 index 000000000..40927d6c8 --- /dev/null +++ b/src/IconDynamicFormSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconDynamicFormSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconDynamicFormSharpFilled as default } diff --git a/src/IconE911AvatarOutlinedFilled.tsx b/src/IconE911AvatarOutlinedFilled.tsx new file mode 100644 index 000000000..ce0357231 --- /dev/null +++ b/src/IconE911AvatarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconE911AvatarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconE911AvatarOutlinedFilled as default } diff --git a/src/IconE911AvatarRoundedFilled.tsx b/src/IconE911AvatarRoundedFilled.tsx new file mode 100644 index 000000000..e99bd4cef --- /dev/null +++ b/src/IconE911AvatarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconE911AvatarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconE911AvatarRoundedFilled as default } diff --git a/src/IconE911AvatarSharpFilled.tsx b/src/IconE911AvatarSharpFilled.tsx new file mode 100644 index 000000000..cdf7c50f6 --- /dev/null +++ b/src/IconE911AvatarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconE911AvatarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconE911AvatarSharpFilled as default } diff --git a/src/IconE911EmergencyOutlinedFilled.tsx b/src/IconE911EmergencyOutlinedFilled.tsx new file mode 100644 index 000000000..088330c25 --- /dev/null +++ b/src/IconE911EmergencyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconE911EmergencyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconE911EmergencyOutlinedFilled as default } diff --git a/src/IconE911EmergencyRoundedFilled.tsx b/src/IconE911EmergencyRoundedFilled.tsx new file mode 100644 index 000000000..fcee9ae1b --- /dev/null +++ b/src/IconE911EmergencyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconE911EmergencyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconE911EmergencyRoundedFilled as default } diff --git a/src/IconE911EmergencySharpFilled.tsx b/src/IconE911EmergencySharpFilled.tsx new file mode 100644 index 000000000..db2189cf0 --- /dev/null +++ b/src/IconE911EmergencySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconE911EmergencySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconE911EmergencySharpFilled as default } diff --git a/src/IconEMobiledataBadgeOutlinedFilled.tsx b/src/IconEMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..86785ac27 --- /dev/null +++ b/src/IconEMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconEMobiledataBadgeRoundedFilled.tsx b/src/IconEMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..53d90a8fa --- /dev/null +++ b/src/IconEMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEMobiledataBadgeRoundedFilled as default } diff --git a/src/IconEMobiledataBadgeSharpFilled.tsx b/src/IconEMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..abc04ad4c --- /dev/null +++ b/src/IconEMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataBadgeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEMobiledataBadgeSharpFilled as default } diff --git a/src/IconEMobiledataOutlinedFilled.tsx b/src/IconEMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..45d467ef4 --- /dev/null +++ b/src/IconEMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEMobiledataOutlinedFilled as default } diff --git a/src/IconEMobiledataRoundedFilled.tsx b/src/IconEMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..bdbd8aea7 --- /dev/null +++ b/src/IconEMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEMobiledataRoundedFilled as default } diff --git a/src/IconEMobiledataSharpFilled.tsx b/src/IconEMobiledataSharpFilled.tsx new file mode 100644 index 000000000..4c3a400a8 --- /dev/null +++ b/src/IconEMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEMobiledataSharpFilled as default } diff --git a/src/IconEarbudsBatteryOutlinedFilled.tsx b/src/IconEarbudsBatteryOutlinedFilled.tsx new file mode 100644 index 000000000..6747dfba8 --- /dev/null +++ b/src/IconEarbudsBatteryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatteryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEarbudsBatteryOutlinedFilled as default } diff --git a/src/IconEarbudsBatteryRoundedFilled.tsx b/src/IconEarbudsBatteryRoundedFilled.tsx new file mode 100644 index 000000000..dc09f48c9 --- /dev/null +++ b/src/IconEarbudsBatteryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatteryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarbudsBatteryRoundedFilled as default } diff --git a/src/IconEarbudsBatterySharpFilled.tsx b/src/IconEarbudsBatterySharpFilled.tsx new file mode 100644 index 000000000..7af55d2d5 --- /dev/null +++ b/src/IconEarbudsBatterySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsBatterySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarbudsBatterySharpFilled as default } diff --git a/src/IconEarbudsOutlinedFilled.tsx b/src/IconEarbudsOutlinedFilled.tsx new file mode 100644 index 000000000..5a77ed6a4 --- /dev/null +++ b/src/IconEarbudsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarbudsOutlinedFilled as default } diff --git a/src/IconEarbudsRoundedFilled.tsx b/src/IconEarbudsRoundedFilled.tsx new file mode 100644 index 000000000..c9e1d3542 --- /dev/null +++ b/src/IconEarbudsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarbudsRoundedFilled as default } diff --git a/src/IconEarbudsSharpFilled.tsx b/src/IconEarbudsSharpFilled.tsx new file mode 100644 index 000000000..54695c8e2 --- /dev/null +++ b/src/IconEarbudsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarbudsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarbudsSharpFilled as default } diff --git a/src/IconEarlyOnOutlinedFilled.tsx b/src/IconEarlyOnOutlinedFilled.tsx new file mode 100644 index 000000000..62b42c522 --- /dev/null +++ b/src/IconEarlyOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarlyOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarlyOnOutlinedFilled as default } diff --git a/src/IconEarlyOnRoundedFilled.tsx b/src/IconEarlyOnRoundedFilled.tsx new file mode 100644 index 000000000..cd7944e5d --- /dev/null +++ b/src/IconEarlyOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarlyOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarlyOnRoundedFilled as default } diff --git a/src/IconEarlyOnSharpFilled.tsx b/src/IconEarlyOnSharpFilled.tsx new file mode 100644 index 000000000..b5d58cc61 --- /dev/null +++ b/src/IconEarlyOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarlyOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarlyOnSharpFilled as default } diff --git a/src/IconEarthquakeOutlinedFilled.tsx b/src/IconEarthquakeOutlinedFilled.tsx new file mode 100644 index 000000000..b26c11b7d --- /dev/null +++ b/src/IconEarthquakeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarthquakeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarthquakeOutlinedFilled as default } diff --git a/src/IconEarthquakeRoundedFilled.tsx b/src/IconEarthquakeRoundedFilled.tsx new file mode 100644 index 000000000..4e677f8c0 --- /dev/null +++ b/src/IconEarthquakeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarthquakeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarthquakeRoundedFilled as default } diff --git a/src/IconEarthquakeSharpFilled.tsx b/src/IconEarthquakeSharpFilled.tsx new file mode 100644 index 000000000..516023483 --- /dev/null +++ b/src/IconEarthquakeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEarthquakeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEarthquakeSharpFilled as default } diff --git a/src/IconEastOutlinedFilled.tsx b/src/IconEastOutlinedFilled.tsx new file mode 100644 index 000000000..11798b948 --- /dev/null +++ b/src/IconEastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEastOutlinedFilled as default } diff --git a/src/IconEastRoundedFilled.tsx b/src/IconEastRoundedFilled.tsx new file mode 100644 index 000000000..ab69b6fb7 --- /dev/null +++ b/src/IconEastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEastRoundedFilled as default } diff --git a/src/IconEastSharpFilled.tsx b/src/IconEastSharpFilled.tsx new file mode 100644 index 000000000..fb1c3d542 --- /dev/null +++ b/src/IconEastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEastSharpFilled as default } diff --git a/src/IconEcgHeartOutlinedFilled.tsx b/src/IconEcgHeartOutlinedFilled.tsx new file mode 100644 index 000000000..be578dd83 --- /dev/null +++ b/src/IconEcgHeartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcgHeartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcgHeartOutlinedFilled as default } diff --git a/src/IconEcgHeartRoundedFilled.tsx b/src/IconEcgHeartRoundedFilled.tsx new file mode 100644 index 000000000..b8f755be2 --- /dev/null +++ b/src/IconEcgHeartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcgHeartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcgHeartRoundedFilled as default } diff --git a/src/IconEcgHeartSharpFilled.tsx b/src/IconEcgHeartSharpFilled.tsx new file mode 100644 index 000000000..026a9b02d --- /dev/null +++ b/src/IconEcgHeartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcgHeartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcgHeartSharpFilled as default } diff --git a/src/IconEcgOutlinedFilled.tsx b/src/IconEcgOutlinedFilled.tsx new file mode 100644 index 000000000..629b72024 --- /dev/null +++ b/src/IconEcgOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcgOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcgOutlinedFilled as default } diff --git a/src/IconEcgRoundedFilled.tsx b/src/IconEcgRoundedFilled.tsx new file mode 100644 index 000000000..948aa9b27 --- /dev/null +++ b/src/IconEcgRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcgRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcgRoundedFilled as default } diff --git a/src/IconEcgSharpFilled.tsx b/src/IconEcgSharpFilled.tsx new file mode 100644 index 000000000..11eb54c76 --- /dev/null +++ b/src/IconEcgSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcgSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcgSharpFilled as default } diff --git a/src/IconEcoOutlinedFilled.tsx b/src/IconEcoOutlinedFilled.tsx new file mode 100644 index 000000000..2d4090015 --- /dev/null +++ b/src/IconEcoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcoOutlinedFilled as default } diff --git a/src/IconEcoRoundedFilled.tsx b/src/IconEcoRoundedFilled.tsx new file mode 100644 index 000000000..ecc106f5e --- /dev/null +++ b/src/IconEcoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcoRoundedFilled as default } diff --git a/src/IconEcoSharpFilled.tsx b/src/IconEcoSharpFilled.tsx new file mode 100644 index 000000000..d2076cb15 --- /dev/null +++ b/src/IconEcoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEcoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEcoSharpFilled as default } diff --git a/src/IconEdaOutlinedFilled.tsx b/src/IconEdaOutlinedFilled.tsx new file mode 100644 index 000000000..66c856745 --- /dev/null +++ b/src/IconEdaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdaOutlinedFilled as default } diff --git a/src/IconEdaRoundedFilled.tsx b/src/IconEdaRoundedFilled.tsx new file mode 100644 index 000000000..092c82d4a --- /dev/null +++ b/src/IconEdaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdaRoundedFilled as default } diff --git a/src/IconEdaSharpFilled.tsx b/src/IconEdaSharpFilled.tsx new file mode 100644 index 000000000..d6bc4e3f4 --- /dev/null +++ b/src/IconEdaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdaSharpFilled as default } diff --git a/src/IconEdgesensorHighOutlinedFilled.tsx b/src/IconEdgesensorHighOutlinedFilled.tsx new file mode 100644 index 000000000..5efaae6d5 --- /dev/null +++ b/src/IconEdgesensorHighOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEdgesensorHighOutlinedFilled as default } diff --git a/src/IconEdgesensorHighRoundedFilled.tsx b/src/IconEdgesensorHighRoundedFilled.tsx new file mode 100644 index 000000000..c98d6bb1d --- /dev/null +++ b/src/IconEdgesensorHighRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdgesensorHighRoundedFilled as default } diff --git a/src/IconEdgesensorHighSharpFilled.tsx b/src/IconEdgesensorHighSharpFilled.tsx new file mode 100644 index 000000000..6cc3951f7 --- /dev/null +++ b/src/IconEdgesensorHighSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorHighSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdgesensorHighSharpFilled as default } diff --git a/src/IconEdgesensorLowOutlinedFilled.tsx b/src/IconEdgesensorLowOutlinedFilled.tsx new file mode 100644 index 000000000..ea19a0f10 --- /dev/null +++ b/src/IconEdgesensorLowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorLowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdgesensorLowOutlinedFilled as default } diff --git a/src/IconEdgesensorLowRoundedFilled.tsx b/src/IconEdgesensorLowRoundedFilled.tsx new file mode 100644 index 000000000..8b7bbf4a4 --- /dev/null +++ b/src/IconEdgesensorLowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEdgesensorLowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEdgesensorLowRoundedFilled as default } diff --git a/src/IconEdgesensorLowSharp.tsx b/src/IconEdgesensorLowSharpFilled.tsx similarity index 52% rename from src/IconEdgesensorLowSharp.tsx rename to src/IconEdgesensorLowSharpFilled.tsx index c4c7e8601..eee088800 100644 --- a/src/IconEdgesensorLowSharp.tsx +++ b/src/IconEdgesensorLowSharpFilled.tsx @@ -1,11 +1,11 @@ import React from 'react' import { IconProps } from './types' -const IconEdgesensorLowSharp: React.FC = ({ ...props }) => ( +const IconEdgesensorLowSharpFilled: React.FC = ({ ...props }) => ( {props.title && {props.title}} - + ) -export { IconEdgesensorLowSharp as default } +export { IconEdgesensorLowSharpFilled as default } diff --git a/src/IconEditAttributesOutlinedFilled.tsx b/src/IconEditAttributesOutlinedFilled.tsx new file mode 100644 index 000000000..4aa6115d4 --- /dev/null +++ b/src/IconEditAttributesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEditAttributesOutlinedFilled as default } diff --git a/src/IconEditAttributesRoundedFilled.tsx b/src/IconEditAttributesRoundedFilled.tsx new file mode 100644 index 000000000..c4b46cbe7 --- /dev/null +++ b/src/IconEditAttributesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditAttributesRoundedFilled as default } diff --git a/src/IconEditAttributesSharpFilled.tsx b/src/IconEditAttributesSharpFilled.tsx new file mode 100644 index 000000000..83fe2b4e7 --- /dev/null +++ b/src/IconEditAttributesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAttributesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditAttributesSharpFilled as default } diff --git a/src/IconEditAudioOutlinedFilled.tsx b/src/IconEditAudioOutlinedFilled.tsx new file mode 100644 index 000000000..512e395a4 --- /dev/null +++ b/src/IconEditAudioOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAudioOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditAudioOutlinedFilled as default } diff --git a/src/IconEditAudioRoundedFilled.tsx b/src/IconEditAudioRoundedFilled.tsx new file mode 100644 index 000000000..7bc996126 --- /dev/null +++ b/src/IconEditAudioRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAudioRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditAudioRoundedFilled as default } diff --git a/src/IconEditAudioSharpFilled.tsx b/src/IconEditAudioSharpFilled.tsx new file mode 100644 index 000000000..e8dd1a95c --- /dev/null +++ b/src/IconEditAudioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditAudioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditAudioSharpFilled as default } diff --git a/src/IconEditCalendarOutlinedFilled.tsx b/src/IconEditCalendarOutlinedFilled.tsx new file mode 100644 index 000000000..5a65029e5 --- /dev/null +++ b/src/IconEditCalendarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditCalendarOutlinedFilled as default } diff --git a/src/IconEditCalendarRoundedFilled.tsx b/src/IconEditCalendarRoundedFilled.tsx new file mode 100644 index 000000000..e1c6e52ec --- /dev/null +++ b/src/IconEditCalendarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditCalendarRoundedFilled as default } diff --git a/src/IconEditCalendarSharpFilled.tsx b/src/IconEditCalendarSharpFilled.tsx new file mode 100644 index 000000000..4a3409d4a --- /dev/null +++ b/src/IconEditCalendarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditCalendarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditCalendarSharpFilled as default } diff --git a/src/IconEditDocumentOutlinedFilled.tsx b/src/IconEditDocumentOutlinedFilled.tsx new file mode 100644 index 000000000..7600d72c9 --- /dev/null +++ b/src/IconEditDocumentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditDocumentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditDocumentOutlinedFilled as default } diff --git a/src/IconEditDocumentRoundedFilled.tsx b/src/IconEditDocumentRoundedFilled.tsx new file mode 100644 index 000000000..fa379e0c5 --- /dev/null +++ b/src/IconEditDocumentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditDocumentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditDocumentRoundedFilled as default } diff --git a/src/IconEditDocumentSharpFilled.tsx b/src/IconEditDocumentSharpFilled.tsx new file mode 100644 index 000000000..6a3654e8c --- /dev/null +++ b/src/IconEditDocumentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditDocumentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditDocumentSharpFilled as default } diff --git a/src/IconEditLocationAltOutlinedFilled.tsx b/src/IconEditLocationAltOutlinedFilled.tsx new file mode 100644 index 000000000..e300afb52 --- /dev/null +++ b/src/IconEditLocationAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEditLocationAltOutlinedFilled as default } diff --git a/src/IconEditLocationAltRoundedFilled.tsx b/src/IconEditLocationAltRoundedFilled.tsx new file mode 100644 index 000000000..299d907ff --- /dev/null +++ b/src/IconEditLocationAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEditLocationAltRoundedFilled as default } diff --git a/src/IconEditLocationAltSharpFilled.tsx b/src/IconEditLocationAltSharpFilled.tsx new file mode 100644 index 000000000..d43121ceb --- /dev/null +++ b/src/IconEditLocationAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditLocationAltSharpFilled as default } diff --git a/src/IconEditLocationOutlinedFilled.tsx b/src/IconEditLocationOutlinedFilled.tsx new file mode 100644 index 000000000..be8141c5b --- /dev/null +++ b/src/IconEditLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditLocationOutlinedFilled as default } diff --git a/src/IconEditLocationRoundedFilled.tsx b/src/IconEditLocationRoundedFilled.tsx new file mode 100644 index 000000000..d45ac4bc1 --- /dev/null +++ b/src/IconEditLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditLocationRoundedFilled as default } diff --git a/src/IconEditLocationSharpFilled.tsx b/src/IconEditLocationSharpFilled.tsx new file mode 100644 index 000000000..c480aac00 --- /dev/null +++ b/src/IconEditLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditLocationSharpFilled as default } diff --git a/src/IconEditNoteOutlinedFilled.tsx b/src/IconEditNoteOutlinedFilled.tsx new file mode 100644 index 000000000..43ebda75c --- /dev/null +++ b/src/IconEditNoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditNoteOutlinedFilled as default } diff --git a/src/IconEditNoteRoundedFilled.tsx b/src/IconEditNoteRoundedFilled.tsx new file mode 100644 index 000000000..e2eb42454 --- /dev/null +++ b/src/IconEditNoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditNoteRoundedFilled as default } diff --git a/src/IconEditNoteSharpFilled.tsx b/src/IconEditNoteSharpFilled.tsx new file mode 100644 index 000000000..05a882345 --- /dev/null +++ b/src/IconEditNoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditNoteSharpFilled as default } diff --git a/src/IconEditNotificationsOutlinedFilled.tsx b/src/IconEditNotificationsOutlinedFilled.tsx new file mode 100644 index 000000000..ee23a5694 --- /dev/null +++ b/src/IconEditNotificationsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEditNotificationsOutlinedFilled as default } diff --git a/src/IconEditNotificationsRoundedFilled.tsx b/src/IconEditNotificationsRoundedFilled.tsx new file mode 100644 index 000000000..47ed44ca7 --- /dev/null +++ b/src/IconEditNotificationsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEditNotificationsRoundedFilled as default } diff --git a/src/IconEditNotificationsSharpFilled.tsx b/src/IconEditNotificationsSharpFilled.tsx new file mode 100644 index 000000000..d25d98441 --- /dev/null +++ b/src/IconEditNotificationsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditNotificationsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEditNotificationsSharpFilled as default } diff --git a/src/IconEditOffOutlinedFilled.tsx b/src/IconEditOffOutlinedFilled.tsx new file mode 100644 index 000000000..99cc93d36 --- /dev/null +++ b/src/IconEditOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditOffOutlinedFilled as default } diff --git a/src/IconEditOffRoundedFilled.tsx b/src/IconEditOffRoundedFilled.tsx new file mode 100644 index 000000000..236098e15 --- /dev/null +++ b/src/IconEditOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditOffRoundedFilled as default } diff --git a/src/IconEditOffSharpFilled.tsx b/src/IconEditOffSharpFilled.tsx new file mode 100644 index 000000000..580708007 --- /dev/null +++ b/src/IconEditOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditOffSharpFilled as default } diff --git a/src/IconEditOutlinedFilled.tsx b/src/IconEditOutlinedFilled.tsx new file mode 100644 index 000000000..7a032833b --- /dev/null +++ b/src/IconEditOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditOutlinedFilled as default } diff --git a/src/IconEditRoadOutlinedFilled.tsx b/src/IconEditRoadOutlinedFilled.tsx new file mode 100644 index 000000000..2fa2ec8d7 --- /dev/null +++ b/src/IconEditRoadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditRoadOutlinedFilled as default } diff --git a/src/IconEditRoadRoundedFilled.tsx b/src/IconEditRoadRoundedFilled.tsx new file mode 100644 index 000000000..14bbd02ed --- /dev/null +++ b/src/IconEditRoadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditRoadRoundedFilled as default } diff --git a/src/IconEditRoadSharpFilled.tsx b/src/IconEditRoadSharpFilled.tsx new file mode 100644 index 000000000..fe4011328 --- /dev/null +++ b/src/IconEditRoadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditRoadSharpFilled as default } diff --git a/src/IconEditRoundedFilled.tsx b/src/IconEditRoundedFilled.tsx new file mode 100644 index 000000000..9dea5ff51 --- /dev/null +++ b/src/IconEditRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditRoundedFilled as default } diff --git a/src/IconEditSharpFilled.tsx b/src/IconEditSharpFilled.tsx new file mode 100644 index 000000000..c35c75216 --- /dev/null +++ b/src/IconEditSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditSharpFilled as default } diff --git a/src/IconEditSquareOutlinedFilled.tsx b/src/IconEditSquareOutlinedFilled.tsx new file mode 100644 index 000000000..a333902d6 --- /dev/null +++ b/src/IconEditSquareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditSquareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditSquareOutlinedFilled as default } diff --git a/src/IconEditSquareRoundedFilled.tsx b/src/IconEditSquareRoundedFilled.tsx new file mode 100644 index 000000000..f26bfdce6 --- /dev/null +++ b/src/IconEditSquareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditSquareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditSquareRoundedFilled as default } diff --git a/src/IconEditSquareSharpFilled.tsx b/src/IconEditSquareSharpFilled.tsx new file mode 100644 index 000000000..9b7cd5519 --- /dev/null +++ b/src/IconEditSquareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditSquareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditSquareSharpFilled as default } diff --git a/src/IconEditorChoiceOutlinedFilled.tsx b/src/IconEditorChoiceOutlinedFilled.tsx new file mode 100644 index 000000000..1fab96f4d --- /dev/null +++ b/src/IconEditorChoiceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditorChoiceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditorChoiceOutlinedFilled as default } diff --git a/src/IconEditorChoiceRoundedFilled.tsx b/src/IconEditorChoiceRoundedFilled.tsx new file mode 100644 index 000000000..93ce328b0 --- /dev/null +++ b/src/IconEditorChoiceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditorChoiceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditorChoiceRoundedFilled as default } diff --git a/src/IconEditorChoiceSharpFilled.tsx b/src/IconEditorChoiceSharpFilled.tsx new file mode 100644 index 000000000..3bb08bfa1 --- /dev/null +++ b/src/IconEditorChoiceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEditorChoiceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEditorChoiceSharpFilled as default } diff --git a/src/IconEggAltOutlinedFilled.tsx b/src/IconEggAltOutlinedFilled.tsx new file mode 100644 index 000000000..d353801b9 --- /dev/null +++ b/src/IconEggAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEggAltOutlinedFilled as default } diff --git a/src/IconEggAltRoundedFilled.tsx b/src/IconEggAltRoundedFilled.tsx new file mode 100644 index 000000000..3481a40b8 --- /dev/null +++ b/src/IconEggAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEggAltRoundedFilled as default } diff --git a/src/IconEggAltSharpFilled.tsx b/src/IconEggAltSharpFilled.tsx new file mode 100644 index 000000000..edaebd0fa --- /dev/null +++ b/src/IconEggAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEggAltSharpFilled as default } diff --git a/src/IconEggOutlinedFilled.tsx b/src/IconEggOutlinedFilled.tsx new file mode 100644 index 000000000..1f34e67c3 --- /dev/null +++ b/src/IconEggOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEggOutlinedFilled as default } diff --git a/src/IconEggRoundedFilled.tsx b/src/IconEggRoundedFilled.tsx new file mode 100644 index 000000000..1749b96a8 --- /dev/null +++ b/src/IconEggRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEggRoundedFilled as default } diff --git a/src/IconEggSharpFilled.tsx b/src/IconEggSharpFilled.tsx new file mode 100644 index 000000000..2ad6b65be --- /dev/null +++ b/src/IconEggSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEggSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEggSharpFilled as default } diff --git a/src/IconEjectOutlinedFilled.tsx b/src/IconEjectOutlinedFilled.tsx new file mode 100644 index 000000000..4858dc01b --- /dev/null +++ b/src/IconEjectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEjectOutlinedFilled as default } diff --git a/src/IconEjectRoundedFilled.tsx b/src/IconEjectRoundedFilled.tsx new file mode 100644 index 000000000..50aeaceb3 --- /dev/null +++ b/src/IconEjectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEjectRoundedFilled as default } diff --git a/src/IconEjectSharpFilled.tsx b/src/IconEjectSharpFilled.tsx new file mode 100644 index 000000000..a4a721518 --- /dev/null +++ b/src/IconEjectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEjectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEjectSharpFilled as default } diff --git a/src/IconElderlyOutlinedFilled.tsx b/src/IconElderlyOutlinedFilled.tsx new file mode 100644 index 000000000..bed01a9cf --- /dev/null +++ b/src/IconElderlyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElderlyOutlinedFilled as default } diff --git a/src/IconElderlyRoundedFilled.tsx b/src/IconElderlyRoundedFilled.tsx new file mode 100644 index 000000000..bbb5b53d2 --- /dev/null +++ b/src/IconElderlyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElderlyRoundedFilled as default } diff --git a/src/IconElderlySharpFilled.tsx b/src/IconElderlySharpFilled.tsx new file mode 100644 index 000000000..ae48bccdf --- /dev/null +++ b/src/IconElderlySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElderlySharpFilled as default } diff --git a/src/IconElderlyWomanOutlinedFilled.tsx b/src/IconElderlyWomanOutlinedFilled.tsx new file mode 100644 index 000000000..d7b0cf419 --- /dev/null +++ b/src/IconElderlyWomanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElderlyWomanOutlinedFilled as default } diff --git a/src/IconElderlyWomanRoundedFilled.tsx b/src/IconElderlyWomanRoundedFilled.tsx new file mode 100644 index 000000000..b5deccc1c --- /dev/null +++ b/src/IconElderlyWomanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElderlyWomanRoundedFilled as default } diff --git a/src/IconElderlyWomanSharpFilled.tsx b/src/IconElderlyWomanSharpFilled.tsx new file mode 100644 index 000000000..53371b360 --- /dev/null +++ b/src/IconElderlyWomanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElderlyWomanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElderlyWomanSharpFilled as default } diff --git a/src/IconElectricBikeOutlinedFilled.tsx b/src/IconElectricBikeOutlinedFilled.tsx new file mode 100644 index 000000000..8dd0e7a5b --- /dev/null +++ b/src/IconElectricBikeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricBikeOutlinedFilled as default } diff --git a/src/IconElectricBikeRoundedFilled.tsx b/src/IconElectricBikeRoundedFilled.tsx new file mode 100644 index 000000000..723ef1a25 --- /dev/null +++ b/src/IconElectricBikeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricBikeRoundedFilled as default } diff --git a/src/IconElectricBikeSharpFilled.tsx b/src/IconElectricBikeSharpFilled.tsx new file mode 100644 index 000000000..a63c79016 --- /dev/null +++ b/src/IconElectricBikeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBikeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricBikeSharpFilled as default } diff --git a/src/IconElectricBoltOutlinedFilled.tsx b/src/IconElectricBoltOutlinedFilled.tsx new file mode 100644 index 000000000..e23d5b93e --- /dev/null +++ b/src/IconElectricBoltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricBoltOutlinedFilled as default } diff --git a/src/IconElectricBoltRoundedFilled.tsx b/src/IconElectricBoltRoundedFilled.tsx new file mode 100644 index 000000000..78ea481bf --- /dev/null +++ b/src/IconElectricBoltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricBoltRoundedFilled as default } diff --git a/src/IconElectricBoltSharpFilled.tsx b/src/IconElectricBoltSharpFilled.tsx new file mode 100644 index 000000000..3ae92176c --- /dev/null +++ b/src/IconElectricBoltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricBoltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricBoltSharpFilled as default } diff --git a/src/IconElectricCarOutlinedFilled.tsx b/src/IconElectricCarOutlinedFilled.tsx new file mode 100644 index 000000000..427ee62fa --- /dev/null +++ b/src/IconElectricCarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricCarOutlinedFilled as default } diff --git a/src/IconElectricCarRoundedFilled.tsx b/src/IconElectricCarRoundedFilled.tsx new file mode 100644 index 000000000..88a24e0b7 --- /dev/null +++ b/src/IconElectricCarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricCarRoundedFilled as default } diff --git a/src/IconElectricCarSharpFilled.tsx b/src/IconElectricCarSharpFilled.tsx new file mode 100644 index 000000000..3c2cd2f7c --- /dev/null +++ b/src/IconElectricCarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricCarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricCarSharpFilled as default } diff --git a/src/IconElectricMeterOutlinedFilled.tsx b/src/IconElectricMeterOutlinedFilled.tsx new file mode 100644 index 000000000..39b76d6f4 --- /dev/null +++ b/src/IconElectricMeterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricMeterOutlinedFilled as default } diff --git a/src/IconElectricMeterRoundedFilled.tsx b/src/IconElectricMeterRoundedFilled.tsx new file mode 100644 index 000000000..617c65e30 --- /dev/null +++ b/src/IconElectricMeterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricMeterRoundedFilled as default } diff --git a/src/IconElectricMeterSharpFilled.tsx b/src/IconElectricMeterSharpFilled.tsx new file mode 100644 index 000000000..d258d51b3 --- /dev/null +++ b/src/IconElectricMeterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMeterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricMeterSharpFilled as default } diff --git a/src/IconElectricMopedOutlinedFilled.tsx b/src/IconElectricMopedOutlinedFilled.tsx new file mode 100644 index 000000000..26480158a --- /dev/null +++ b/src/IconElectricMopedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricMopedOutlinedFilled as default } diff --git a/src/IconElectricMopedRoundedFilled.tsx b/src/IconElectricMopedRoundedFilled.tsx new file mode 100644 index 000000000..0e5c9d43f --- /dev/null +++ b/src/IconElectricMopedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricMopedRoundedFilled as default } diff --git a/src/IconElectricMopedSharpFilled.tsx b/src/IconElectricMopedSharpFilled.tsx new file mode 100644 index 000000000..9968597db --- /dev/null +++ b/src/IconElectricMopedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricMopedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricMopedSharpFilled as default } diff --git a/src/IconElectricRickshawOutlinedFilled.tsx b/src/IconElectricRickshawOutlinedFilled.tsx new file mode 100644 index 000000000..81b17d067 --- /dev/null +++ b/src/IconElectricRickshawOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricRickshawOutlinedFilled as default } diff --git a/src/IconElectricRickshawRoundedFilled.tsx b/src/IconElectricRickshawRoundedFilled.tsx new file mode 100644 index 000000000..580dd216c --- /dev/null +++ b/src/IconElectricRickshawRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricRickshawRoundedFilled as default } diff --git a/src/IconElectricRickshawSharpFilled.tsx b/src/IconElectricRickshawSharpFilled.tsx new file mode 100644 index 000000000..320b27cb6 --- /dev/null +++ b/src/IconElectricRickshawSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricRickshawSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricRickshawSharpFilled as default } diff --git a/src/IconElectricScooterOutlinedFilled.tsx b/src/IconElectricScooterOutlinedFilled.tsx new file mode 100644 index 000000000..bfcd24f30 --- /dev/null +++ b/src/IconElectricScooterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricScooterOutlinedFilled as default } diff --git a/src/IconElectricScooterRoundedFilled.tsx b/src/IconElectricScooterRoundedFilled.tsx new file mode 100644 index 000000000..9795ea514 --- /dev/null +++ b/src/IconElectricScooterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricScooterRoundedFilled as default } diff --git a/src/IconElectricScooterSharpFilled.tsx b/src/IconElectricScooterSharpFilled.tsx new file mode 100644 index 000000000..27d515b40 --- /dev/null +++ b/src/IconElectricScooterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricScooterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricScooterSharpFilled as default } diff --git a/src/IconElectricalServicesOutlinedFilled.tsx b/src/IconElectricalServicesOutlinedFilled.tsx new file mode 100644 index 000000000..1aaed85cf --- /dev/null +++ b/src/IconElectricalServicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricalServicesOutlinedFilled as default } diff --git a/src/IconElectricalServicesRoundedFilled.tsx b/src/IconElectricalServicesRoundedFilled.tsx new file mode 100644 index 000000000..5f29aa893 --- /dev/null +++ b/src/IconElectricalServicesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricalServicesRoundedFilled as default } diff --git a/src/IconElectricalServicesSharpFilled.tsx b/src/IconElectricalServicesSharpFilled.tsx new file mode 100644 index 000000000..c40a85e09 --- /dev/null +++ b/src/IconElectricalServicesSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElectricalServicesSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconElectricalServicesSharpFilled as default } diff --git a/src/IconElevationOutlinedFilled.tsx b/src/IconElevationOutlinedFilled.tsx new file mode 100644 index 000000000..6bba35d72 --- /dev/null +++ b/src/IconElevationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElevationOutlinedFilled as default } diff --git a/src/IconElevationRoundedFilled.tsx b/src/IconElevationRoundedFilled.tsx new file mode 100644 index 000000000..3c92440f5 --- /dev/null +++ b/src/IconElevationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElevationRoundedFilled as default } diff --git a/src/IconElevationSharpFilled.tsx b/src/IconElevationSharpFilled.tsx new file mode 100644 index 000000000..32250a794 --- /dev/null +++ b/src/IconElevationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElevationSharpFilled as default } diff --git a/src/IconElevatorOutlinedFilled.tsx b/src/IconElevatorOutlinedFilled.tsx new file mode 100644 index 000000000..960a68dd1 --- /dev/null +++ b/src/IconElevatorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElevatorOutlinedFilled as default } diff --git a/src/IconElevatorRoundedFilled.tsx b/src/IconElevatorRoundedFilled.tsx new file mode 100644 index 000000000..1c4cbcc79 --- /dev/null +++ b/src/IconElevatorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElevatorRoundedFilled as default } diff --git a/src/IconElevatorSharpFilled.tsx b/src/IconElevatorSharpFilled.tsx new file mode 100644 index 000000000..ecb69dad8 --- /dev/null +++ b/src/IconElevatorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconElevatorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconElevatorSharpFilled as default } diff --git a/src/IconEmergencyHeat2OutlinedFilled.tsx b/src/IconEmergencyHeat2OutlinedFilled.tsx new file mode 100644 index 000000000..4cd84585c --- /dev/null +++ b/src/IconEmergencyHeat2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHeat2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHeat2OutlinedFilled as default } diff --git a/src/IconEmergencyHeat2RoundedFilled.tsx b/src/IconEmergencyHeat2RoundedFilled.tsx new file mode 100644 index 000000000..4068437c8 --- /dev/null +++ b/src/IconEmergencyHeat2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHeat2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHeat2RoundedFilled as default } diff --git a/src/IconEmergencyHeat2SharpFilled.tsx b/src/IconEmergencyHeat2SharpFilled.tsx new file mode 100644 index 000000000..7ac3ae7d3 --- /dev/null +++ b/src/IconEmergencyHeat2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHeat2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHeat2SharpFilled as default } diff --git a/src/IconEmergencyHeatOutlinedFilled.tsx b/src/IconEmergencyHeatOutlinedFilled.tsx new file mode 100644 index 000000000..8bc4e0064 --- /dev/null +++ b/src/IconEmergencyHeatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHeatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHeatOutlinedFilled as default } diff --git a/src/IconEmergencyHeatRoundedFilled.tsx b/src/IconEmergencyHeatRoundedFilled.tsx new file mode 100644 index 000000000..42f830985 --- /dev/null +++ b/src/IconEmergencyHeatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHeatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHeatRoundedFilled as default } diff --git a/src/IconEmergencyHeatSharpFilled.tsx b/src/IconEmergencyHeatSharpFilled.tsx new file mode 100644 index 000000000..3def65d44 --- /dev/null +++ b/src/IconEmergencyHeatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHeatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHeatSharpFilled as default } diff --git a/src/IconEmergencyHomeOutlinedFilled.tsx b/src/IconEmergencyHomeOutlinedFilled.tsx new file mode 100644 index 000000000..4e29e18ad --- /dev/null +++ b/src/IconEmergencyHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHomeOutlinedFilled as default } diff --git a/src/IconEmergencyHomeRoundedFilled.tsx b/src/IconEmergencyHomeRoundedFilled.tsx new file mode 100644 index 000000000..5c461f1af --- /dev/null +++ b/src/IconEmergencyHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHomeRoundedFilled as default } diff --git a/src/IconEmergencyHomeSharpFilled.tsx b/src/IconEmergencyHomeSharpFilled.tsx new file mode 100644 index 000000000..e4865ef20 --- /dev/null +++ b/src/IconEmergencyHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyHomeSharpFilled as default } diff --git a/src/IconEmergencyOutlinedFilled.tsx b/src/IconEmergencyOutlinedFilled.tsx new file mode 100644 index 000000000..2ab7501cf --- /dev/null +++ b/src/IconEmergencyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyOutlinedFilled as default } diff --git a/src/IconEmergencyRecordingOutlinedFilled.tsx b/src/IconEmergencyRecordingOutlinedFilled.tsx new file mode 100644 index 000000000..4d2804799 --- /dev/null +++ b/src/IconEmergencyRecordingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyRecordingOutlinedFilled as default } diff --git a/src/IconEmergencyRecordingRoundedFilled.tsx b/src/IconEmergencyRecordingRoundedFilled.tsx new file mode 100644 index 000000000..9a08b2cad --- /dev/null +++ b/src/IconEmergencyRecordingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyRecordingRoundedFilled as default } diff --git a/src/IconEmergencyRecordingSharpFilled.tsx b/src/IconEmergencyRecordingSharpFilled.tsx new file mode 100644 index 000000000..8b723399a --- /dev/null +++ b/src/IconEmergencyRecordingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRecordingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyRecordingSharpFilled as default } diff --git a/src/IconEmergencyRoundedFilled.tsx b/src/IconEmergencyRoundedFilled.tsx new file mode 100644 index 000000000..5892a98d9 --- /dev/null +++ b/src/IconEmergencyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyRoundedFilled as default } diff --git a/src/IconEmergencyShareOffOutlinedFilled.tsx b/src/IconEmergencyShareOffOutlinedFilled.tsx new file mode 100644 index 000000000..0c1a04e2f --- /dev/null +++ b/src/IconEmergencyShareOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyShareOffOutlinedFilled as default } diff --git a/src/IconEmergencyShareOffRoundedFilled.tsx b/src/IconEmergencyShareOffRoundedFilled.tsx new file mode 100644 index 000000000..5bbbb3925 --- /dev/null +++ b/src/IconEmergencyShareOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyShareOffRoundedFilled as default } diff --git a/src/IconEmergencyShareOffSharpFilled.tsx b/src/IconEmergencyShareOffSharpFilled.tsx new file mode 100644 index 000000000..5a3cbaab3 --- /dev/null +++ b/src/IconEmergencyShareOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyShareOffSharpFilled as default } diff --git a/src/IconEmergencyShareOutlinedFilled.tsx b/src/IconEmergencyShareOutlinedFilled.tsx new file mode 100644 index 000000000..2bc5acd23 --- /dev/null +++ b/src/IconEmergencyShareOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyShareOutlinedFilled as default } diff --git a/src/IconEmergencyShareRoundedFilled.tsx b/src/IconEmergencyShareRoundedFilled.tsx new file mode 100644 index 000000000..7d9e1fec4 --- /dev/null +++ b/src/IconEmergencyShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyShareRoundedFilled as default } diff --git a/src/IconEmergencyShareSharpFilled.tsx b/src/IconEmergencyShareSharpFilled.tsx new file mode 100644 index 000000000..0e615cc94 --- /dev/null +++ b/src/IconEmergencyShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencyShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencyShareSharpFilled as default } diff --git a/src/IconEmergencySharpFilled.tsx b/src/IconEmergencySharpFilled.tsx new file mode 100644 index 000000000..c97360a78 --- /dev/null +++ b/src/IconEmergencySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmergencySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmergencySharpFilled as default } diff --git a/src/IconEmojiEventsOutlinedFilled.tsx b/src/IconEmojiEventsOutlinedFilled.tsx new file mode 100644 index 000000000..b97ed651f --- /dev/null +++ b/src/IconEmojiEventsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiEventsOutlinedFilled as default } diff --git a/src/IconEmojiEventsRoundedFilled.tsx b/src/IconEmojiEventsRoundedFilled.tsx new file mode 100644 index 000000000..98453f83f --- /dev/null +++ b/src/IconEmojiEventsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiEventsRoundedFilled as default } diff --git a/src/IconEmojiEventsSharpFilled.tsx b/src/IconEmojiEventsSharpFilled.tsx new file mode 100644 index 000000000..3a63ecc3a --- /dev/null +++ b/src/IconEmojiEventsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiEventsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiEventsSharpFilled as default } diff --git a/src/IconEmojiFoodBeverageOutlinedFilled.tsx b/src/IconEmojiFoodBeverageOutlinedFilled.tsx new file mode 100644 index 000000000..c198f54c3 --- /dev/null +++ b/src/IconEmojiFoodBeverageOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiFoodBeverageOutlinedFilled as default } diff --git a/src/IconEmojiFoodBeverageRoundedFilled.tsx b/src/IconEmojiFoodBeverageRoundedFilled.tsx new file mode 100644 index 000000000..c045699c5 --- /dev/null +++ b/src/IconEmojiFoodBeverageRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiFoodBeverageRoundedFilled as default } diff --git a/src/IconEmojiFoodBeverageSharpFilled.tsx b/src/IconEmojiFoodBeverageSharpFilled.tsx new file mode 100644 index 000000000..c4ff21405 --- /dev/null +++ b/src/IconEmojiFoodBeverageSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiFoodBeverageSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiFoodBeverageSharpFilled as default } diff --git a/src/IconEmojiLanguageOutlinedFilled.tsx b/src/IconEmojiLanguageOutlinedFilled.tsx new file mode 100644 index 000000000..b866f677b --- /dev/null +++ b/src/IconEmojiLanguageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiLanguageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiLanguageOutlinedFilled as default } diff --git a/src/IconEmojiLanguageRoundedFilled.tsx b/src/IconEmojiLanguageRoundedFilled.tsx new file mode 100644 index 000000000..69e8d76da --- /dev/null +++ b/src/IconEmojiLanguageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiLanguageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiLanguageRoundedFilled as default } diff --git a/src/IconEmojiLanguageSharpFilled.tsx b/src/IconEmojiLanguageSharpFilled.tsx new file mode 100644 index 000000000..814081b2c --- /dev/null +++ b/src/IconEmojiLanguageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiLanguageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiLanguageSharpFilled as default } diff --git a/src/IconEmojiNatureOutlinedFilled.tsx b/src/IconEmojiNatureOutlinedFilled.tsx new file mode 100644 index 000000000..f2257f189 --- /dev/null +++ b/src/IconEmojiNatureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiNatureOutlinedFilled as default } diff --git a/src/IconEmojiNatureRoundedFilled.tsx b/src/IconEmojiNatureRoundedFilled.tsx new file mode 100644 index 000000000..799eed90a --- /dev/null +++ b/src/IconEmojiNatureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiNatureRoundedFilled as default } diff --git a/src/IconEmojiNatureSharpFilled.tsx b/src/IconEmojiNatureSharpFilled.tsx new file mode 100644 index 000000000..35e959770 --- /dev/null +++ b/src/IconEmojiNatureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiNatureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiNatureSharpFilled as default } diff --git a/src/IconEmojiObjectsOutlinedFilled.tsx b/src/IconEmojiObjectsOutlinedFilled.tsx new file mode 100644 index 000000000..b8d6821a5 --- /dev/null +++ b/src/IconEmojiObjectsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiObjectsOutlinedFilled as default } diff --git a/src/IconEmojiObjectsRoundedFilled.tsx b/src/IconEmojiObjectsRoundedFilled.tsx new file mode 100644 index 000000000..f6490d1fc --- /dev/null +++ b/src/IconEmojiObjectsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiObjectsRoundedFilled as default } diff --git a/src/IconEmojiObjectsSharpFilled.tsx b/src/IconEmojiObjectsSharpFilled.tsx new file mode 100644 index 000000000..4413aa7cd --- /dev/null +++ b/src/IconEmojiObjectsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiObjectsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiObjectsSharpFilled as default } diff --git a/src/IconEmojiPeopleOutlinedFilled.tsx b/src/IconEmojiPeopleOutlinedFilled.tsx new file mode 100644 index 000000000..936845673 --- /dev/null +++ b/src/IconEmojiPeopleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiPeopleOutlinedFilled as default } diff --git a/src/IconEmojiPeopleRoundedFilled.tsx b/src/IconEmojiPeopleRoundedFilled.tsx new file mode 100644 index 000000000..8eb431a13 --- /dev/null +++ b/src/IconEmojiPeopleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiPeopleRoundedFilled as default } diff --git a/src/IconEmojiPeopleSharpFilled.tsx b/src/IconEmojiPeopleSharpFilled.tsx new file mode 100644 index 000000000..7239eadd0 --- /dev/null +++ b/src/IconEmojiPeopleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiPeopleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiPeopleSharpFilled as default } diff --git a/src/IconEmojiSymbolsOutlinedFilled.tsx b/src/IconEmojiSymbolsOutlinedFilled.tsx new file mode 100644 index 000000000..1079af5b0 --- /dev/null +++ b/src/IconEmojiSymbolsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiSymbolsOutlinedFilled as default } diff --git a/src/IconEmojiSymbolsRoundedFilled.tsx b/src/IconEmojiSymbolsRoundedFilled.tsx new file mode 100644 index 000000000..2c834614a --- /dev/null +++ b/src/IconEmojiSymbolsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiSymbolsRoundedFilled as default } diff --git a/src/IconEmojiSymbolsSharpFilled.tsx b/src/IconEmojiSymbolsSharpFilled.tsx new file mode 100644 index 000000000..c8ebbd732 --- /dev/null +++ b/src/IconEmojiSymbolsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiSymbolsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiSymbolsSharpFilled as default } diff --git a/src/IconEmojiTransportationOutlinedFilled.tsx b/src/IconEmojiTransportationOutlinedFilled.tsx new file mode 100644 index 000000000..af2d7c537 --- /dev/null +++ b/src/IconEmojiTransportationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiTransportationOutlinedFilled as default } diff --git a/src/IconEmojiTransportationRoundedFilled.tsx b/src/IconEmojiTransportationRoundedFilled.tsx new file mode 100644 index 000000000..fb38c8743 --- /dev/null +++ b/src/IconEmojiTransportationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiTransportationRoundedFilled as default } diff --git a/src/IconEmojiTransportationSharpFilled.tsx b/src/IconEmojiTransportationSharpFilled.tsx new file mode 100644 index 000000000..b817c0551 --- /dev/null +++ b/src/IconEmojiTransportationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmojiTransportationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmojiTransportationSharpFilled as default } diff --git a/src/IconEmoticonOutlinedFilled.tsx b/src/IconEmoticonOutlinedFilled.tsx new file mode 100644 index 000000000..eb80b7f0a --- /dev/null +++ b/src/IconEmoticonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmoticonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmoticonOutlinedFilled as default } diff --git a/src/IconEmoticonRoundedFilled.tsx b/src/IconEmoticonRoundedFilled.tsx new file mode 100644 index 000000000..82c27c653 --- /dev/null +++ b/src/IconEmoticonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmoticonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmoticonRoundedFilled as default } diff --git a/src/IconEmoticonSharpFilled.tsx b/src/IconEmoticonSharpFilled.tsx new file mode 100644 index 000000000..b19835905 --- /dev/null +++ b/src/IconEmoticonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmoticonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmoticonSharpFilled as default } diff --git a/src/IconEmptyDashboardOutlinedFilled.tsx b/src/IconEmptyDashboardOutlinedFilled.tsx new file mode 100644 index 000000000..ec8856736 --- /dev/null +++ b/src/IconEmptyDashboardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmptyDashboardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEmptyDashboardOutlinedFilled as default } diff --git a/src/IconEmptyDashboardRoundedFilled.tsx b/src/IconEmptyDashboardRoundedFilled.tsx new file mode 100644 index 000000000..3dcb72b3b --- /dev/null +++ b/src/IconEmptyDashboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmptyDashboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmptyDashboardRoundedFilled as default } diff --git a/src/IconEmptyDashboardSharpFilled.tsx b/src/IconEmptyDashboardSharpFilled.tsx new file mode 100644 index 000000000..02335c622 --- /dev/null +++ b/src/IconEmptyDashboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEmptyDashboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEmptyDashboardSharpFilled as default } diff --git a/src/IconEnableOutlinedFilled.tsx b/src/IconEnableOutlinedFilled.tsx new file mode 100644 index 000000000..6e7afe0e0 --- /dev/null +++ b/src/IconEnableOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnableOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnableOutlinedFilled as default } diff --git a/src/IconEnableRoundedFilled.tsx b/src/IconEnableRoundedFilled.tsx new file mode 100644 index 000000000..5e831d66a --- /dev/null +++ b/src/IconEnableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnableRoundedFilled as default } diff --git a/src/IconEnableSharpFilled.tsx b/src/IconEnableSharpFilled.tsx new file mode 100644 index 000000000..c7b5e5821 --- /dev/null +++ b/src/IconEnableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnableSharpFilled as default } diff --git a/src/IconEncryptedAddCircleOutlinedFilled.tsx b/src/IconEncryptedAddCircleOutlinedFilled.tsx new file mode 100644 index 000000000..da4761fcd --- /dev/null +++ b/src/IconEncryptedAddCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedAddCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedAddCircleOutlinedFilled as default } diff --git a/src/IconEncryptedAddCircleRoundedFilled.tsx b/src/IconEncryptedAddCircleRoundedFilled.tsx new file mode 100644 index 000000000..89365db79 --- /dev/null +++ b/src/IconEncryptedAddCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedAddCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedAddCircleRoundedFilled as default } diff --git a/src/IconEncryptedAddCircleSharpFilled.tsx b/src/IconEncryptedAddCircleSharpFilled.tsx new file mode 100644 index 000000000..d911ff9ae --- /dev/null +++ b/src/IconEncryptedAddCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedAddCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedAddCircleSharpFilled as default } diff --git a/src/IconEncryptedAddOutlinedFilled.tsx b/src/IconEncryptedAddOutlinedFilled.tsx new file mode 100644 index 000000000..b4a196f62 --- /dev/null +++ b/src/IconEncryptedAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedAddOutlinedFilled as default } diff --git a/src/IconEncryptedAddRoundedFilled.tsx b/src/IconEncryptedAddRoundedFilled.tsx new file mode 100644 index 000000000..e7ee5aa48 --- /dev/null +++ b/src/IconEncryptedAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedAddRoundedFilled as default } diff --git a/src/IconEncryptedAddSharpFilled.tsx b/src/IconEncryptedAddSharpFilled.tsx new file mode 100644 index 000000000..3d81e6cde --- /dev/null +++ b/src/IconEncryptedAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedAddSharpFilled as default } diff --git a/src/IconEncryptedMinusCircleOutlinedFilled.tsx b/src/IconEncryptedMinusCircleOutlinedFilled.tsx new file mode 100644 index 000000000..864b7b352 --- /dev/null +++ b/src/IconEncryptedMinusCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedMinusCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedMinusCircleOutlinedFilled as default } diff --git a/src/IconEncryptedMinusCircleRoundedFilled.tsx b/src/IconEncryptedMinusCircleRoundedFilled.tsx new file mode 100644 index 000000000..7ed688627 --- /dev/null +++ b/src/IconEncryptedMinusCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedMinusCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedMinusCircleRoundedFilled as default } diff --git a/src/IconEncryptedMinusCircleSharpFilled.tsx b/src/IconEncryptedMinusCircleSharpFilled.tsx new file mode 100644 index 000000000..fa9367ea7 --- /dev/null +++ b/src/IconEncryptedMinusCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedMinusCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedMinusCircleSharpFilled as default } diff --git a/src/IconEncryptedOffOutlinedFilled.tsx b/src/IconEncryptedOffOutlinedFilled.tsx new file mode 100644 index 000000000..b8824c9c0 --- /dev/null +++ b/src/IconEncryptedOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedOffOutlinedFilled as default } diff --git a/src/IconEncryptedOffRoundedFilled.tsx b/src/IconEncryptedOffRoundedFilled.tsx new file mode 100644 index 000000000..627e8fa6d --- /dev/null +++ b/src/IconEncryptedOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedOffRoundedFilled as default } diff --git a/src/IconEncryptedOffSharpFilled.tsx b/src/IconEncryptedOffSharpFilled.tsx new file mode 100644 index 000000000..44304ae68 --- /dev/null +++ b/src/IconEncryptedOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedOffSharpFilled as default } diff --git a/src/IconEncryptedOutlinedFilled.tsx b/src/IconEncryptedOutlinedFilled.tsx new file mode 100644 index 000000000..cc86d033f --- /dev/null +++ b/src/IconEncryptedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedOutlinedFilled as default } diff --git a/src/IconEncryptedRoundedFilled.tsx b/src/IconEncryptedRoundedFilled.tsx new file mode 100644 index 000000000..25b882333 --- /dev/null +++ b/src/IconEncryptedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedRoundedFilled as default } diff --git a/src/IconEncryptedSharpFilled.tsx b/src/IconEncryptedSharpFilled.tsx new file mode 100644 index 000000000..fff707974 --- /dev/null +++ b/src/IconEncryptedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEncryptedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEncryptedSharpFilled as default } diff --git a/src/IconEndocrinologyOutlinedFilled.tsx b/src/IconEndocrinologyOutlinedFilled.tsx new file mode 100644 index 000000000..988de93bf --- /dev/null +++ b/src/IconEndocrinologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEndocrinologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEndocrinologyOutlinedFilled as default } diff --git a/src/IconEndocrinologyRoundedFilled.tsx b/src/IconEndocrinologyRoundedFilled.tsx new file mode 100644 index 000000000..1b7ec8aed --- /dev/null +++ b/src/IconEndocrinologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEndocrinologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEndocrinologyRoundedFilled as default } diff --git a/src/IconEndocrinologySharpFilled.tsx b/src/IconEndocrinologySharpFilled.tsx new file mode 100644 index 000000000..15d1b49fb --- /dev/null +++ b/src/IconEndocrinologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEndocrinologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEndocrinologySharpFilled as default } diff --git a/src/IconEnergyOutlinedFilled.tsx b/src/IconEnergyOutlinedFilled.tsx new file mode 100644 index 000000000..c8352f74e --- /dev/null +++ b/src/IconEnergyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyOutlinedFilled as default } diff --git a/src/IconEnergyProgramSavingOutlinedFilled.tsx b/src/IconEnergyProgramSavingOutlinedFilled.tsx new file mode 100644 index 000000000..86985534e --- /dev/null +++ b/src/IconEnergyProgramSavingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyProgramSavingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyProgramSavingOutlinedFilled as default } diff --git a/src/IconEnergyProgramSavingRoundedFilled.tsx b/src/IconEnergyProgramSavingRoundedFilled.tsx new file mode 100644 index 000000000..ff2265779 --- /dev/null +++ b/src/IconEnergyProgramSavingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyProgramSavingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyProgramSavingRoundedFilled as default } diff --git a/src/IconEnergyProgramSavingSharpFilled.tsx b/src/IconEnergyProgramSavingSharpFilled.tsx new file mode 100644 index 000000000..7a33221a1 --- /dev/null +++ b/src/IconEnergyProgramSavingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyProgramSavingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyProgramSavingSharpFilled as default } diff --git a/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx b/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx new file mode 100644 index 000000000..ad8391dd9 --- /dev/null +++ b/src/IconEnergyProgramTimeUsedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyProgramTimeUsedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyProgramTimeUsedOutlinedFilled as default } diff --git a/src/IconEnergyProgramTimeUsedRoundedFilled.tsx b/src/IconEnergyProgramTimeUsedRoundedFilled.tsx new file mode 100644 index 000000000..413d36b66 --- /dev/null +++ b/src/IconEnergyProgramTimeUsedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyProgramTimeUsedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyProgramTimeUsedRoundedFilled as default } diff --git a/src/IconEnergyProgramTimeUsedSharpFilled.tsx b/src/IconEnergyProgramTimeUsedSharpFilled.tsx new file mode 100644 index 000000000..46fda55ee --- /dev/null +++ b/src/IconEnergyProgramTimeUsedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyProgramTimeUsedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyProgramTimeUsedSharpFilled as default } diff --git a/src/IconEnergyRoundedFilled.tsx b/src/IconEnergyRoundedFilled.tsx new file mode 100644 index 000000000..218f3c8ef --- /dev/null +++ b/src/IconEnergyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergyRoundedFilled as default } diff --git a/src/IconEnergySavingsLeafOutlinedFilled.tsx b/src/IconEnergySavingsLeafOutlinedFilled.tsx new file mode 100644 index 000000000..e63f43e7a --- /dev/null +++ b/src/IconEnergySavingsLeafOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergySavingsLeafOutlinedFilled as default } diff --git a/src/IconEnergySavingsLeafRoundedFilled.tsx b/src/IconEnergySavingsLeafRoundedFilled.tsx new file mode 100644 index 000000000..04324e9ea --- /dev/null +++ b/src/IconEnergySavingsLeafRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergySavingsLeafRoundedFilled as default } diff --git a/src/IconEnergySavingsLeafSharpFilled.tsx b/src/IconEnergySavingsLeafSharpFilled.tsx new file mode 100644 index 000000000..e740747e7 --- /dev/null +++ b/src/IconEnergySavingsLeafSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySavingsLeafSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergySavingsLeafSharpFilled as default } diff --git a/src/IconEnergySharpFilled.tsx b/src/IconEnergySharpFilled.tsx new file mode 100644 index 000000000..f6984266a --- /dev/null +++ b/src/IconEnergySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnergySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnergySharpFilled as default } diff --git a/src/IconEngineeringOutlinedFilled.tsx b/src/IconEngineeringOutlinedFilled.tsx new file mode 100644 index 000000000..a887bb26e --- /dev/null +++ b/src/IconEngineeringOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEngineeringOutlinedFilled as default } diff --git a/src/IconEngineeringRoundedFilled.tsx b/src/IconEngineeringRoundedFilled.tsx new file mode 100644 index 000000000..b484fe996 --- /dev/null +++ b/src/IconEngineeringRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEngineeringRoundedFilled as default } diff --git a/src/IconEngineeringSharpFilled.tsx b/src/IconEngineeringSharpFilled.tsx new file mode 100644 index 000000000..5672001fa --- /dev/null +++ b/src/IconEngineeringSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEngineeringSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEngineeringSharpFilled as default } diff --git a/src/IconEnhancedEncryptionOutlinedFilled.tsx b/src/IconEnhancedEncryptionOutlinedFilled.tsx new file mode 100644 index 000000000..af748d116 --- /dev/null +++ b/src/IconEnhancedEncryptionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnhancedEncryptionOutlinedFilled as default } diff --git a/src/IconEnhancedEncryptionRoundedFilled.tsx b/src/IconEnhancedEncryptionRoundedFilled.tsx new file mode 100644 index 000000000..7ed87a83b --- /dev/null +++ b/src/IconEnhancedEncryptionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnhancedEncryptionRoundedFilled as default } diff --git a/src/IconEnhancedEncryptionSharpFilled.tsx b/src/IconEnhancedEncryptionSharpFilled.tsx new file mode 100644 index 000000000..f2fb0f34e --- /dev/null +++ b/src/IconEnhancedEncryptionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnhancedEncryptionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEnhancedEncryptionSharpFilled as default } diff --git a/src/IconEntOutlinedFilled.tsx b/src/IconEntOutlinedFilled.tsx new file mode 100644 index 000000000..55a920c2d --- /dev/null +++ b/src/IconEntOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEntOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEntOutlinedFilled as default } diff --git a/src/IconEntRoundedFilled.tsx b/src/IconEntRoundedFilled.tsx new file mode 100644 index 000000000..9ab38aedf --- /dev/null +++ b/src/IconEntRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEntRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEntRoundedFilled as default } diff --git a/src/IconEntSharpFilled.tsx b/src/IconEntSharpFilled.tsx new file mode 100644 index 000000000..79c5bf13f --- /dev/null +++ b/src/IconEntSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEntSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEntSharpFilled as default } diff --git a/src/IconEnterpriseOffOutlinedFilled.tsx b/src/IconEnterpriseOffOutlinedFilled.tsx new file mode 100644 index 000000000..fc203b74a --- /dev/null +++ b/src/IconEnterpriseOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnterpriseOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnterpriseOffOutlinedFilled as default } diff --git a/src/IconEnterpriseOffRoundedFilled.tsx b/src/IconEnterpriseOffRoundedFilled.tsx new file mode 100644 index 000000000..dceb696cb --- /dev/null +++ b/src/IconEnterpriseOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnterpriseOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnterpriseOffRoundedFilled as default } diff --git a/src/IconEnterpriseOffSharpFilled.tsx b/src/IconEnterpriseOffSharpFilled.tsx new file mode 100644 index 000000000..83d743731 --- /dev/null +++ b/src/IconEnterpriseOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnterpriseOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnterpriseOffSharpFilled as default } diff --git a/src/IconEnterpriseOutlinedFilled.tsx b/src/IconEnterpriseOutlinedFilled.tsx new file mode 100644 index 000000000..2ac7b4f79 --- /dev/null +++ b/src/IconEnterpriseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnterpriseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnterpriseOutlinedFilled as default } diff --git a/src/IconEnterpriseRoundedFilled.tsx b/src/IconEnterpriseRoundedFilled.tsx new file mode 100644 index 000000000..47cfd0e6d --- /dev/null +++ b/src/IconEnterpriseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnterpriseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnterpriseRoundedFilled as default } diff --git a/src/IconEnterpriseSharpFilled.tsx b/src/IconEnterpriseSharpFilled.tsx new file mode 100644 index 000000000..617a897a2 --- /dev/null +++ b/src/IconEnterpriseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEnterpriseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEnterpriseSharpFilled as default } diff --git a/src/IconEqualOutlinedFilled.tsx b/src/IconEqualOutlinedFilled.tsx new file mode 100644 index 000000000..117f76b0d --- /dev/null +++ b/src/IconEqualOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualOutlinedFilled as default } diff --git a/src/IconEqualRoundedFilled.tsx b/src/IconEqualRoundedFilled.tsx new file mode 100644 index 000000000..58c336a1d --- /dev/null +++ b/src/IconEqualRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualRoundedFilled as default } diff --git a/src/IconEqualSharpFilled.tsx b/src/IconEqualSharpFilled.tsx new file mode 100644 index 000000000..98fc84ed9 --- /dev/null +++ b/src/IconEqualSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualSharpFilled as default } diff --git a/src/IconEqualizerOutlinedFilled.tsx b/src/IconEqualizerOutlinedFilled.tsx new file mode 100644 index 000000000..59c8b9789 --- /dev/null +++ b/src/IconEqualizerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualizerOutlinedFilled as default } diff --git a/src/IconEqualizerRoundedFilled.tsx b/src/IconEqualizerRoundedFilled.tsx new file mode 100644 index 000000000..e48deae85 --- /dev/null +++ b/src/IconEqualizerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualizerRoundedFilled as default } diff --git a/src/IconEqualizerSharpFilled.tsx b/src/IconEqualizerSharpFilled.tsx new file mode 100644 index 000000000..b7319246b --- /dev/null +++ b/src/IconEqualizerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEqualizerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEqualizerSharpFilled as default } diff --git a/src/IconEraserSize1OutlinedFilled.tsx b/src/IconEraserSize1OutlinedFilled.tsx new file mode 100644 index 000000000..378abbf1c --- /dev/null +++ b/src/IconEraserSize1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize1OutlinedFilled as default } diff --git a/src/IconEraserSize1RoundedFilled.tsx b/src/IconEraserSize1RoundedFilled.tsx new file mode 100644 index 000000000..0a25cad9a --- /dev/null +++ b/src/IconEraserSize1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize1RoundedFilled as default } diff --git a/src/IconEraserSize1SharpFilled.tsx b/src/IconEraserSize1SharpFilled.tsx new file mode 100644 index 000000000..dd73dd524 --- /dev/null +++ b/src/IconEraserSize1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize1SharpFilled as default } diff --git a/src/IconEraserSize2OutlinedFilled.tsx b/src/IconEraserSize2OutlinedFilled.tsx new file mode 100644 index 000000000..6704b7d9f --- /dev/null +++ b/src/IconEraserSize2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize2OutlinedFilled as default } diff --git a/src/IconEraserSize2RoundedFilled.tsx b/src/IconEraserSize2RoundedFilled.tsx new file mode 100644 index 000000000..ebecba628 --- /dev/null +++ b/src/IconEraserSize2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize2RoundedFilled as default } diff --git a/src/IconEraserSize2SharpFilled.tsx b/src/IconEraserSize2SharpFilled.tsx new file mode 100644 index 000000000..782bdf930 --- /dev/null +++ b/src/IconEraserSize2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize2SharpFilled as default } diff --git a/src/IconEraserSize3OutlinedFilled.tsx b/src/IconEraserSize3OutlinedFilled.tsx new file mode 100644 index 000000000..ef795bb09 --- /dev/null +++ b/src/IconEraserSize3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize3OutlinedFilled as default } diff --git a/src/IconEraserSize3RoundedFilled.tsx b/src/IconEraserSize3RoundedFilled.tsx new file mode 100644 index 000000000..e579b0c2e --- /dev/null +++ b/src/IconEraserSize3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize3RoundedFilled as default } diff --git a/src/IconEraserSize3SharpFilled.tsx b/src/IconEraserSize3SharpFilled.tsx new file mode 100644 index 000000000..1baa49914 --- /dev/null +++ b/src/IconEraserSize3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize3SharpFilled as default } diff --git a/src/IconEraserSize4OutlinedFilled.tsx b/src/IconEraserSize4OutlinedFilled.tsx new file mode 100644 index 000000000..4ba7ed379 --- /dev/null +++ b/src/IconEraserSize4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize4OutlinedFilled as default } diff --git a/src/IconEraserSize4RoundedFilled.tsx b/src/IconEraserSize4RoundedFilled.tsx new file mode 100644 index 000000000..b905d49b6 --- /dev/null +++ b/src/IconEraserSize4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize4RoundedFilled as default } diff --git a/src/IconEraserSize4SharpFilled.tsx b/src/IconEraserSize4SharpFilled.tsx new file mode 100644 index 000000000..dc280829c --- /dev/null +++ b/src/IconEraserSize4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize4SharpFilled as default } diff --git a/src/IconEraserSize5OutlinedFilled.tsx b/src/IconEraserSize5OutlinedFilled.tsx new file mode 100644 index 000000000..879b8d613 --- /dev/null +++ b/src/IconEraserSize5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize5OutlinedFilled as default } diff --git a/src/IconEraserSize5RoundedFilled.tsx b/src/IconEraserSize5RoundedFilled.tsx new file mode 100644 index 000000000..b58ba1369 --- /dev/null +++ b/src/IconEraserSize5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize5RoundedFilled as default } diff --git a/src/IconEraserSize5SharpFilled.tsx b/src/IconEraserSize5SharpFilled.tsx new file mode 100644 index 000000000..f2305f379 --- /dev/null +++ b/src/IconEraserSize5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEraserSize5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEraserSize5SharpFilled as default } diff --git a/src/IconErrorMedOutlinedFilled.tsx b/src/IconErrorMedOutlinedFilled.tsx new file mode 100644 index 000000000..086636878 --- /dev/null +++ b/src/IconErrorMedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorMedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorMedOutlinedFilled as default } diff --git a/src/IconErrorMedRoundedFilled.tsx b/src/IconErrorMedRoundedFilled.tsx new file mode 100644 index 000000000..765838d0f --- /dev/null +++ b/src/IconErrorMedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorMedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorMedRoundedFilled as default } diff --git a/src/IconErrorMedSharpFilled.tsx b/src/IconErrorMedSharpFilled.tsx new file mode 100644 index 000000000..3c6caf989 --- /dev/null +++ b/src/IconErrorMedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorMedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorMedSharpFilled as default } diff --git a/src/IconErrorOutlinedFilled.tsx b/src/IconErrorOutlinedFilled.tsx new file mode 100644 index 000000000..a3bdc2f7b --- /dev/null +++ b/src/IconErrorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorOutlinedFilled as default } diff --git a/src/IconErrorRoundedFilled.tsx b/src/IconErrorRoundedFilled.tsx new file mode 100644 index 000000000..4ee8e6151 --- /dev/null +++ b/src/IconErrorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorRoundedFilled as default } diff --git a/src/IconErrorSharpFilled.tsx b/src/IconErrorSharpFilled.tsx new file mode 100644 index 000000000..3d3ba19a6 --- /dev/null +++ b/src/IconErrorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconErrorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconErrorSharpFilled as default } diff --git a/src/IconEscalatorOutlinedFilled.tsx b/src/IconEscalatorOutlinedFilled.tsx new file mode 100644 index 000000000..ac9b222c2 --- /dev/null +++ b/src/IconEscalatorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEscalatorOutlinedFilled as default } diff --git a/src/IconEscalatorRoundedFilled.tsx b/src/IconEscalatorRoundedFilled.tsx new file mode 100644 index 000000000..c4fb098ee --- /dev/null +++ b/src/IconEscalatorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEscalatorRoundedFilled as default } diff --git a/src/IconEscalatorSharpFilled.tsx b/src/IconEscalatorSharpFilled.tsx new file mode 100644 index 000000000..1df60c2a6 --- /dev/null +++ b/src/IconEscalatorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEscalatorSharpFilled as default } diff --git a/src/IconEscalatorWarningOutlinedFilled.tsx b/src/IconEscalatorWarningOutlinedFilled.tsx new file mode 100644 index 000000000..6e01d1f9c --- /dev/null +++ b/src/IconEscalatorWarningOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEscalatorWarningOutlinedFilled as default } diff --git a/src/IconEscalatorWarningRoundedFilled.tsx b/src/IconEscalatorWarningRoundedFilled.tsx new file mode 100644 index 000000000..84a036b42 --- /dev/null +++ b/src/IconEscalatorWarningRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEscalatorWarningRoundedFilled as default } diff --git a/src/IconEscalatorWarningSharpFilled.tsx b/src/IconEscalatorWarningSharpFilled.tsx new file mode 100644 index 000000000..686c05c5a --- /dev/null +++ b/src/IconEscalatorWarningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEscalatorWarningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEscalatorWarningSharpFilled as default } diff --git a/src/IconEuroOutlinedFilled.tsx b/src/IconEuroOutlinedFilled.tsx new file mode 100644 index 000000000..1a5e906a3 --- /dev/null +++ b/src/IconEuroOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEuroOutlinedFilled as default } diff --git a/src/IconEuroRoundedFilled.tsx b/src/IconEuroRoundedFilled.tsx new file mode 100644 index 000000000..e389a2fd5 --- /dev/null +++ b/src/IconEuroRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEuroRoundedFilled as default } diff --git a/src/IconEuroSharpFilled.tsx b/src/IconEuroSharpFilled.tsx new file mode 100644 index 000000000..58141b6c4 --- /dev/null +++ b/src/IconEuroSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEuroSharpFilled as default } diff --git a/src/IconEuroSymbolOutlinedFilled.tsx b/src/IconEuroSymbolOutlinedFilled.tsx new file mode 100644 index 000000000..5b7a947cd --- /dev/null +++ b/src/IconEuroSymbolOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEuroSymbolOutlinedFilled as default } diff --git a/src/IconEuroSymbolRoundedFilled.tsx b/src/IconEuroSymbolRoundedFilled.tsx new file mode 100644 index 000000000..02aad42d0 --- /dev/null +++ b/src/IconEuroSymbolRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEuroSymbolRoundedFilled as default } diff --git a/src/IconEuroSymbolSharpFilled.tsx b/src/IconEuroSymbolSharpFilled.tsx new file mode 100644 index 000000000..49467b098 --- /dev/null +++ b/src/IconEuroSymbolSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEuroSymbolSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEuroSymbolSharpFilled as default } diff --git a/src/IconEvChargerOutlinedFilled.tsx b/src/IconEvChargerOutlinedFilled.tsx new file mode 100644 index 000000000..d14ead4e9 --- /dev/null +++ b/src/IconEvChargerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvChargerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvChargerOutlinedFilled as default } diff --git a/src/IconEvChargerRoundedFilled.tsx b/src/IconEvChargerRoundedFilled.tsx new file mode 100644 index 000000000..f115e18b4 --- /dev/null +++ b/src/IconEvChargerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvChargerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvChargerRoundedFilled as default } diff --git a/src/IconEvChargerSharpFilled.tsx b/src/IconEvChargerSharpFilled.tsx new file mode 100644 index 000000000..443f54d21 --- /dev/null +++ b/src/IconEvChargerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvChargerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvChargerSharpFilled as default } diff --git a/src/IconEvMobiledataBadgeOutlinedFilled.tsx b/src/IconEvMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..c88d63855 --- /dev/null +++ b/src/IconEvMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEvMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconEvMobiledataBadgeRoundedFilled.tsx b/src/IconEvMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..5a7d6fb5b --- /dev/null +++ b/src/IconEvMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEvMobiledataBadgeRoundedFilled as default } diff --git a/src/IconEvMobiledataBadgeSharpFilled.tsx b/src/IconEvMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..c6946a2d8 --- /dev/null +++ b/src/IconEvMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEvMobiledataBadgeSharpFilled as default } diff --git a/src/IconEvShadowAddOutlinedFilled.tsx b/src/IconEvShadowAddOutlinedFilled.tsx new file mode 100644 index 000000000..d520c13fd --- /dev/null +++ b/src/IconEvShadowAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowAddOutlinedFilled as default } diff --git a/src/IconEvShadowAddRoundedFilled.tsx b/src/IconEvShadowAddRoundedFilled.tsx new file mode 100644 index 000000000..4ebfe9b3c --- /dev/null +++ b/src/IconEvShadowAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowAddRoundedFilled as default } diff --git a/src/IconEvShadowAddSharpFilled.tsx b/src/IconEvShadowAddSharpFilled.tsx new file mode 100644 index 000000000..11ea407b0 --- /dev/null +++ b/src/IconEvShadowAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowAddSharpFilled as default } diff --git a/src/IconEvShadowMinusOutlinedFilled.tsx b/src/IconEvShadowMinusOutlinedFilled.tsx new file mode 100644 index 000000000..e31803b2a --- /dev/null +++ b/src/IconEvShadowMinusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowMinusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowMinusOutlinedFilled as default } diff --git a/src/IconEvShadowMinusRoundedFilled.tsx b/src/IconEvShadowMinusRoundedFilled.tsx new file mode 100644 index 000000000..91366fd65 --- /dev/null +++ b/src/IconEvShadowMinusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowMinusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowMinusRoundedFilled as default } diff --git a/src/IconEvShadowMinusSharpFilled.tsx b/src/IconEvShadowMinusSharpFilled.tsx new file mode 100644 index 000000000..6fe8cba4b --- /dev/null +++ b/src/IconEvShadowMinusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowMinusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowMinusSharpFilled as default } diff --git a/src/IconEvShadowOutlinedFilled.tsx b/src/IconEvShadowOutlinedFilled.tsx new file mode 100644 index 000000000..dc756a7ea --- /dev/null +++ b/src/IconEvShadowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowOutlinedFilled as default } diff --git a/src/IconEvShadowRoundedFilled.tsx b/src/IconEvShadowRoundedFilled.tsx new file mode 100644 index 000000000..75a32366a --- /dev/null +++ b/src/IconEvShadowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowRoundedFilled as default } diff --git a/src/IconEvShadowSharpFilled.tsx b/src/IconEvShadowSharpFilled.tsx new file mode 100644 index 000000000..3cb05e8d6 --- /dev/null +++ b/src/IconEvShadowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvShadowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvShadowSharpFilled as default } diff --git a/src/IconEvStationOutlinedFilled.tsx b/src/IconEvStationOutlinedFilled.tsx new file mode 100644 index 000000000..e51ead9d9 --- /dev/null +++ b/src/IconEvStationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvStationOutlinedFilled as default } diff --git a/src/IconEvStationRoundedFilled.tsx b/src/IconEvStationRoundedFilled.tsx new file mode 100644 index 000000000..21c8329ee --- /dev/null +++ b/src/IconEvStationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvStationRoundedFilled as default } diff --git a/src/IconEvStationSharpFilled.tsx b/src/IconEvStationSharpFilled.tsx new file mode 100644 index 000000000..1aea17656 --- /dev/null +++ b/src/IconEvStationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEvStationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEvStationSharpFilled as default } diff --git a/src/IconEventAvailableOutlinedFilled.tsx b/src/IconEventAvailableOutlinedFilled.tsx new file mode 100644 index 000000000..a7fd81ea4 --- /dev/null +++ b/src/IconEventAvailableOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconEventAvailableOutlinedFilled as default } diff --git a/src/IconEventAvailableRoundedFilled.tsx b/src/IconEventAvailableRoundedFilled.tsx new file mode 100644 index 000000000..2d7272481 --- /dev/null +++ b/src/IconEventAvailableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventAvailableRoundedFilled as default } diff --git a/src/IconEventAvailableSharpFilled.tsx b/src/IconEventAvailableSharpFilled.tsx new file mode 100644 index 000000000..e104b12e3 --- /dev/null +++ b/src/IconEventAvailableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventAvailableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventAvailableSharpFilled as default } diff --git a/src/IconEventBusyOutlinedFilled.tsx b/src/IconEventBusyOutlinedFilled.tsx new file mode 100644 index 000000000..e26218c16 --- /dev/null +++ b/src/IconEventBusyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventBusyOutlinedFilled as default } diff --git a/src/IconEventBusyRoundedFilled.tsx b/src/IconEventBusyRoundedFilled.tsx new file mode 100644 index 000000000..ad1df7e81 --- /dev/null +++ b/src/IconEventBusyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventBusyRoundedFilled as default } diff --git a/src/IconEventBusySharpFilled.tsx b/src/IconEventBusySharpFilled.tsx new file mode 100644 index 000000000..b86404cba --- /dev/null +++ b/src/IconEventBusySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventBusySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventBusySharpFilled as default } diff --git a/src/IconEventListOutlinedFilled.tsx b/src/IconEventListOutlinedFilled.tsx new file mode 100644 index 000000000..4f4be3d54 --- /dev/null +++ b/src/IconEventListOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventListOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventListOutlinedFilled as default } diff --git a/src/IconEventListRoundedFilled.tsx b/src/IconEventListRoundedFilled.tsx new file mode 100644 index 000000000..556a56429 --- /dev/null +++ b/src/IconEventListRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventListRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventListRoundedFilled as default } diff --git a/src/IconEventListSharpFilled.tsx b/src/IconEventListSharpFilled.tsx new file mode 100644 index 000000000..43df40f60 --- /dev/null +++ b/src/IconEventListSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventListSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventListSharpFilled as default } diff --git a/src/IconEventNoteOutlinedFilled.tsx b/src/IconEventNoteOutlinedFilled.tsx new file mode 100644 index 000000000..d53288741 --- /dev/null +++ b/src/IconEventNoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventNoteOutlinedFilled as default } diff --git a/src/IconEventNoteRoundedFilled.tsx b/src/IconEventNoteRoundedFilled.tsx new file mode 100644 index 000000000..0decff67d --- /dev/null +++ b/src/IconEventNoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventNoteRoundedFilled as default } diff --git a/src/IconEventNoteSharpFilled.tsx b/src/IconEventNoteSharpFilled.tsx new file mode 100644 index 000000000..4d1e09054 --- /dev/null +++ b/src/IconEventNoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventNoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventNoteSharpFilled as default } diff --git a/src/IconEventOutlinedFilled.tsx b/src/IconEventOutlinedFilled.tsx new file mode 100644 index 000000000..8fb9dab98 --- /dev/null +++ b/src/IconEventOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventOutlinedFilled as default } diff --git a/src/IconEventRepeatOutlinedFilled.tsx b/src/IconEventRepeatOutlinedFilled.tsx new file mode 100644 index 000000000..992245ce1 --- /dev/null +++ b/src/IconEventRepeatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventRepeatOutlinedFilled as default } diff --git a/src/IconEventRepeatRoundedFilled.tsx b/src/IconEventRepeatRoundedFilled.tsx new file mode 100644 index 000000000..ddb7846bb --- /dev/null +++ b/src/IconEventRepeatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventRepeatRoundedFilled as default } diff --git a/src/IconEventRepeatSharpFilled.tsx b/src/IconEventRepeatSharpFilled.tsx new file mode 100644 index 000000000..a5f119449 --- /dev/null +++ b/src/IconEventRepeatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRepeatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventRepeatSharpFilled as default } diff --git a/src/IconEventRoundedFilled.tsx b/src/IconEventRoundedFilled.tsx new file mode 100644 index 000000000..270bc669a --- /dev/null +++ b/src/IconEventRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventRoundedFilled as default } diff --git a/src/IconEventSeatOutlinedFilled.tsx b/src/IconEventSeatOutlinedFilled.tsx new file mode 100644 index 000000000..767c3e8c3 --- /dev/null +++ b/src/IconEventSeatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventSeatOutlinedFilled as default } diff --git a/src/IconEventSeatRoundedFilled.tsx b/src/IconEventSeatRoundedFilled.tsx new file mode 100644 index 000000000..316036212 --- /dev/null +++ b/src/IconEventSeatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventSeatRoundedFilled as default } diff --git a/src/IconEventSeatSharpFilled.tsx b/src/IconEventSeatSharpFilled.tsx new file mode 100644 index 000000000..7fcf750dc --- /dev/null +++ b/src/IconEventSeatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSeatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventSeatSharpFilled as default } diff --git a/src/IconEventSharpFilled.tsx b/src/IconEventSharpFilled.tsx new file mode 100644 index 000000000..568470080 --- /dev/null +++ b/src/IconEventSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventSharpFilled as default } diff --git a/src/IconEventUpcomingOutlinedFilled.tsx b/src/IconEventUpcomingOutlinedFilled.tsx new file mode 100644 index 000000000..2bd4982f9 --- /dev/null +++ b/src/IconEventUpcomingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventUpcomingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventUpcomingOutlinedFilled as default } diff --git a/src/IconEventUpcomingRoundedFilled.tsx b/src/IconEventUpcomingRoundedFilled.tsx new file mode 100644 index 000000000..cd0382f9c --- /dev/null +++ b/src/IconEventUpcomingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventUpcomingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventUpcomingRoundedFilled as default } diff --git a/src/IconEventUpcomingSharpFilled.tsx b/src/IconEventUpcomingSharpFilled.tsx new file mode 100644 index 000000000..706794e95 --- /dev/null +++ b/src/IconEventUpcomingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEventUpcomingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEventUpcomingSharpFilled as default } diff --git a/src/IconExclamationOutlinedFilled.tsx b/src/IconExclamationOutlinedFilled.tsx new file mode 100644 index 000000000..a1727a3cc --- /dev/null +++ b/src/IconExclamationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExclamationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExclamationOutlinedFilled as default } diff --git a/src/IconExclamationRoundedFilled.tsx b/src/IconExclamationRoundedFilled.tsx new file mode 100644 index 000000000..9e390b0ad --- /dev/null +++ b/src/IconExclamationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExclamationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExclamationRoundedFilled as default } diff --git a/src/IconExclamationSharpFilled.tsx b/src/IconExclamationSharpFilled.tsx new file mode 100644 index 000000000..9d8cf04f3 --- /dev/null +++ b/src/IconExclamationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExclamationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExclamationSharpFilled as default } diff --git a/src/IconExerciseOutlinedFilled.tsx b/src/IconExerciseOutlinedFilled.tsx new file mode 100644 index 000000000..40b7ced64 --- /dev/null +++ b/src/IconExerciseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExerciseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExerciseOutlinedFilled as default } diff --git a/src/IconExerciseRoundedFilled.tsx b/src/IconExerciseRoundedFilled.tsx new file mode 100644 index 000000000..74be770c6 --- /dev/null +++ b/src/IconExerciseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExerciseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExerciseRoundedFilled as default } diff --git a/src/IconExerciseSharpFilled.tsx b/src/IconExerciseSharpFilled.tsx new file mode 100644 index 000000000..531d13efa --- /dev/null +++ b/src/IconExerciseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExerciseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExerciseSharpFilled as default } diff --git a/src/IconExitToAppOutlinedFilled.tsx b/src/IconExitToAppOutlinedFilled.tsx new file mode 100644 index 000000000..15001612c --- /dev/null +++ b/src/IconExitToAppOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExitToAppOutlinedFilled as default } diff --git a/src/IconExitToAppRoundedFilled.tsx b/src/IconExitToAppRoundedFilled.tsx new file mode 100644 index 000000000..ca65c5164 --- /dev/null +++ b/src/IconExitToAppRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExitToAppRoundedFilled as default } diff --git a/src/IconExitToAppSharpFilled.tsx b/src/IconExitToAppSharpFilled.tsx new file mode 100644 index 000000000..0e118d1de --- /dev/null +++ b/src/IconExitToAppSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExitToAppSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExitToAppSharpFilled as default } diff --git a/src/IconExpandAllOutlinedFilled.tsx b/src/IconExpandAllOutlinedFilled.tsx new file mode 100644 index 000000000..7f59e0335 --- /dev/null +++ b/src/IconExpandAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandAllOutlinedFilled as default } diff --git a/src/IconExpandAllRoundedFilled.tsx b/src/IconExpandAllRoundedFilled.tsx new file mode 100644 index 000000000..54a8c46d8 --- /dev/null +++ b/src/IconExpandAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandAllRoundedFilled as default } diff --git a/src/IconExpandAllSharpFilled.tsx b/src/IconExpandAllSharpFilled.tsx new file mode 100644 index 000000000..69f55fca5 --- /dev/null +++ b/src/IconExpandAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandAllSharpFilled as default } diff --git a/src/IconExpandCircleDownOutlinedFilled.tsx b/src/IconExpandCircleDownOutlinedFilled.tsx new file mode 100644 index 000000000..1980fee80 --- /dev/null +++ b/src/IconExpandCircleDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleDownOutlinedFilled as default } diff --git a/src/IconExpandCircleDownRoundedFilled.tsx b/src/IconExpandCircleDownRoundedFilled.tsx new file mode 100644 index 000000000..f17bf340e --- /dev/null +++ b/src/IconExpandCircleDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleDownRoundedFilled as default } diff --git a/src/IconExpandCircleDownSharpFilled.tsx b/src/IconExpandCircleDownSharpFilled.tsx new file mode 100644 index 000000000..a31a146e4 --- /dev/null +++ b/src/IconExpandCircleDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleDownSharpFilled as default } diff --git a/src/IconExpandCircleRightOutlinedFilled.tsx b/src/IconExpandCircleRightOutlinedFilled.tsx new file mode 100644 index 000000000..6825aada1 --- /dev/null +++ b/src/IconExpandCircleRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleRightOutlinedFilled as default } diff --git a/src/IconExpandCircleRightRoundedFilled.tsx b/src/IconExpandCircleRightRoundedFilled.tsx new file mode 100644 index 000000000..90a8b8cac --- /dev/null +++ b/src/IconExpandCircleRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleRightRoundedFilled as default } diff --git a/src/IconExpandCircleRightSharpFilled.tsx b/src/IconExpandCircleRightSharpFilled.tsx new file mode 100644 index 000000000..7792e7135 --- /dev/null +++ b/src/IconExpandCircleRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleRightSharpFilled as default } diff --git a/src/IconExpandCircleUpOutlinedFilled.tsx b/src/IconExpandCircleUpOutlinedFilled.tsx new file mode 100644 index 000000000..472b6b9e6 --- /dev/null +++ b/src/IconExpandCircleUpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleUpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleUpOutlinedFilled as default } diff --git a/src/IconExpandCircleUpRoundedFilled.tsx b/src/IconExpandCircleUpRoundedFilled.tsx new file mode 100644 index 000000000..404c67431 --- /dev/null +++ b/src/IconExpandCircleUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleUpRoundedFilled as default } diff --git a/src/IconExpandCircleUpSharpFilled.tsx b/src/IconExpandCircleUpSharpFilled.tsx new file mode 100644 index 000000000..dd019be9d --- /dev/null +++ b/src/IconExpandCircleUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandCircleUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandCircleUpSharpFilled as default } diff --git a/src/IconExpandContentOutlinedFilled.tsx b/src/IconExpandContentOutlinedFilled.tsx new file mode 100644 index 000000000..8cf4a4873 --- /dev/null +++ b/src/IconExpandContentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandContentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandContentOutlinedFilled as default } diff --git a/src/IconExpandContentRoundedFilled.tsx b/src/IconExpandContentRoundedFilled.tsx new file mode 100644 index 000000000..582e98238 --- /dev/null +++ b/src/IconExpandContentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandContentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandContentRoundedFilled as default } diff --git a/src/IconExpandContentSharpFilled.tsx b/src/IconExpandContentSharpFilled.tsx new file mode 100644 index 000000000..a6ee33779 --- /dev/null +++ b/src/IconExpandContentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandContentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandContentSharpFilled as default } diff --git a/src/IconExpandOutlinedFilled.tsx b/src/IconExpandOutlinedFilled.tsx new file mode 100644 index 000000000..157a5391e --- /dev/null +++ b/src/IconExpandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandOutlinedFilled as default } diff --git a/src/IconExpandRoundedFilled.tsx b/src/IconExpandRoundedFilled.tsx new file mode 100644 index 000000000..ced9cf475 --- /dev/null +++ b/src/IconExpandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandRoundedFilled as default } diff --git a/src/IconExpandSharpFilled.tsx b/src/IconExpandSharpFilled.tsx new file mode 100644 index 000000000..718036c82 --- /dev/null +++ b/src/IconExpandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExpandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExpandSharpFilled as default } diff --git a/src/IconExperimentOutlinedFilled.tsx b/src/IconExperimentOutlinedFilled.tsx new file mode 100644 index 000000000..982781700 --- /dev/null +++ b/src/IconExperimentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExperimentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExperimentOutlinedFilled as default } diff --git a/src/IconExperimentRoundedFilled.tsx b/src/IconExperimentRoundedFilled.tsx new file mode 100644 index 000000000..67cac9602 --- /dev/null +++ b/src/IconExperimentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExperimentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExperimentRoundedFilled as default } diff --git a/src/IconExperimentSharpFilled.tsx b/src/IconExperimentSharpFilled.tsx new file mode 100644 index 000000000..0c9021d56 --- /dev/null +++ b/src/IconExperimentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExperimentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExperimentSharpFilled as default } diff --git a/src/IconExplicitOutlinedFilled.tsx b/src/IconExplicitOutlinedFilled.tsx new file mode 100644 index 000000000..e3335e56d --- /dev/null +++ b/src/IconExplicitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplicitOutlinedFilled as default } diff --git a/src/IconExplicitRoundedFilled.tsx b/src/IconExplicitRoundedFilled.tsx new file mode 100644 index 000000000..538ce9594 --- /dev/null +++ b/src/IconExplicitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplicitRoundedFilled as default } diff --git a/src/IconExplicitSharpFilled.tsx b/src/IconExplicitSharpFilled.tsx new file mode 100644 index 000000000..762a73908 --- /dev/null +++ b/src/IconExplicitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplicitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplicitSharpFilled as default } diff --git a/src/IconExploreNearbyOutlinedFilled.tsx b/src/IconExploreNearbyOutlinedFilled.tsx new file mode 100644 index 000000000..336baef4a --- /dev/null +++ b/src/IconExploreNearbyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreNearbyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreNearbyOutlinedFilled as default } diff --git a/src/IconExploreNearbyRoundedFilled.tsx b/src/IconExploreNearbyRoundedFilled.tsx new file mode 100644 index 000000000..580704adf --- /dev/null +++ b/src/IconExploreNearbyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreNearbyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreNearbyRoundedFilled as default } diff --git a/src/IconExploreNearbySharpFilled.tsx b/src/IconExploreNearbySharpFilled.tsx new file mode 100644 index 000000000..d763405ea --- /dev/null +++ b/src/IconExploreNearbySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreNearbySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreNearbySharpFilled as default } diff --git a/src/IconExploreOffOutlinedFilled.tsx b/src/IconExploreOffOutlinedFilled.tsx new file mode 100644 index 000000000..f518265b1 --- /dev/null +++ b/src/IconExploreOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreOffOutlinedFilled as default } diff --git a/src/IconExploreOffRoundedFilled.tsx b/src/IconExploreOffRoundedFilled.tsx new file mode 100644 index 000000000..ebdfece12 --- /dev/null +++ b/src/IconExploreOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreOffRoundedFilled as default } diff --git a/src/IconExploreOffSharpFilled.tsx b/src/IconExploreOffSharpFilled.tsx new file mode 100644 index 000000000..b774db0db --- /dev/null +++ b/src/IconExploreOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreOffSharpFilled as default } diff --git a/src/IconExploreOutlinedFilled.tsx b/src/IconExploreOutlinedFilled.tsx new file mode 100644 index 000000000..cd365e632 --- /dev/null +++ b/src/IconExploreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreOutlinedFilled as default } diff --git a/src/IconExploreRoundedFilled.tsx b/src/IconExploreRoundedFilled.tsx new file mode 100644 index 000000000..3cb000a75 --- /dev/null +++ b/src/IconExploreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreRoundedFilled as default } diff --git a/src/IconExploreSharpFilled.tsx b/src/IconExploreSharpFilled.tsx new file mode 100644 index 000000000..c93058191 --- /dev/null +++ b/src/IconExploreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExploreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExploreSharpFilled as default } diff --git a/src/IconExplosionOutlinedFilled.tsx b/src/IconExplosionOutlinedFilled.tsx new file mode 100644 index 000000000..ae67cb74e --- /dev/null +++ b/src/IconExplosionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplosionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplosionOutlinedFilled as default } diff --git a/src/IconExplosionRoundedFilled.tsx b/src/IconExplosionRoundedFilled.tsx new file mode 100644 index 000000000..1305638cb --- /dev/null +++ b/src/IconExplosionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplosionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplosionRoundedFilled as default } diff --git a/src/IconExplosionSharpFilled.tsx b/src/IconExplosionSharpFilled.tsx new file mode 100644 index 000000000..36fc67a68 --- /dev/null +++ b/src/IconExplosionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExplosionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExplosionSharpFilled as default } diff --git a/src/IconExportNotesOutlinedFilled.tsx b/src/IconExportNotesOutlinedFilled.tsx new file mode 100644 index 000000000..0803c8f21 --- /dev/null +++ b/src/IconExportNotesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExportNotesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExportNotesOutlinedFilled as default } diff --git a/src/IconExportNotesRoundedFilled.tsx b/src/IconExportNotesRoundedFilled.tsx new file mode 100644 index 000000000..f7d735e1a --- /dev/null +++ b/src/IconExportNotesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExportNotesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExportNotesRoundedFilled as default } diff --git a/src/IconExportNotesSharpFilled.tsx b/src/IconExportNotesSharpFilled.tsx new file mode 100644 index 000000000..f008b9089 --- /dev/null +++ b/src/IconExportNotesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExportNotesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExportNotesSharpFilled as default } diff --git a/src/IconExposureNeg1OutlinedFilled.tsx b/src/IconExposureNeg1OutlinedFilled.tsx new file mode 100644 index 000000000..857f306c0 --- /dev/null +++ b/src/IconExposureNeg1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureNeg1OutlinedFilled as default } diff --git a/src/IconExposureNeg1RoundedFilled.tsx b/src/IconExposureNeg1RoundedFilled.tsx new file mode 100644 index 000000000..16be6a56e --- /dev/null +++ b/src/IconExposureNeg1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureNeg1RoundedFilled as default } diff --git a/src/IconExposureNeg1SharpFilled.tsx b/src/IconExposureNeg1SharpFilled.tsx new file mode 100644 index 000000000..ed47f517e --- /dev/null +++ b/src/IconExposureNeg1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureNeg1SharpFilled as default } diff --git a/src/IconExposureNeg2OutlinedFilled.tsx b/src/IconExposureNeg2OutlinedFilled.tsx new file mode 100644 index 000000000..030dc5a21 --- /dev/null +++ b/src/IconExposureNeg2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureNeg2OutlinedFilled as default } diff --git a/src/IconExposureNeg2RoundedFilled.tsx b/src/IconExposureNeg2RoundedFilled.tsx new file mode 100644 index 000000000..e7031184c --- /dev/null +++ b/src/IconExposureNeg2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureNeg2RoundedFilled as default } diff --git a/src/IconExposureNeg2SharpFilled.tsx b/src/IconExposureNeg2SharpFilled.tsx new file mode 100644 index 000000000..3a3a171fe --- /dev/null +++ b/src/IconExposureNeg2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureNeg2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureNeg2SharpFilled as default } diff --git a/src/IconExposureOutlinedFilled.tsx b/src/IconExposureOutlinedFilled.tsx new file mode 100644 index 000000000..116b91fd6 --- /dev/null +++ b/src/IconExposureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureOutlinedFilled as default } diff --git a/src/IconExposurePlus1OutlinedFilled.tsx b/src/IconExposurePlus1OutlinedFilled.tsx new file mode 100644 index 000000000..58bcb7a9d --- /dev/null +++ b/src/IconExposurePlus1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposurePlus1OutlinedFilled as default } diff --git a/src/IconExposurePlus1RoundedFilled.tsx b/src/IconExposurePlus1RoundedFilled.tsx new file mode 100644 index 000000000..c070e4117 --- /dev/null +++ b/src/IconExposurePlus1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposurePlus1RoundedFilled as default } diff --git a/src/IconExposurePlus1SharpFilled.tsx b/src/IconExposurePlus1SharpFilled.tsx new file mode 100644 index 000000000..caccc45ca --- /dev/null +++ b/src/IconExposurePlus1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposurePlus1SharpFilled as default } diff --git a/src/IconExposurePlus2OutlinedFilled.tsx b/src/IconExposurePlus2OutlinedFilled.tsx new file mode 100644 index 000000000..1643653db --- /dev/null +++ b/src/IconExposurePlus2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposurePlus2OutlinedFilled as default } diff --git a/src/IconExposurePlus2RoundedFilled.tsx b/src/IconExposurePlus2RoundedFilled.tsx new file mode 100644 index 000000000..b04a55ed6 --- /dev/null +++ b/src/IconExposurePlus2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposurePlus2RoundedFilled as default } diff --git a/src/IconExposurePlus2SharpFilled.tsx b/src/IconExposurePlus2SharpFilled.tsx new file mode 100644 index 000000000..d607fa6b1 --- /dev/null +++ b/src/IconExposurePlus2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposurePlus2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposurePlus2SharpFilled as default } diff --git a/src/IconExposureRoundedFilled.tsx b/src/IconExposureRoundedFilled.tsx new file mode 100644 index 000000000..b6ac6b3b6 --- /dev/null +++ b/src/IconExposureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureRoundedFilled as default } diff --git a/src/IconExposureSharpFilled.tsx b/src/IconExposureSharpFilled.tsx new file mode 100644 index 000000000..3763c8968 --- /dev/null +++ b/src/IconExposureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureSharpFilled as default } diff --git a/src/IconExposureZeroOutlinedFilled.tsx b/src/IconExposureZeroOutlinedFilled.tsx new file mode 100644 index 000000000..7dc4ddd2a --- /dev/null +++ b/src/IconExposureZeroOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureZeroOutlinedFilled as default } diff --git a/src/IconExposureZeroRoundedFilled.tsx b/src/IconExposureZeroRoundedFilled.tsx new file mode 100644 index 000000000..d7c3cc76e --- /dev/null +++ b/src/IconExposureZeroRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureZeroRoundedFilled as default } diff --git a/src/IconExposureZeroSharpFilled.tsx b/src/IconExposureZeroSharpFilled.tsx new file mode 100644 index 000000000..b0489c64e --- /dev/null +++ b/src/IconExposureZeroSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExposureZeroSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExposureZeroSharpFilled as default } diff --git a/src/IconExtensionOffOutlinedFilled.tsx b/src/IconExtensionOffOutlinedFilled.tsx new file mode 100644 index 000000000..1d4fc7acd --- /dev/null +++ b/src/IconExtensionOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExtensionOffOutlinedFilled as default } diff --git a/src/IconExtensionOffRoundedFilled.tsx b/src/IconExtensionOffRoundedFilled.tsx new file mode 100644 index 000000000..ebdb79247 --- /dev/null +++ b/src/IconExtensionOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExtensionOffRoundedFilled as default } diff --git a/src/IconExtensionOffSharpFilled.tsx b/src/IconExtensionOffSharpFilled.tsx new file mode 100644 index 000000000..435efa0a7 --- /dev/null +++ b/src/IconExtensionOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExtensionOffSharpFilled as default } diff --git a/src/IconExtensionOutlinedFilled.tsx b/src/IconExtensionOutlinedFilled.tsx new file mode 100644 index 000000000..b7a22b22d --- /dev/null +++ b/src/IconExtensionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExtensionOutlinedFilled as default } diff --git a/src/IconExtensionRoundedFilled.tsx b/src/IconExtensionRoundedFilled.tsx new file mode 100644 index 000000000..cfdd5b355 --- /dev/null +++ b/src/IconExtensionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExtensionRoundedFilled as default } diff --git a/src/IconExtensionSharpFilled.tsx b/src/IconExtensionSharpFilled.tsx new file mode 100644 index 000000000..c0ef40c3e --- /dev/null +++ b/src/IconExtensionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconExtensionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconExtensionSharpFilled as default } diff --git a/src/IconEyeTrackingOutlinedFilled.tsx b/src/IconEyeTrackingOutlinedFilled.tsx new file mode 100644 index 000000000..486c19bb6 --- /dev/null +++ b/src/IconEyeTrackingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEyeTrackingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEyeTrackingOutlinedFilled as default } diff --git a/src/IconEyeTrackingRoundedFilled.tsx b/src/IconEyeTrackingRoundedFilled.tsx new file mode 100644 index 000000000..be4cd580c --- /dev/null +++ b/src/IconEyeTrackingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEyeTrackingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEyeTrackingRoundedFilled as default } diff --git a/src/IconEyeTrackingSharpFilled.tsx b/src/IconEyeTrackingSharpFilled.tsx new file mode 100644 index 000000000..766eeeb00 --- /dev/null +++ b/src/IconEyeTrackingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEyeTrackingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEyeTrackingSharpFilled as default } diff --git a/src/IconEyeglassesOutlinedFilled.tsx b/src/IconEyeglassesOutlinedFilled.tsx new file mode 100644 index 000000000..5dfaa4a1b --- /dev/null +++ b/src/IconEyeglassesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEyeglassesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEyeglassesOutlinedFilled as default } diff --git a/src/IconEyeglassesRoundedFilled.tsx b/src/IconEyeglassesRoundedFilled.tsx new file mode 100644 index 000000000..67f33e1e4 --- /dev/null +++ b/src/IconEyeglassesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEyeglassesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEyeglassesRoundedFilled as default } diff --git a/src/IconEyeglassesSharpFilled.tsx b/src/IconEyeglassesSharpFilled.tsx new file mode 100644 index 000000000..7f5851a1c --- /dev/null +++ b/src/IconEyeglassesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconEyeglassesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconEyeglassesSharpFilled as default } diff --git a/src/IconFace2OutlinedFilled.tsx b/src/IconFace2OutlinedFilled.tsx new file mode 100644 index 000000000..b7a7bed1e --- /dev/null +++ b/src/IconFace2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace2OutlinedFilled as default } diff --git a/src/IconFace2RoundedFilled.tsx b/src/IconFace2RoundedFilled.tsx new file mode 100644 index 000000000..79f5e20e8 --- /dev/null +++ b/src/IconFace2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace2RoundedFilled as default } diff --git a/src/IconFace2SharpFilled.tsx b/src/IconFace2SharpFilled.tsx new file mode 100644 index 000000000..f5b9b7362 --- /dev/null +++ b/src/IconFace2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace2SharpFilled as default } diff --git a/src/IconFace3OutlinedFilled.tsx b/src/IconFace3OutlinedFilled.tsx new file mode 100644 index 000000000..925373279 --- /dev/null +++ b/src/IconFace3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace3OutlinedFilled as default } diff --git a/src/IconFace3RoundedFilled.tsx b/src/IconFace3RoundedFilled.tsx new file mode 100644 index 000000000..a5880d431 --- /dev/null +++ b/src/IconFace3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace3RoundedFilled as default } diff --git a/src/IconFace3SharpFilled.tsx b/src/IconFace3SharpFilled.tsx new file mode 100644 index 000000000..e63cf028f --- /dev/null +++ b/src/IconFace3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace3SharpFilled as default } diff --git a/src/IconFace4OutlinedFilled.tsx b/src/IconFace4OutlinedFilled.tsx new file mode 100644 index 000000000..2d822f2e9 --- /dev/null +++ b/src/IconFace4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace4OutlinedFilled as default } diff --git a/src/IconFace4RoundedFilled.tsx b/src/IconFace4RoundedFilled.tsx new file mode 100644 index 000000000..e72d11ef0 --- /dev/null +++ b/src/IconFace4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace4RoundedFilled as default } diff --git a/src/IconFace4SharpFilled.tsx b/src/IconFace4SharpFilled.tsx new file mode 100644 index 000000000..b6cc34da4 --- /dev/null +++ b/src/IconFace4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace4SharpFilled as default } diff --git a/src/IconFace5OutlinedFilled.tsx b/src/IconFace5OutlinedFilled.tsx new file mode 100644 index 000000000..3db0406f0 --- /dev/null +++ b/src/IconFace5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace5OutlinedFilled as default } diff --git a/src/IconFace5RoundedFilled.tsx b/src/IconFace5RoundedFilled.tsx new file mode 100644 index 000000000..97cb41e21 --- /dev/null +++ b/src/IconFace5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace5RoundedFilled as default } diff --git a/src/IconFace5SharpFilled.tsx b/src/IconFace5SharpFilled.tsx new file mode 100644 index 000000000..a1e547248 --- /dev/null +++ b/src/IconFace5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace5SharpFilled as default } diff --git a/src/IconFace6OutlinedFilled.tsx b/src/IconFace6OutlinedFilled.tsx new file mode 100644 index 000000000..d808184db --- /dev/null +++ b/src/IconFace6OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace6OutlinedFilled as default } diff --git a/src/IconFace6RoundedFilled.tsx b/src/IconFace6RoundedFilled.tsx new file mode 100644 index 000000000..64a7af7cc --- /dev/null +++ b/src/IconFace6RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace6RoundedFilled as default } diff --git a/src/IconFace6SharpFilled.tsx b/src/IconFace6SharpFilled.tsx new file mode 100644 index 000000000..2075040b2 --- /dev/null +++ b/src/IconFace6SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFace6SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFace6SharpFilled as default } diff --git a/src/IconFaceDownOutlinedFilled.tsx b/src/IconFaceDownOutlinedFilled.tsx new file mode 100644 index 000000000..8fb87031b --- /dev/null +++ b/src/IconFaceDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceDownOutlinedFilled as default } diff --git a/src/IconFaceDownRoundedFilled.tsx b/src/IconFaceDownRoundedFilled.tsx new file mode 100644 index 000000000..0be5faf05 --- /dev/null +++ b/src/IconFaceDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceDownRoundedFilled as default } diff --git a/src/IconFaceDownSharpFilled.tsx b/src/IconFaceDownSharpFilled.tsx new file mode 100644 index 000000000..efecbac04 --- /dev/null +++ b/src/IconFaceDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceDownSharpFilled as default } diff --git a/src/IconFaceLeftOutlinedFilled.tsx b/src/IconFaceLeftOutlinedFilled.tsx new file mode 100644 index 000000000..a980f000e --- /dev/null +++ b/src/IconFaceLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceLeftOutlinedFilled as default } diff --git a/src/IconFaceLeftRoundedFilled.tsx b/src/IconFaceLeftRoundedFilled.tsx new file mode 100644 index 000000000..5eb6728d9 --- /dev/null +++ b/src/IconFaceLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceLeftRoundedFilled as default } diff --git a/src/IconFaceLeftSharpFilled.tsx b/src/IconFaceLeftSharpFilled.tsx new file mode 100644 index 000000000..5add3845d --- /dev/null +++ b/src/IconFaceLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceLeftSharpFilled as default } diff --git a/src/IconFaceNodOutlinedFilled.tsx b/src/IconFaceNodOutlinedFilled.tsx new file mode 100644 index 000000000..03b10f5cd --- /dev/null +++ b/src/IconFaceNodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceNodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceNodOutlinedFilled as default } diff --git a/src/IconFaceNodRoundedFilled.tsx b/src/IconFaceNodRoundedFilled.tsx new file mode 100644 index 000000000..854d24459 --- /dev/null +++ b/src/IconFaceNodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceNodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceNodRoundedFilled as default } diff --git a/src/IconFaceNodSharpFilled.tsx b/src/IconFaceNodSharpFilled.tsx new file mode 100644 index 000000000..2c6f72b0b --- /dev/null +++ b/src/IconFaceNodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceNodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceNodSharpFilled as default } diff --git a/src/IconFaceOutlinedFilled.tsx b/src/IconFaceOutlinedFilled.tsx new file mode 100644 index 000000000..4315427d4 --- /dev/null +++ b/src/IconFaceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceOutlinedFilled as default } diff --git a/src/IconFaceRetouchingOffOutlinedFilled.tsx b/src/IconFaceRetouchingOffOutlinedFilled.tsx new file mode 100644 index 000000000..0d8d7271e --- /dev/null +++ b/src/IconFaceRetouchingOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRetouchingOffOutlinedFilled as default } diff --git a/src/IconFaceRetouchingOffRoundedFilled.tsx b/src/IconFaceRetouchingOffRoundedFilled.tsx new file mode 100644 index 000000000..1c5e546f4 --- /dev/null +++ b/src/IconFaceRetouchingOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRetouchingOffRoundedFilled as default } diff --git a/src/IconFaceRetouchingOffSharpFilled.tsx b/src/IconFaceRetouchingOffSharpFilled.tsx new file mode 100644 index 000000000..a28a30e90 --- /dev/null +++ b/src/IconFaceRetouchingOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRetouchingOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRetouchingOffSharpFilled as default } diff --git a/src/IconFaceRightOutlinedFilled.tsx b/src/IconFaceRightOutlinedFilled.tsx new file mode 100644 index 000000000..892ea1f00 --- /dev/null +++ b/src/IconFaceRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRightOutlinedFilled as default } diff --git a/src/IconFaceRightRoundedFilled.tsx b/src/IconFaceRightRoundedFilled.tsx new file mode 100644 index 000000000..bbaeeb2e1 --- /dev/null +++ b/src/IconFaceRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRightRoundedFilled as default } diff --git a/src/IconFaceRightSharpFilled.tsx b/src/IconFaceRightSharpFilled.tsx new file mode 100644 index 000000000..7075a07d7 --- /dev/null +++ b/src/IconFaceRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRightSharpFilled as default } diff --git a/src/IconFaceRoundedFilled.tsx b/src/IconFaceRoundedFilled.tsx new file mode 100644 index 000000000..d57770a8d --- /dev/null +++ b/src/IconFaceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceRoundedFilled as default } diff --git a/src/IconFaceShakeOutlinedFilled.tsx b/src/IconFaceShakeOutlinedFilled.tsx new file mode 100644 index 000000000..94be9b1cb --- /dev/null +++ b/src/IconFaceShakeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceShakeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceShakeOutlinedFilled as default } diff --git a/src/IconFaceShakeRoundedFilled.tsx b/src/IconFaceShakeRoundedFilled.tsx new file mode 100644 index 000000000..20f8e7c9a --- /dev/null +++ b/src/IconFaceShakeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceShakeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceShakeRoundedFilled as default } diff --git a/src/IconFaceShakeSharpFilled.tsx b/src/IconFaceShakeSharpFilled.tsx new file mode 100644 index 000000000..a41db034b --- /dev/null +++ b/src/IconFaceShakeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceShakeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceShakeSharpFilled as default } diff --git a/src/IconFaceSharpFilled.tsx b/src/IconFaceSharpFilled.tsx new file mode 100644 index 000000000..fbd7a3ce3 --- /dev/null +++ b/src/IconFaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceSharpFilled as default } diff --git a/src/IconFaceUpOutlinedFilled.tsx b/src/IconFaceUpOutlinedFilled.tsx new file mode 100644 index 000000000..095f466a3 --- /dev/null +++ b/src/IconFaceUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceUpOutlinedFilled as default } diff --git a/src/IconFaceUpRoundedFilled.tsx b/src/IconFaceUpRoundedFilled.tsx new file mode 100644 index 000000000..d5815bf33 --- /dev/null +++ b/src/IconFaceUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceUpRoundedFilled as default } diff --git a/src/IconFaceUpSharpFilled.tsx b/src/IconFaceUpSharpFilled.tsx new file mode 100644 index 000000000..f3b42f45b --- /dev/null +++ b/src/IconFaceUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaceUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaceUpSharpFilled as default } diff --git a/src/IconFactCheckOutlinedFilled.tsx b/src/IconFactCheckOutlinedFilled.tsx new file mode 100644 index 000000000..412f4f120 --- /dev/null +++ b/src/IconFactCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFactCheckOutlinedFilled as default } diff --git a/src/IconFactCheckRoundedFilled.tsx b/src/IconFactCheckRoundedFilled.tsx new file mode 100644 index 000000000..c7c0bbdf3 --- /dev/null +++ b/src/IconFactCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFactCheckRoundedFilled as default } diff --git a/src/IconFactCheckSharpFilled.tsx b/src/IconFactCheckSharpFilled.tsx new file mode 100644 index 000000000..38187ffc7 --- /dev/null +++ b/src/IconFactCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFactCheckSharpFilled as default } diff --git a/src/IconFactoryOutlinedFilled.tsx b/src/IconFactoryOutlinedFilled.tsx new file mode 100644 index 000000000..307a47965 --- /dev/null +++ b/src/IconFactoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFactoryOutlinedFilled as default } diff --git a/src/IconFactoryRoundedFilled.tsx b/src/IconFactoryRoundedFilled.tsx new file mode 100644 index 000000000..353fb3bd3 --- /dev/null +++ b/src/IconFactoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFactoryRoundedFilled as default } diff --git a/src/IconFactorySharpFilled.tsx b/src/IconFactorySharpFilled.tsx new file mode 100644 index 000000000..06a9f7377 --- /dev/null +++ b/src/IconFactorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFactorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFactorySharpFilled as default } diff --git a/src/IconFallingOutlinedFilled.tsx b/src/IconFallingOutlinedFilled.tsx new file mode 100644 index 000000000..77c10bd11 --- /dev/null +++ b/src/IconFallingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFallingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFallingOutlinedFilled as default } diff --git a/src/IconFallingRoundedFilled.tsx b/src/IconFallingRoundedFilled.tsx new file mode 100644 index 000000000..96cbf968b --- /dev/null +++ b/src/IconFallingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFallingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFallingRoundedFilled as default } diff --git a/src/IconFallingSharpFilled.tsx b/src/IconFallingSharpFilled.tsx new file mode 100644 index 000000000..67cd94693 --- /dev/null +++ b/src/IconFallingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFallingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFallingSharpFilled as default } diff --git a/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx b/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx new file mode 100644 index 000000000..c5d57c4cc --- /dev/null +++ b/src/IconFamiliarFaceAndZoneOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamiliarFaceAndZoneOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFamiliarFaceAndZoneOutlinedFilled as default } diff --git a/src/IconFamiliarFaceAndZoneRoundedFilled.tsx b/src/IconFamiliarFaceAndZoneRoundedFilled.tsx new file mode 100644 index 000000000..41d95e318 --- /dev/null +++ b/src/IconFamiliarFaceAndZoneRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamiliarFaceAndZoneRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFamiliarFaceAndZoneRoundedFilled as default } diff --git a/src/IconFamiliarFaceAndZoneSharpFilled.tsx b/src/IconFamiliarFaceAndZoneSharpFilled.tsx new file mode 100644 index 000000000..17dabc432 --- /dev/null +++ b/src/IconFamiliarFaceAndZoneSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamiliarFaceAndZoneSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFamiliarFaceAndZoneSharpFilled as default } diff --git a/src/IconFamilyHistoryOutlinedFilled.tsx b/src/IconFamilyHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..87e6f19d7 --- /dev/null +++ b/src/IconFamilyHistoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyHistoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyHistoryOutlinedFilled as default } diff --git a/src/IconFamilyHistoryRoundedFilled.tsx b/src/IconFamilyHistoryRoundedFilled.tsx new file mode 100644 index 000000000..13a53413e --- /dev/null +++ b/src/IconFamilyHistoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyHistoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyHistoryRoundedFilled as default } diff --git a/src/IconFamilyHistorySharpFilled.tsx b/src/IconFamilyHistorySharpFilled.tsx new file mode 100644 index 000000000..98fc88989 --- /dev/null +++ b/src/IconFamilyHistorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyHistorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyHistorySharpFilled as default } diff --git a/src/IconFamilyHomeOutlinedFilled.tsx b/src/IconFamilyHomeOutlinedFilled.tsx new file mode 100644 index 000000000..6d4ecca12 --- /dev/null +++ b/src/IconFamilyHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyHomeOutlinedFilled as default } diff --git a/src/IconFamilyHomeRoundedFilled.tsx b/src/IconFamilyHomeRoundedFilled.tsx new file mode 100644 index 000000000..30b6ffbe1 --- /dev/null +++ b/src/IconFamilyHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyHomeRoundedFilled as default } diff --git a/src/IconFamilyHomeSharpFilled.tsx b/src/IconFamilyHomeSharpFilled.tsx new file mode 100644 index 000000000..cac6df489 --- /dev/null +++ b/src/IconFamilyHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyHomeSharpFilled as default } diff --git a/src/IconFamilyLinkOutlinedFilled.tsx b/src/IconFamilyLinkOutlinedFilled.tsx new file mode 100644 index 000000000..b970f4ad8 --- /dev/null +++ b/src/IconFamilyLinkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyLinkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyLinkOutlinedFilled as default } diff --git a/src/IconFamilyLinkRoundedFilled.tsx b/src/IconFamilyLinkRoundedFilled.tsx new file mode 100644 index 000000000..e927e7716 --- /dev/null +++ b/src/IconFamilyLinkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyLinkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyLinkRoundedFilled as default } diff --git a/src/IconFamilyLinkSharpFilled.tsx b/src/IconFamilyLinkSharpFilled.tsx new file mode 100644 index 000000000..cfc9e8483 --- /dev/null +++ b/src/IconFamilyLinkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyLinkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyLinkSharpFilled as default } diff --git a/src/IconFamilyRestroomOutlinedFilled.tsx b/src/IconFamilyRestroomOutlinedFilled.tsx new file mode 100644 index 000000000..e2767706b --- /dev/null +++ b/src/IconFamilyRestroomOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyRestroomOutlinedFilled as default } diff --git a/src/IconFamilyRestroomRoundedFilled.tsx b/src/IconFamilyRestroomRoundedFilled.tsx new file mode 100644 index 000000000..0ab53fb64 --- /dev/null +++ b/src/IconFamilyRestroomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyRestroomRoundedFilled as default } diff --git a/src/IconFamilyRestroomSharpFilled.tsx b/src/IconFamilyRestroomSharpFilled.tsx new file mode 100644 index 000000000..d3957cdb7 --- /dev/null +++ b/src/IconFamilyRestroomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyRestroomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyRestroomSharpFilled as default } diff --git a/src/IconFamilyStarOutlinedFilled.tsx b/src/IconFamilyStarOutlinedFilled.tsx new file mode 100644 index 000000000..928798415 --- /dev/null +++ b/src/IconFamilyStarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyStarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyStarOutlinedFilled as default } diff --git a/src/IconFamilyStarRoundedFilled.tsx b/src/IconFamilyStarRoundedFilled.tsx new file mode 100644 index 000000000..7ea3f6222 --- /dev/null +++ b/src/IconFamilyStarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyStarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyStarRoundedFilled as default } diff --git a/src/IconFamilyStarSharpFilled.tsx b/src/IconFamilyStarSharpFilled.tsx new file mode 100644 index 000000000..d2aac5f97 --- /dev/null +++ b/src/IconFamilyStarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFamilyStarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFamilyStarSharpFilled as default } diff --git a/src/IconFarsightDigitalOutlinedFilled.tsx b/src/IconFarsightDigitalOutlinedFilled.tsx new file mode 100644 index 000000000..39f7f1d06 --- /dev/null +++ b/src/IconFarsightDigitalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFarsightDigitalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFarsightDigitalOutlinedFilled as default } diff --git a/src/IconFarsightDigitalRoundedFilled.tsx b/src/IconFarsightDigitalRoundedFilled.tsx new file mode 100644 index 000000000..6872b0c6b --- /dev/null +++ b/src/IconFarsightDigitalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFarsightDigitalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFarsightDigitalRoundedFilled as default } diff --git a/src/IconFarsightDigitalSharpFilled.tsx b/src/IconFarsightDigitalSharpFilled.tsx new file mode 100644 index 000000000..6235acf80 --- /dev/null +++ b/src/IconFarsightDigitalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFarsightDigitalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFarsightDigitalSharpFilled as default } diff --git a/src/IconFastForwardOutlinedFilled.tsx b/src/IconFastForwardOutlinedFilled.tsx new file mode 100644 index 000000000..794b45756 --- /dev/null +++ b/src/IconFastForwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastForwardOutlinedFilled as default } diff --git a/src/IconFastForwardRoundedFilled.tsx b/src/IconFastForwardRoundedFilled.tsx new file mode 100644 index 000000000..1d86c3d79 --- /dev/null +++ b/src/IconFastForwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastForwardRoundedFilled as default } diff --git a/src/IconFastForwardSharpFilled.tsx b/src/IconFastForwardSharpFilled.tsx new file mode 100644 index 000000000..74f5a6468 --- /dev/null +++ b/src/IconFastForwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastForwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastForwardSharpFilled as default } diff --git a/src/IconFastRewindOutlinedFilled.tsx b/src/IconFastRewindOutlinedFilled.tsx new file mode 100644 index 000000000..c5a0e0d05 --- /dev/null +++ b/src/IconFastRewindOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastRewindOutlinedFilled as default } diff --git a/src/IconFastRewindRoundedFilled.tsx b/src/IconFastRewindRoundedFilled.tsx new file mode 100644 index 000000000..5bf3b138b --- /dev/null +++ b/src/IconFastRewindRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastRewindRoundedFilled as default } diff --git a/src/IconFastRewindSharpFilled.tsx b/src/IconFastRewindSharpFilled.tsx new file mode 100644 index 000000000..f28b0bc66 --- /dev/null +++ b/src/IconFastRewindSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastRewindSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastRewindSharpFilled as default } diff --git a/src/IconFastfoodOutlinedFilled.tsx b/src/IconFastfoodOutlinedFilled.tsx new file mode 100644 index 000000000..ef86ecf8b --- /dev/null +++ b/src/IconFastfoodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastfoodOutlinedFilled as default } diff --git a/src/IconFastfoodRoundedFilled.tsx b/src/IconFastfoodRoundedFilled.tsx new file mode 100644 index 000000000..43c468976 --- /dev/null +++ b/src/IconFastfoodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastfoodRoundedFilled as default } diff --git a/src/IconFastfoodSharpFilled.tsx b/src/IconFastfoodSharpFilled.tsx new file mode 100644 index 000000000..633a4559d --- /dev/null +++ b/src/IconFastfoodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFastfoodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFastfoodSharpFilled as default } diff --git a/src/IconFaucetOutlinedFilled.tsx b/src/IconFaucetOutlinedFilled.tsx new file mode 100644 index 000000000..ca071e7df --- /dev/null +++ b/src/IconFaucetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaucetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaucetOutlinedFilled as default } diff --git a/src/IconFaucetRoundedFilled.tsx b/src/IconFaucetRoundedFilled.tsx new file mode 100644 index 000000000..29b14d92e --- /dev/null +++ b/src/IconFaucetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaucetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaucetRoundedFilled as default } diff --git a/src/IconFaucetSharpFilled.tsx b/src/IconFaucetSharpFilled.tsx new file mode 100644 index 000000000..2d7714a3e --- /dev/null +++ b/src/IconFaucetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaucetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaucetSharpFilled as default } diff --git a/src/IconFavoriteOutlinedFilled.tsx b/src/IconFavoriteOutlinedFilled.tsx new file mode 100644 index 000000000..eb5bd9900 --- /dev/null +++ b/src/IconFavoriteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFavoriteOutlinedFilled as default } diff --git a/src/IconFavoriteRoundedFilled.tsx b/src/IconFavoriteRoundedFilled.tsx new file mode 100644 index 000000000..d28bb59a6 --- /dev/null +++ b/src/IconFavoriteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFavoriteRoundedFilled as default } diff --git a/src/IconFavoriteSharpFilled.tsx b/src/IconFavoriteSharpFilled.tsx new file mode 100644 index 000000000..588bc47b4 --- /dev/null +++ b/src/IconFavoriteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFavoriteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFavoriteSharpFilled as default } diff --git a/src/IconFaxOutlinedFilled.tsx b/src/IconFaxOutlinedFilled.tsx new file mode 100644 index 000000000..90a259441 --- /dev/null +++ b/src/IconFaxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaxOutlinedFilled as default } diff --git a/src/IconFaxRoundedFilled.tsx b/src/IconFaxRoundedFilled.tsx new file mode 100644 index 000000000..8b4aff9c6 --- /dev/null +++ b/src/IconFaxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaxRoundedFilled as default } diff --git a/src/IconFaxSharpFilled.tsx b/src/IconFaxSharpFilled.tsx new file mode 100644 index 000000000..59988382f --- /dev/null +++ b/src/IconFaxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFaxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFaxSharpFilled as default } diff --git a/src/IconFeatureSearchOutlinedFilled.tsx b/src/IconFeatureSearchOutlinedFilled.tsx new file mode 100644 index 000000000..4362d4a94 --- /dev/null +++ b/src/IconFeatureSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeatureSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeatureSearchOutlinedFilled as default } diff --git a/src/IconFeatureSearchRoundedFilled.tsx b/src/IconFeatureSearchRoundedFilled.tsx new file mode 100644 index 000000000..0d0c25f76 --- /dev/null +++ b/src/IconFeatureSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeatureSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeatureSearchRoundedFilled as default } diff --git a/src/IconFeatureSearchSharpFilled.tsx b/src/IconFeatureSearchSharpFilled.tsx new file mode 100644 index 000000000..4146d0b73 --- /dev/null +++ b/src/IconFeatureSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeatureSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeatureSearchSharpFilled as default } diff --git a/src/IconFeaturedPlayListOutlinedFilled.tsx b/src/IconFeaturedPlayListOutlinedFilled.tsx new file mode 100644 index 000000000..3a9d78a0f --- /dev/null +++ b/src/IconFeaturedPlayListOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedPlayListOutlinedFilled as default } diff --git a/src/IconFeaturedPlayListRoundedFilled.tsx b/src/IconFeaturedPlayListRoundedFilled.tsx new file mode 100644 index 000000000..cb5058937 --- /dev/null +++ b/src/IconFeaturedPlayListRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedPlayListRoundedFilled as default } diff --git a/src/IconFeaturedPlayListSharpFilled.tsx b/src/IconFeaturedPlayListSharpFilled.tsx new file mode 100644 index 000000000..ecd9f6a70 --- /dev/null +++ b/src/IconFeaturedPlayListSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedPlayListSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedPlayListSharpFilled as default } diff --git a/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx b/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx new file mode 100644 index 000000000..69265803d --- /dev/null +++ b/src/IconFeaturedSeasonalAndGiftsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedSeasonalAndGiftsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedSeasonalAndGiftsOutlinedFilled as default } diff --git a/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx b/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx new file mode 100644 index 000000000..6b08e970e --- /dev/null +++ b/src/IconFeaturedSeasonalAndGiftsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedSeasonalAndGiftsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedSeasonalAndGiftsRoundedFilled as default } diff --git a/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx b/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx new file mode 100644 index 000000000..dbd218a62 --- /dev/null +++ b/src/IconFeaturedSeasonalAndGiftsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedSeasonalAndGiftsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedSeasonalAndGiftsSharpFilled as default } diff --git a/src/IconFeaturedVideoOutlinedFilled.tsx b/src/IconFeaturedVideoOutlinedFilled.tsx new file mode 100644 index 000000000..6558163cd --- /dev/null +++ b/src/IconFeaturedVideoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedVideoOutlinedFilled as default } diff --git a/src/IconFeaturedVideoRoundedFilled.tsx b/src/IconFeaturedVideoRoundedFilled.tsx new file mode 100644 index 000000000..2c2f96edb --- /dev/null +++ b/src/IconFeaturedVideoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedVideoRoundedFilled as default } diff --git a/src/IconFeaturedVideoSharpFilled.tsx b/src/IconFeaturedVideoSharpFilled.tsx new file mode 100644 index 000000000..09c6f3591 --- /dev/null +++ b/src/IconFeaturedVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeaturedVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeaturedVideoSharpFilled as default } diff --git a/src/IconFeedbackOutlinedFilled.tsx b/src/IconFeedbackOutlinedFilled.tsx new file mode 100644 index 000000000..e1ce72867 --- /dev/null +++ b/src/IconFeedbackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeedbackOutlinedFilled as default } diff --git a/src/IconFeedbackRoundedFilled.tsx b/src/IconFeedbackRoundedFilled.tsx new file mode 100644 index 000000000..e296d2f6f --- /dev/null +++ b/src/IconFeedbackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeedbackRoundedFilled as default } diff --git a/src/IconFeedbackSharpFilled.tsx b/src/IconFeedbackSharpFilled.tsx new file mode 100644 index 000000000..8fd6d4789 --- /dev/null +++ b/src/IconFeedbackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFeedbackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFeedbackSharpFilled as default } diff --git a/src/IconFemaleOutlinedFilled.tsx b/src/IconFemaleOutlinedFilled.tsx new file mode 100644 index 000000000..07a18087c --- /dev/null +++ b/src/IconFemaleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemaleOutlinedFilled as default } diff --git a/src/IconFemaleRoundedFilled.tsx b/src/IconFemaleRoundedFilled.tsx new file mode 100644 index 000000000..da38df8f6 --- /dev/null +++ b/src/IconFemaleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemaleRoundedFilled as default } diff --git a/src/IconFemaleSharpFilled.tsx b/src/IconFemaleSharpFilled.tsx new file mode 100644 index 000000000..8ff37d269 --- /dev/null +++ b/src/IconFemaleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemaleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemaleSharpFilled as default } diff --git a/src/IconFemurAltOutlinedFilled.tsx b/src/IconFemurAltOutlinedFilled.tsx new file mode 100644 index 000000000..d83bf73a4 --- /dev/null +++ b/src/IconFemurAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemurAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemurAltOutlinedFilled as default } diff --git a/src/IconFemurAltRoundedFilled.tsx b/src/IconFemurAltRoundedFilled.tsx new file mode 100644 index 000000000..c0ce92492 --- /dev/null +++ b/src/IconFemurAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemurAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemurAltRoundedFilled as default } diff --git a/src/IconFemurAltSharpFilled.tsx b/src/IconFemurAltSharpFilled.tsx new file mode 100644 index 000000000..301cc4043 --- /dev/null +++ b/src/IconFemurAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemurAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemurAltSharpFilled as default } diff --git a/src/IconFemurOutlinedFilled.tsx b/src/IconFemurOutlinedFilled.tsx new file mode 100644 index 000000000..da3cb1ad3 --- /dev/null +++ b/src/IconFemurOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemurOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemurOutlinedFilled as default } diff --git a/src/IconFemurRoundedFilled.tsx b/src/IconFemurRoundedFilled.tsx new file mode 100644 index 000000000..b7d2accc8 --- /dev/null +++ b/src/IconFemurRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemurRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemurRoundedFilled as default } diff --git a/src/IconFemurSharpFilled.tsx b/src/IconFemurSharpFilled.tsx new file mode 100644 index 000000000..831ec0a9e --- /dev/null +++ b/src/IconFemurSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFemurSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFemurSharpFilled as default } diff --git a/src/IconFenceOutlinedFilled.tsx b/src/IconFenceOutlinedFilled.tsx new file mode 100644 index 000000000..ebc2958bb --- /dev/null +++ b/src/IconFenceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFenceOutlinedFilled as default } diff --git a/src/IconFenceRoundedFilled.tsx b/src/IconFenceRoundedFilled.tsx new file mode 100644 index 000000000..67ea6eba8 --- /dev/null +++ b/src/IconFenceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFenceRoundedFilled as default } diff --git a/src/IconFenceSharpFilled.tsx b/src/IconFenceSharpFilled.tsx new file mode 100644 index 000000000..b45b650f1 --- /dev/null +++ b/src/IconFenceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFenceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFenceSharpFilled as default } diff --git a/src/IconFertileOutlinedFilled.tsx b/src/IconFertileOutlinedFilled.tsx new file mode 100644 index 000000000..cf3a8be0a --- /dev/null +++ b/src/IconFertileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFertileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFertileOutlinedFilled as default } diff --git a/src/IconFertileRoundedFilled.tsx b/src/IconFertileRoundedFilled.tsx new file mode 100644 index 000000000..06adc05bd --- /dev/null +++ b/src/IconFertileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFertileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFertileRoundedFilled as default } diff --git a/src/IconFertileSharpFilled.tsx b/src/IconFertileSharpFilled.tsx new file mode 100644 index 000000000..2f74fad3a --- /dev/null +++ b/src/IconFertileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFertileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFertileSharpFilled as default } diff --git a/src/IconFestivalOutlinedFilled.tsx b/src/IconFestivalOutlinedFilled.tsx new file mode 100644 index 000000000..d41e6d581 --- /dev/null +++ b/src/IconFestivalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFestivalOutlinedFilled as default } diff --git a/src/IconFestivalRoundedFilled.tsx b/src/IconFestivalRoundedFilled.tsx new file mode 100644 index 000000000..3f740b218 --- /dev/null +++ b/src/IconFestivalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFestivalRoundedFilled as default } diff --git a/src/IconFestivalSharpFilled.tsx b/src/IconFestivalSharpFilled.tsx new file mode 100644 index 000000000..b4b60b189 --- /dev/null +++ b/src/IconFestivalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFestivalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFestivalSharpFilled as default } diff --git a/src/IconFiberDvrOutlinedFilled.tsx b/src/IconFiberDvrOutlinedFilled.tsx new file mode 100644 index 000000000..77ba803c1 --- /dev/null +++ b/src/IconFiberDvrOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberDvrOutlinedFilled as default } diff --git a/src/IconFiberDvrRoundedFilled.tsx b/src/IconFiberDvrRoundedFilled.tsx new file mode 100644 index 000000000..1d8b870ab --- /dev/null +++ b/src/IconFiberDvrRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberDvrRoundedFilled as default } diff --git a/src/IconFiberDvrSharpFilled.tsx b/src/IconFiberDvrSharpFilled.tsx new file mode 100644 index 000000000..6d70c926a --- /dev/null +++ b/src/IconFiberDvrSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberDvrSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberDvrSharpFilled as default } diff --git a/src/IconFiberManualRecordOutlinedFilled.tsx b/src/IconFiberManualRecordOutlinedFilled.tsx new file mode 100644 index 000000000..8a4fe25f9 --- /dev/null +++ b/src/IconFiberManualRecordOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberManualRecordOutlinedFilled as default } diff --git a/src/IconFiberManualRecordRoundedFilled.tsx b/src/IconFiberManualRecordRoundedFilled.tsx new file mode 100644 index 000000000..ae86a9c52 --- /dev/null +++ b/src/IconFiberManualRecordRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberManualRecordRoundedFilled as default } diff --git a/src/IconFiberManualRecordSharpFilled.tsx b/src/IconFiberManualRecordSharpFilled.tsx new file mode 100644 index 000000000..1492f06cd --- /dev/null +++ b/src/IconFiberManualRecordSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberManualRecordSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberManualRecordSharpFilled as default } diff --git a/src/IconFiberNewOutlinedFilled.tsx b/src/IconFiberNewOutlinedFilled.tsx new file mode 100644 index 000000000..b3eeae441 --- /dev/null +++ b/src/IconFiberNewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberNewOutlinedFilled as default } diff --git a/src/IconFiberNewRoundedFilled.tsx b/src/IconFiberNewRoundedFilled.tsx new file mode 100644 index 000000000..4d49c3c45 --- /dev/null +++ b/src/IconFiberNewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberNewRoundedFilled as default } diff --git a/src/IconFiberNewSharpFilled.tsx b/src/IconFiberNewSharpFilled.tsx new file mode 100644 index 000000000..30cb47449 --- /dev/null +++ b/src/IconFiberNewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberNewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberNewSharpFilled as default } diff --git a/src/IconFiberPinOutlinedFilled.tsx b/src/IconFiberPinOutlinedFilled.tsx new file mode 100644 index 000000000..d422595de --- /dev/null +++ b/src/IconFiberPinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberPinOutlinedFilled as default } diff --git a/src/IconFiberPinRoundedFilled.tsx b/src/IconFiberPinRoundedFilled.tsx new file mode 100644 index 000000000..b03c24742 --- /dev/null +++ b/src/IconFiberPinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberPinRoundedFilled as default } diff --git a/src/IconFiberPinSharpFilled.tsx b/src/IconFiberPinSharpFilled.tsx new file mode 100644 index 000000000..942fc6cdc --- /dev/null +++ b/src/IconFiberPinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberPinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberPinSharpFilled as default } diff --git a/src/IconFiberSmartRecordOutlinedFilled.tsx b/src/IconFiberSmartRecordOutlinedFilled.tsx new file mode 100644 index 000000000..811019783 --- /dev/null +++ b/src/IconFiberSmartRecordOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberSmartRecordOutlinedFilled as default } diff --git a/src/IconFiberSmartRecordRoundedFilled.tsx b/src/IconFiberSmartRecordRoundedFilled.tsx new file mode 100644 index 000000000..55bd96adf --- /dev/null +++ b/src/IconFiberSmartRecordRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberSmartRecordRoundedFilled as default } diff --git a/src/IconFiberSmartRecordSharpFilled.tsx b/src/IconFiberSmartRecordSharpFilled.tsx new file mode 100644 index 000000000..2bec92d80 --- /dev/null +++ b/src/IconFiberSmartRecordSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFiberSmartRecordSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFiberSmartRecordSharpFilled as default } diff --git a/src/IconFileCopyOffOutlinedFilled.tsx b/src/IconFileCopyOffOutlinedFilled.tsx new file mode 100644 index 000000000..015ef523e --- /dev/null +++ b/src/IconFileCopyOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileCopyOffOutlinedFilled as default } diff --git a/src/IconFileCopyOffRoundedFilled.tsx b/src/IconFileCopyOffRoundedFilled.tsx new file mode 100644 index 000000000..ed1380220 --- /dev/null +++ b/src/IconFileCopyOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileCopyOffRoundedFilled as default } diff --git a/src/IconFileCopyOffSharpFilled.tsx b/src/IconFileCopyOffSharpFilled.tsx new file mode 100644 index 000000000..61c3d1ecc --- /dev/null +++ b/src/IconFileCopyOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileCopyOffSharpFilled as default } diff --git a/src/IconFileCopyOutlinedFilled.tsx b/src/IconFileCopyOutlinedFilled.tsx new file mode 100644 index 000000000..f40bb38ea --- /dev/null +++ b/src/IconFileCopyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileCopyOutlinedFilled as default } diff --git a/src/IconFileCopyRoundedFilled.tsx b/src/IconFileCopyRoundedFilled.tsx new file mode 100644 index 000000000..1a4a2f149 --- /dev/null +++ b/src/IconFileCopyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileCopyRoundedFilled as default } diff --git a/src/IconFileCopySharpFilled.tsx b/src/IconFileCopySharpFilled.tsx new file mode 100644 index 000000000..9ce2eb78d --- /dev/null +++ b/src/IconFileCopySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileCopySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileCopySharpFilled as default } diff --git a/src/IconFileDownloadOffOutlinedFilled.tsx b/src/IconFileDownloadOffOutlinedFilled.tsx new file mode 100644 index 000000000..7eab03fa8 --- /dev/null +++ b/src/IconFileDownloadOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFileDownloadOffOutlinedFilled as default } diff --git a/src/IconFileDownloadOffRoundedFilled.tsx b/src/IconFileDownloadOffRoundedFilled.tsx new file mode 100644 index 000000000..76d3518e9 --- /dev/null +++ b/src/IconFileDownloadOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFileDownloadOffRoundedFilled as default } diff --git a/src/IconFileDownloadOffSharpFilled.tsx b/src/IconFileDownloadOffSharpFilled.tsx new file mode 100644 index 000000000..26dd3160c --- /dev/null +++ b/src/IconFileDownloadOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileDownloadOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileDownloadOffSharpFilled as default } diff --git a/src/IconFileMapOutlinedFilled.tsx b/src/IconFileMapOutlinedFilled.tsx new file mode 100644 index 000000000..7132ec20c --- /dev/null +++ b/src/IconFileMapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileMapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileMapOutlinedFilled as default } diff --git a/src/IconFileMapRoundedFilled.tsx b/src/IconFileMapRoundedFilled.tsx new file mode 100644 index 000000000..de5a4cbb5 --- /dev/null +++ b/src/IconFileMapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileMapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileMapRoundedFilled as default } diff --git a/src/IconFileMapSharpFilled.tsx b/src/IconFileMapSharpFilled.tsx new file mode 100644 index 000000000..d4ded704c --- /dev/null +++ b/src/IconFileMapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileMapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileMapSharpFilled as default } diff --git a/src/IconFileOpenOutlinedFilled.tsx b/src/IconFileOpenOutlinedFilled.tsx new file mode 100644 index 000000000..6bbe96d08 --- /dev/null +++ b/src/IconFileOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileOpenOutlinedFilled as default } diff --git a/src/IconFileOpenRoundedFilled.tsx b/src/IconFileOpenRoundedFilled.tsx new file mode 100644 index 000000000..99bff4bcc --- /dev/null +++ b/src/IconFileOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileOpenRoundedFilled as default } diff --git a/src/IconFileOpenSharpFilled.tsx b/src/IconFileOpenSharpFilled.tsx new file mode 100644 index 000000000..03c02cb1d --- /dev/null +++ b/src/IconFileOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileOpenSharpFilled as default } diff --git a/src/IconFilePresentOutlinedFilled.tsx b/src/IconFilePresentOutlinedFilled.tsx new file mode 100644 index 000000000..dc62d7c6d --- /dev/null +++ b/src/IconFilePresentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilePresentOutlinedFilled as default } diff --git a/src/IconFilePresentRoundedFilled.tsx b/src/IconFilePresentRoundedFilled.tsx new file mode 100644 index 000000000..c500481c2 --- /dev/null +++ b/src/IconFilePresentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilePresentRoundedFilled as default } diff --git a/src/IconFilePresentSharpFilled.tsx b/src/IconFilePresentSharpFilled.tsx new file mode 100644 index 000000000..c7e3878b3 --- /dev/null +++ b/src/IconFilePresentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilePresentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilePresentSharpFilled as default } diff --git a/src/IconFileSaveOffOutlinedFilled.tsx b/src/IconFileSaveOffOutlinedFilled.tsx new file mode 100644 index 000000000..50b5dd0b5 --- /dev/null +++ b/src/IconFileSaveOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileSaveOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileSaveOffOutlinedFilled as default } diff --git a/src/IconFileSaveOffRoundedFilled.tsx b/src/IconFileSaveOffRoundedFilled.tsx new file mode 100644 index 000000000..24c80fcec --- /dev/null +++ b/src/IconFileSaveOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileSaveOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileSaveOffRoundedFilled as default } diff --git a/src/IconFileSaveOffSharpFilled.tsx b/src/IconFileSaveOffSharpFilled.tsx new file mode 100644 index 000000000..373c71846 --- /dev/null +++ b/src/IconFileSaveOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileSaveOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileSaveOffSharpFilled as default } diff --git a/src/IconFileSaveOutlinedFilled.tsx b/src/IconFileSaveOutlinedFilled.tsx new file mode 100644 index 000000000..b0b9d8076 --- /dev/null +++ b/src/IconFileSaveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileSaveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileSaveOutlinedFilled as default } diff --git a/src/IconFileSaveRoundedFilled.tsx b/src/IconFileSaveRoundedFilled.tsx new file mode 100644 index 000000000..bc407b9f0 --- /dev/null +++ b/src/IconFileSaveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileSaveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileSaveRoundedFilled as default } diff --git a/src/IconFileSaveSharpFilled.tsx b/src/IconFileSaveSharpFilled.tsx new file mode 100644 index 000000000..db23bf397 --- /dev/null +++ b/src/IconFileSaveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileSaveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileSaveSharpFilled as default } diff --git a/src/IconFileUploadOffOutlinedFilled.tsx b/src/IconFileUploadOffOutlinedFilled.tsx new file mode 100644 index 000000000..d9874a386 --- /dev/null +++ b/src/IconFileUploadOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileUploadOffOutlinedFilled as default } diff --git a/src/IconFileUploadOffRoundedFilled.tsx b/src/IconFileUploadOffRoundedFilled.tsx new file mode 100644 index 000000000..7e141ad20 --- /dev/null +++ b/src/IconFileUploadOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileUploadOffRoundedFilled as default } diff --git a/src/IconFileUploadOffSharpFilled.tsx b/src/IconFileUploadOffSharpFilled.tsx new file mode 100644 index 000000000..e7f62cd59 --- /dev/null +++ b/src/IconFileUploadOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFileUploadOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFileUploadOffSharpFilled as default } diff --git a/src/IconFilter1OutlinedFilled.tsx b/src/IconFilter1OutlinedFilled.tsx new file mode 100644 index 000000000..b671da257 --- /dev/null +++ b/src/IconFilter1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter1OutlinedFilled as default } diff --git a/src/IconFilter1RoundedFilled.tsx b/src/IconFilter1RoundedFilled.tsx new file mode 100644 index 000000000..3d02701ab --- /dev/null +++ b/src/IconFilter1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter1RoundedFilled as default } diff --git a/src/IconFilter1SharpFilled.tsx b/src/IconFilter1SharpFilled.tsx new file mode 100644 index 000000000..067921aaf --- /dev/null +++ b/src/IconFilter1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter1SharpFilled as default } diff --git a/src/IconFilter2OutlinedFilled.tsx b/src/IconFilter2OutlinedFilled.tsx new file mode 100644 index 000000000..a058049b2 --- /dev/null +++ b/src/IconFilter2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter2OutlinedFilled as default } diff --git a/src/IconFilter2RoundedFilled.tsx b/src/IconFilter2RoundedFilled.tsx new file mode 100644 index 000000000..b108d4fef --- /dev/null +++ b/src/IconFilter2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter2RoundedFilled as default } diff --git a/src/IconFilter2SharpFilled.tsx b/src/IconFilter2SharpFilled.tsx new file mode 100644 index 000000000..b4207949d --- /dev/null +++ b/src/IconFilter2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter2SharpFilled as default } diff --git a/src/IconFilter3OutlinedFilled.tsx b/src/IconFilter3OutlinedFilled.tsx new file mode 100644 index 000000000..95c78da0a --- /dev/null +++ b/src/IconFilter3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter3OutlinedFilled as default } diff --git a/src/IconFilter3RoundedFilled.tsx b/src/IconFilter3RoundedFilled.tsx new file mode 100644 index 000000000..4c2aee9a4 --- /dev/null +++ b/src/IconFilter3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter3RoundedFilled as default } diff --git a/src/IconFilter3SharpFilled.tsx b/src/IconFilter3SharpFilled.tsx new file mode 100644 index 000000000..115f6576d --- /dev/null +++ b/src/IconFilter3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter3SharpFilled as default } diff --git a/src/IconFilter4OutlinedFilled.tsx b/src/IconFilter4OutlinedFilled.tsx new file mode 100644 index 000000000..1c7e80943 --- /dev/null +++ b/src/IconFilter4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter4OutlinedFilled as default } diff --git a/src/IconFilter4RoundedFilled.tsx b/src/IconFilter4RoundedFilled.tsx new file mode 100644 index 000000000..31e4fb676 --- /dev/null +++ b/src/IconFilter4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter4RoundedFilled as default } diff --git a/src/IconFilter4Sharp.tsx b/src/IconFilter4Sharp.tsx deleted file mode 100644 index bf0cb4aed..000000000 --- a/src/IconFilter4Sharp.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' - -const IconFilter4Sharp: React.FC = ({ ...props }) => ( - - {props.title && {props.title}} - - -) - -export { IconFilter4Sharp as default } diff --git a/src/IconFilter4SharpFilled.tsx b/src/IconFilter4SharpFilled.tsx new file mode 100644 index 000000000..ce45d1509 --- /dev/null +++ b/src/IconFilter4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter4SharpFilled as default } diff --git a/src/IconFilter5OutlinedFilled.tsx b/src/IconFilter5OutlinedFilled.tsx new file mode 100644 index 000000000..97c6d52d9 --- /dev/null +++ b/src/IconFilter5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter5OutlinedFilled as default } diff --git a/src/IconFilter5RoundedFilled.tsx b/src/IconFilter5RoundedFilled.tsx new file mode 100644 index 000000000..f519009cf --- /dev/null +++ b/src/IconFilter5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter5RoundedFilled as default } diff --git a/src/IconFilter5SharpFilled.tsx b/src/IconFilter5SharpFilled.tsx new file mode 100644 index 000000000..ddc6d316e --- /dev/null +++ b/src/IconFilter5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter5SharpFilled as default } diff --git a/src/IconFilter6OutlinedFilled.tsx b/src/IconFilter6OutlinedFilled.tsx new file mode 100644 index 000000000..622192c2c --- /dev/null +++ b/src/IconFilter6OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter6OutlinedFilled as default } diff --git a/src/IconFilter6RoundedFilled.tsx b/src/IconFilter6RoundedFilled.tsx new file mode 100644 index 000000000..6d72e2ef8 --- /dev/null +++ b/src/IconFilter6RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter6RoundedFilled as default } diff --git a/src/IconFilter6SharpFilled.tsx b/src/IconFilter6SharpFilled.tsx new file mode 100644 index 000000000..059819eea --- /dev/null +++ b/src/IconFilter6SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter6SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter6SharpFilled as default } diff --git a/src/IconFilter7OutlinedFilled.tsx b/src/IconFilter7OutlinedFilled.tsx new file mode 100644 index 000000000..e28aec29e --- /dev/null +++ b/src/IconFilter7OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter7OutlinedFilled as default } diff --git a/src/IconFilter7RoundedFilled.tsx b/src/IconFilter7RoundedFilled.tsx new file mode 100644 index 000000000..795249856 --- /dev/null +++ b/src/IconFilter7RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter7RoundedFilled as default } diff --git a/src/IconFilter7SharpFilled.tsx b/src/IconFilter7SharpFilled.tsx new file mode 100644 index 000000000..f1f2f7649 --- /dev/null +++ b/src/IconFilter7SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter7SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter7SharpFilled as default } diff --git a/src/IconFilter8OutlinedFilled.tsx b/src/IconFilter8OutlinedFilled.tsx new file mode 100644 index 000000000..6806d7708 --- /dev/null +++ b/src/IconFilter8OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter8OutlinedFilled as default } diff --git a/src/IconFilter8RoundedFilled.tsx b/src/IconFilter8RoundedFilled.tsx new file mode 100644 index 000000000..2c686e12b --- /dev/null +++ b/src/IconFilter8RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter8RoundedFilled as default } diff --git a/src/IconFilter8SharpFilled.tsx b/src/IconFilter8SharpFilled.tsx new file mode 100644 index 000000000..e69ba12eb --- /dev/null +++ b/src/IconFilter8SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter8SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter8SharpFilled as default } diff --git a/src/IconFilter9OutlinedFilled.tsx b/src/IconFilter9OutlinedFilled.tsx new file mode 100644 index 000000000..ea57315b6 --- /dev/null +++ b/src/IconFilter9OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter9OutlinedFilled as default } diff --git a/src/IconFilter9PlusOutlinedFilled.tsx b/src/IconFilter9PlusOutlinedFilled.tsx new file mode 100644 index 000000000..2366eb01e --- /dev/null +++ b/src/IconFilter9PlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter9PlusOutlinedFilled as default } diff --git a/src/IconFilter9PlusRoundedFilled.tsx b/src/IconFilter9PlusRoundedFilled.tsx new file mode 100644 index 000000000..ed1dc8688 --- /dev/null +++ b/src/IconFilter9PlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter9PlusRoundedFilled as default } diff --git a/src/IconFilter9PlusSharpFilled.tsx b/src/IconFilter9PlusSharpFilled.tsx new file mode 100644 index 000000000..3ae5eada8 --- /dev/null +++ b/src/IconFilter9PlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9PlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter9PlusSharpFilled as default } diff --git a/src/IconFilter9RoundedFilled.tsx b/src/IconFilter9RoundedFilled.tsx new file mode 100644 index 000000000..1ba9f3cd4 --- /dev/null +++ b/src/IconFilter9RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter9RoundedFilled as default } diff --git a/src/IconFilter9SharpFilled.tsx b/src/IconFilter9SharpFilled.tsx new file mode 100644 index 000000000..ceb0c91b7 --- /dev/null +++ b/src/IconFilter9SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilter9SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilter9SharpFilled as default } diff --git a/src/IconFilterAltOffOutlinedFilled.tsx b/src/IconFilterAltOffOutlinedFilled.tsx new file mode 100644 index 000000000..7bfae817c --- /dev/null +++ b/src/IconFilterAltOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterAltOffOutlinedFilled as default } diff --git a/src/IconFilterAltOffRoundedFilled.tsx b/src/IconFilterAltOffRoundedFilled.tsx new file mode 100644 index 000000000..8b81ecb85 --- /dev/null +++ b/src/IconFilterAltOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterAltOffRoundedFilled as default } diff --git a/src/IconFilterAltOffSharpFilled.tsx b/src/IconFilterAltOffSharpFilled.tsx new file mode 100644 index 000000000..aba5b6880 --- /dev/null +++ b/src/IconFilterAltOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterAltOffSharpFilled as default } diff --git a/src/IconFilterAltOutlinedFilled.tsx b/src/IconFilterAltOutlinedFilled.tsx new file mode 100644 index 000000000..430ae05f4 --- /dev/null +++ b/src/IconFilterAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterAltOutlinedFilled as default } diff --git a/src/IconFilterAltRoundedFilled.tsx b/src/IconFilterAltRoundedFilled.tsx new file mode 100644 index 000000000..98d3beb1b --- /dev/null +++ b/src/IconFilterAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterAltRoundedFilled as default } diff --git a/src/IconFilterAltSharpFilled.tsx b/src/IconFilterAltSharpFilled.tsx new file mode 100644 index 000000000..908e7c90c --- /dev/null +++ b/src/IconFilterAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterAltSharpFilled as default } diff --git a/src/IconFilterBAndWOutlinedFilled.tsx b/src/IconFilterBAndWOutlinedFilled.tsx new file mode 100644 index 000000000..35e187daa --- /dev/null +++ b/src/IconFilterBAndWOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterBAndWOutlinedFilled as default } diff --git a/src/IconFilterBAndWRoundedFilled.tsx b/src/IconFilterBAndWRoundedFilled.tsx new file mode 100644 index 000000000..492fde2ef --- /dev/null +++ b/src/IconFilterBAndWRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterBAndWRoundedFilled as default } diff --git a/src/IconFilterBAndWSharpFilled.tsx b/src/IconFilterBAndWSharpFilled.tsx new file mode 100644 index 000000000..567954ea1 --- /dev/null +++ b/src/IconFilterBAndWSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterBAndWSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterBAndWSharpFilled as default } diff --git a/src/IconFilterCenterFocusOutlinedFilled.tsx b/src/IconFilterCenterFocusOutlinedFilled.tsx new file mode 100644 index 000000000..e31b9dbe8 --- /dev/null +++ b/src/IconFilterCenterFocusOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterCenterFocusOutlinedFilled as default } diff --git a/src/IconFilterCenterFocusRoundedFilled.tsx b/src/IconFilterCenterFocusRoundedFilled.tsx new file mode 100644 index 000000000..2364a36f5 --- /dev/null +++ b/src/IconFilterCenterFocusRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterCenterFocusRoundedFilled as default } diff --git a/src/IconFilterCenterFocusSharpFilled.tsx b/src/IconFilterCenterFocusSharpFilled.tsx new file mode 100644 index 000000000..92d75fed7 --- /dev/null +++ b/src/IconFilterCenterFocusSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterCenterFocusSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterCenterFocusSharpFilled as default } diff --git a/src/IconFilterDramaOutlinedFilled.tsx b/src/IconFilterDramaOutlinedFilled.tsx new file mode 100644 index 000000000..648a5fd8d --- /dev/null +++ b/src/IconFilterDramaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterDramaOutlinedFilled as default } diff --git a/src/IconFilterDramaRoundedFilled.tsx b/src/IconFilterDramaRoundedFilled.tsx new file mode 100644 index 000000000..6490ee949 --- /dev/null +++ b/src/IconFilterDramaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterDramaRoundedFilled as default } diff --git a/src/IconFilterDramaSharpFilled.tsx b/src/IconFilterDramaSharpFilled.tsx new file mode 100644 index 000000000..211f39b68 --- /dev/null +++ b/src/IconFilterDramaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterDramaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterDramaSharpFilled as default } diff --git a/src/IconFilterFramesOutlinedFilled.tsx b/src/IconFilterFramesOutlinedFilled.tsx new file mode 100644 index 000000000..5e4471233 --- /dev/null +++ b/src/IconFilterFramesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterFramesOutlinedFilled as default } diff --git a/src/IconFilterFramesRoundedFilled.tsx b/src/IconFilterFramesRoundedFilled.tsx new file mode 100644 index 000000000..277e5acf2 --- /dev/null +++ b/src/IconFilterFramesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterFramesRoundedFilled as default } diff --git a/src/IconFilterFramesSharpFilled.tsx b/src/IconFilterFramesSharpFilled.tsx new file mode 100644 index 000000000..cd2850734 --- /dev/null +++ b/src/IconFilterFramesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterFramesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterFramesSharpFilled as default } diff --git a/src/IconFilterHdrOutlinedFilled.tsx b/src/IconFilterHdrOutlinedFilled.tsx new file mode 100644 index 000000000..6fd149819 --- /dev/null +++ b/src/IconFilterHdrOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterHdrOutlinedFilled as default } diff --git a/src/IconFilterHdrRoundedFilled.tsx b/src/IconFilterHdrRoundedFilled.tsx new file mode 100644 index 000000000..1ddefa084 --- /dev/null +++ b/src/IconFilterHdrRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterHdrRoundedFilled as default } diff --git a/src/IconFilterHdrSharpFilled.tsx b/src/IconFilterHdrSharpFilled.tsx new file mode 100644 index 000000000..d425ba4dc --- /dev/null +++ b/src/IconFilterHdrSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterHdrSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterHdrSharpFilled as default } diff --git a/src/IconFilterListOffOutlinedFilled.tsx b/src/IconFilterListOffOutlinedFilled.tsx new file mode 100644 index 000000000..1b05897d1 --- /dev/null +++ b/src/IconFilterListOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterListOffOutlinedFilled as default } diff --git a/src/IconFilterListOffRoundedFilled.tsx b/src/IconFilterListOffRoundedFilled.tsx new file mode 100644 index 000000000..c6f81088d --- /dev/null +++ b/src/IconFilterListOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterListOffRoundedFilled as default } diff --git a/src/IconFilterListOffSharpFilled.tsx b/src/IconFilterListOffSharpFilled.tsx new file mode 100644 index 000000000..5752298ff --- /dev/null +++ b/src/IconFilterListOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterListOffSharpFilled as default } diff --git a/src/IconFilterListOutlinedFilled.tsx b/src/IconFilterListOutlinedFilled.tsx new file mode 100644 index 000000000..fcbc81fa3 --- /dev/null +++ b/src/IconFilterListOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterListOutlinedFilled as default } diff --git a/src/IconFilterListRoundedFilled.tsx b/src/IconFilterListRoundedFilled.tsx new file mode 100644 index 000000000..34159cfe3 --- /dev/null +++ b/src/IconFilterListRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterListRoundedFilled as default } diff --git a/src/IconFilterListSharpFilled.tsx b/src/IconFilterListSharpFilled.tsx new file mode 100644 index 000000000..9a883d2de --- /dev/null +++ b/src/IconFilterListSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterListSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterListSharpFilled as default } diff --git a/src/IconFilterNoneOutlinedFilled.tsx b/src/IconFilterNoneOutlinedFilled.tsx new file mode 100644 index 000000000..5db1bd8b9 --- /dev/null +++ b/src/IconFilterNoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterNoneOutlinedFilled as default } diff --git a/src/IconFilterNoneRoundedFilled.tsx b/src/IconFilterNoneRoundedFilled.tsx new file mode 100644 index 000000000..6270c32ac --- /dev/null +++ b/src/IconFilterNoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterNoneRoundedFilled as default } diff --git a/src/IconFilterNoneSharpFilled.tsx b/src/IconFilterNoneSharpFilled.tsx new file mode 100644 index 000000000..d1f128acd --- /dev/null +++ b/src/IconFilterNoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterNoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterNoneSharpFilled as default } diff --git a/src/IconFilterOutlinedFilled.tsx b/src/IconFilterOutlinedFilled.tsx new file mode 100644 index 000000000..0cc258ff0 --- /dev/null +++ b/src/IconFilterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterOutlinedFilled as default } diff --git a/src/IconFilterRetroluxOutlinedFilled.tsx b/src/IconFilterRetroluxOutlinedFilled.tsx new file mode 100644 index 000000000..9a6983956 --- /dev/null +++ b/src/IconFilterRetroluxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterRetroluxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterRetroluxOutlinedFilled as default } diff --git a/src/IconFilterRetroluxRoundedFilled.tsx b/src/IconFilterRetroluxRoundedFilled.tsx new file mode 100644 index 000000000..86520766b --- /dev/null +++ b/src/IconFilterRetroluxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterRetroluxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterRetroluxRoundedFilled as default } diff --git a/src/IconFilterRetroluxSharpFilled.tsx b/src/IconFilterRetroluxSharpFilled.tsx new file mode 100644 index 000000000..6dc3c0d31 --- /dev/null +++ b/src/IconFilterRetroluxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterRetroluxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterRetroluxSharpFilled as default } diff --git a/src/IconFilterRoundedFilled.tsx b/src/IconFilterRoundedFilled.tsx new file mode 100644 index 000000000..705aeae1f --- /dev/null +++ b/src/IconFilterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterRoundedFilled as default } diff --git a/src/IconFilterSharpFilled.tsx b/src/IconFilterSharpFilled.tsx new file mode 100644 index 000000000..e51af7b91 --- /dev/null +++ b/src/IconFilterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterSharpFilled as default } diff --git a/src/IconFilterTiltShiftOutlinedFilled.tsx b/src/IconFilterTiltShiftOutlinedFilled.tsx new file mode 100644 index 000000000..73324efa0 --- /dev/null +++ b/src/IconFilterTiltShiftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterTiltShiftOutlinedFilled as default } diff --git a/src/IconFilterTiltShiftRoundedFilled.tsx b/src/IconFilterTiltShiftRoundedFilled.tsx new file mode 100644 index 000000000..f3424e790 --- /dev/null +++ b/src/IconFilterTiltShiftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterTiltShiftRoundedFilled as default } diff --git a/src/IconFilterTiltShiftSharpFilled.tsx b/src/IconFilterTiltShiftSharpFilled.tsx new file mode 100644 index 000000000..3f8d1012a --- /dev/null +++ b/src/IconFilterTiltShiftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterTiltShiftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterTiltShiftSharpFilled as default } diff --git a/src/IconFilterVintageOutlinedFilled.tsx b/src/IconFilterVintageOutlinedFilled.tsx new file mode 100644 index 000000000..68ffb10ec --- /dev/null +++ b/src/IconFilterVintageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterVintageOutlinedFilled as default } diff --git a/src/IconFilterVintageRoundedFilled.tsx b/src/IconFilterVintageRoundedFilled.tsx new file mode 100644 index 000000000..477d3195d --- /dev/null +++ b/src/IconFilterVintageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterVintageRoundedFilled as default } diff --git a/src/IconFilterVintageSharpFilled.tsx b/src/IconFilterVintageSharpFilled.tsx new file mode 100644 index 000000000..624538b73 --- /dev/null +++ b/src/IconFilterVintageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFilterVintageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFilterVintageSharpFilled as default } diff --git a/src/IconFinanceChipOutlinedFilled.tsx b/src/IconFinanceChipOutlinedFilled.tsx new file mode 100644 index 000000000..d5b75ce11 --- /dev/null +++ b/src/IconFinanceChipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceChipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceChipOutlinedFilled as default } diff --git a/src/IconFinanceChipRoundedFilled.tsx b/src/IconFinanceChipRoundedFilled.tsx new file mode 100644 index 000000000..b33d12f3a --- /dev/null +++ b/src/IconFinanceChipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceChipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceChipRoundedFilled as default } diff --git a/src/IconFinanceChipSharpFilled.tsx b/src/IconFinanceChipSharpFilled.tsx new file mode 100644 index 000000000..a7ea14d71 --- /dev/null +++ b/src/IconFinanceChipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceChipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceChipSharpFilled as default } diff --git a/src/IconFinanceModeOutlinedFilled.tsx b/src/IconFinanceModeOutlinedFilled.tsx new file mode 100644 index 000000000..a107d3228 --- /dev/null +++ b/src/IconFinanceModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceModeOutlinedFilled as default } diff --git a/src/IconFinanceModeRoundedFilled.tsx b/src/IconFinanceModeRoundedFilled.tsx new file mode 100644 index 000000000..685794ae1 --- /dev/null +++ b/src/IconFinanceModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceModeRoundedFilled as default } diff --git a/src/IconFinanceModeSharpFilled.tsx b/src/IconFinanceModeSharpFilled.tsx new file mode 100644 index 000000000..ed07c6b0e --- /dev/null +++ b/src/IconFinanceModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceModeSharpFilled as default } diff --git a/src/IconFinanceOutlinedFilled.tsx b/src/IconFinanceOutlinedFilled.tsx new file mode 100644 index 000000000..0a412b838 --- /dev/null +++ b/src/IconFinanceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceOutlinedFilled as default } diff --git a/src/IconFinanceRoundedFilled.tsx b/src/IconFinanceRoundedFilled.tsx new file mode 100644 index 000000000..b11238444 --- /dev/null +++ b/src/IconFinanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceRoundedFilled as default } diff --git a/src/IconFinanceSharpFilled.tsx b/src/IconFinanceSharpFilled.tsx new file mode 100644 index 000000000..2b55aaf40 --- /dev/null +++ b/src/IconFinanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFinanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFinanceSharpFilled as default } diff --git a/src/IconFindInPageOutlinedFilled.tsx b/src/IconFindInPageOutlinedFilled.tsx new file mode 100644 index 000000000..269bc21b3 --- /dev/null +++ b/src/IconFindInPageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFindInPageOutlinedFilled as default } diff --git a/src/IconFindInPageRoundedFilled.tsx b/src/IconFindInPageRoundedFilled.tsx new file mode 100644 index 000000000..8974c4a91 --- /dev/null +++ b/src/IconFindInPageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFindInPageRoundedFilled as default } diff --git a/src/IconFindInPageSharpFilled.tsx b/src/IconFindInPageSharpFilled.tsx new file mode 100644 index 000000000..d3e93cc00 --- /dev/null +++ b/src/IconFindInPageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindInPageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFindInPageSharpFilled as default } diff --git a/src/IconFindReplaceOutlinedFilled.tsx b/src/IconFindReplaceOutlinedFilled.tsx new file mode 100644 index 000000000..95c951d43 --- /dev/null +++ b/src/IconFindReplaceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFindReplaceOutlinedFilled as default } diff --git a/src/IconFindReplaceRoundedFilled.tsx b/src/IconFindReplaceRoundedFilled.tsx new file mode 100644 index 000000000..7cfc920b2 --- /dev/null +++ b/src/IconFindReplaceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFindReplaceRoundedFilled as default } diff --git a/src/IconFindReplaceSharpFilled.tsx b/src/IconFindReplaceSharpFilled.tsx new file mode 100644 index 000000000..2837344c8 --- /dev/null +++ b/src/IconFindReplaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFindReplaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFindReplaceSharpFilled as default } diff --git a/src/IconFingerprintOffOutlinedFilled.tsx b/src/IconFingerprintOffOutlinedFilled.tsx new file mode 100644 index 000000000..e060228c0 --- /dev/null +++ b/src/IconFingerprintOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFingerprintOffOutlinedFilled as default } diff --git a/src/IconFingerprintOffRoundedFilled.tsx b/src/IconFingerprintOffRoundedFilled.tsx new file mode 100644 index 000000000..79849b081 --- /dev/null +++ b/src/IconFingerprintOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFingerprintOffRoundedFilled as default } diff --git a/src/IconFingerprintOffSharpFilled.tsx b/src/IconFingerprintOffSharpFilled.tsx new file mode 100644 index 000000000..67ae7a950 --- /dev/null +++ b/src/IconFingerprintOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFingerprintOffSharpFilled as default } diff --git a/src/IconFingerprintOutlinedFilled.tsx b/src/IconFingerprintOutlinedFilled.tsx new file mode 100644 index 000000000..08fedd32d --- /dev/null +++ b/src/IconFingerprintOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFingerprintOutlinedFilled as default } diff --git a/src/IconFingerprintRoundedFilled.tsx b/src/IconFingerprintRoundedFilled.tsx new file mode 100644 index 000000000..67522b895 --- /dev/null +++ b/src/IconFingerprintRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFingerprintRoundedFilled as default } diff --git a/src/IconFingerprintSharpFilled.tsx b/src/IconFingerprintSharpFilled.tsx new file mode 100644 index 000000000..d11a81f30 --- /dev/null +++ b/src/IconFingerprintSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFingerprintSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFingerprintSharpFilled as default } diff --git a/src/IconFireExtinguisherOutlinedFilled.tsx b/src/IconFireExtinguisherOutlinedFilled.tsx new file mode 100644 index 000000000..d90006929 --- /dev/null +++ b/src/IconFireExtinguisherOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFireExtinguisherOutlinedFilled as default } diff --git a/src/IconFireExtinguisherRoundedFilled.tsx b/src/IconFireExtinguisherRoundedFilled.tsx new file mode 100644 index 000000000..b2a0ac376 --- /dev/null +++ b/src/IconFireExtinguisherRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFireExtinguisherRoundedFilled as default } diff --git a/src/IconFireExtinguisherSharpFilled.tsx b/src/IconFireExtinguisherSharpFilled.tsx new file mode 100644 index 000000000..90879f339 --- /dev/null +++ b/src/IconFireExtinguisherSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireExtinguisherSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireExtinguisherSharpFilled as default } diff --git a/src/IconFireHydrantOutlinedFilled.tsx b/src/IconFireHydrantOutlinedFilled.tsx new file mode 100644 index 000000000..e52718d02 --- /dev/null +++ b/src/IconFireHydrantOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireHydrantOutlinedFilled as default } diff --git a/src/IconFireHydrantRoundedFilled.tsx b/src/IconFireHydrantRoundedFilled.tsx new file mode 100644 index 000000000..07c28f4a3 --- /dev/null +++ b/src/IconFireHydrantRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireHydrantRoundedFilled as default } diff --git a/src/IconFireHydrantSharpFilled.tsx b/src/IconFireHydrantSharpFilled.tsx new file mode 100644 index 000000000..8741f8f4f --- /dev/null +++ b/src/IconFireHydrantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireHydrantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireHydrantSharpFilled as default } diff --git a/src/IconFireTruckOutlinedFilled.tsx b/src/IconFireTruckOutlinedFilled.tsx new file mode 100644 index 000000000..0387ba047 --- /dev/null +++ b/src/IconFireTruckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireTruckOutlinedFilled as default } diff --git a/src/IconFireTruckRoundedFilled.tsx b/src/IconFireTruckRoundedFilled.tsx new file mode 100644 index 000000000..41a523d90 --- /dev/null +++ b/src/IconFireTruckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireTruckRoundedFilled as default } diff --git a/src/IconFireTruckSharpFilled.tsx b/src/IconFireTruckSharpFilled.tsx new file mode 100644 index 000000000..5768710fe --- /dev/null +++ b/src/IconFireTruckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireTruckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireTruckSharpFilled as default } diff --git a/src/IconFireplaceOutlinedFilled.tsx b/src/IconFireplaceOutlinedFilled.tsx new file mode 100644 index 000000000..7b1b6fb10 --- /dev/null +++ b/src/IconFireplaceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireplaceOutlinedFilled as default } diff --git a/src/IconFireplaceRoundedFilled.tsx b/src/IconFireplaceRoundedFilled.tsx new file mode 100644 index 000000000..cdea0d07a --- /dev/null +++ b/src/IconFireplaceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireplaceRoundedFilled as default } diff --git a/src/IconFireplaceSharpFilled.tsx b/src/IconFireplaceSharpFilled.tsx new file mode 100644 index 000000000..bb86fd7cf --- /dev/null +++ b/src/IconFireplaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFireplaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFireplaceSharpFilled as default } diff --git a/src/IconFirstPageOutlinedFilled.tsx b/src/IconFirstPageOutlinedFilled.tsx new file mode 100644 index 000000000..4bf57a8c7 --- /dev/null +++ b/src/IconFirstPageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFirstPageOutlinedFilled as default } diff --git a/src/IconFirstPageRoundedFilled.tsx b/src/IconFirstPageRoundedFilled.tsx new file mode 100644 index 000000000..0fe685056 --- /dev/null +++ b/src/IconFirstPageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFirstPageRoundedFilled as default } diff --git a/src/IconFirstPageSharpFilled.tsx b/src/IconFirstPageSharpFilled.tsx new file mode 100644 index 000000000..069cfd136 --- /dev/null +++ b/src/IconFirstPageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFirstPageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFirstPageSharpFilled as default } diff --git a/src/IconFitPageOutlinedFilled.tsx b/src/IconFitPageOutlinedFilled.tsx new file mode 100644 index 000000000..81ba3af43 --- /dev/null +++ b/src/IconFitPageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitPageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitPageOutlinedFilled as default } diff --git a/src/IconFitPageRoundedFilled.tsx b/src/IconFitPageRoundedFilled.tsx new file mode 100644 index 000000000..88290c753 --- /dev/null +++ b/src/IconFitPageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitPageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitPageRoundedFilled as default } diff --git a/src/IconFitPageSharpFilled.tsx b/src/IconFitPageSharpFilled.tsx new file mode 100644 index 000000000..fab035b54 --- /dev/null +++ b/src/IconFitPageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitPageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitPageSharpFilled as default } diff --git a/src/IconFitScreenOutlinedFilled.tsx b/src/IconFitScreenOutlinedFilled.tsx new file mode 100644 index 000000000..1ee5ca125 --- /dev/null +++ b/src/IconFitScreenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitScreenOutlinedFilled as default } diff --git a/src/IconFitScreenRoundedFilled.tsx b/src/IconFitScreenRoundedFilled.tsx new file mode 100644 index 000000000..938583540 --- /dev/null +++ b/src/IconFitScreenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitScreenRoundedFilled as default } diff --git a/src/IconFitScreenSharpFilled.tsx b/src/IconFitScreenSharpFilled.tsx new file mode 100644 index 000000000..61e500ff8 --- /dev/null +++ b/src/IconFitScreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitScreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitScreenSharpFilled as default } diff --git a/src/IconFitWidthOutlinedFilled.tsx b/src/IconFitWidthOutlinedFilled.tsx new file mode 100644 index 000000000..8169e05ca --- /dev/null +++ b/src/IconFitWidthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitWidthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitWidthOutlinedFilled as default } diff --git a/src/IconFitWidthRoundedFilled.tsx b/src/IconFitWidthRoundedFilled.tsx new file mode 100644 index 000000000..61b1cfda9 --- /dev/null +++ b/src/IconFitWidthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitWidthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitWidthRoundedFilled as default } diff --git a/src/IconFitWidthSharpFilled.tsx b/src/IconFitWidthSharpFilled.tsx new file mode 100644 index 000000000..51835edf2 --- /dev/null +++ b/src/IconFitWidthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitWidthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitWidthSharpFilled as default } diff --git a/src/IconFitnessCenterOutlinedFilled.tsx b/src/IconFitnessCenterOutlinedFilled.tsx new file mode 100644 index 000000000..7f5fad811 --- /dev/null +++ b/src/IconFitnessCenterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitnessCenterOutlinedFilled as default } diff --git a/src/IconFitnessCenterRoundedFilled.tsx b/src/IconFitnessCenterRoundedFilled.tsx new file mode 100644 index 000000000..f4813c874 --- /dev/null +++ b/src/IconFitnessCenterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitnessCenterRoundedFilled as default } diff --git a/src/IconFitnessCenterSharpFilled.tsx b/src/IconFitnessCenterSharpFilled.tsx new file mode 100644 index 000000000..f3200153d --- /dev/null +++ b/src/IconFitnessCenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessCenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitnessCenterSharpFilled as default } diff --git a/src/IconFitnessTrackerOutlinedFilled.tsx b/src/IconFitnessTrackerOutlinedFilled.tsx new file mode 100644 index 000000000..c712c30da --- /dev/null +++ b/src/IconFitnessTrackerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessTrackerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFitnessTrackerOutlinedFilled as default } diff --git a/src/IconFitnessTrackerRoundedFilled.tsx b/src/IconFitnessTrackerRoundedFilled.tsx new file mode 100644 index 000000000..e31db8983 --- /dev/null +++ b/src/IconFitnessTrackerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessTrackerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitnessTrackerRoundedFilled as default } diff --git a/src/IconFitnessTrackerSharpFilled.tsx b/src/IconFitnessTrackerSharpFilled.tsx new file mode 100644 index 000000000..34670e94d --- /dev/null +++ b/src/IconFitnessTrackerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFitnessTrackerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFitnessTrackerSharpFilled as default } diff --git a/src/IconFlag2OutlinedFilled.tsx b/src/IconFlag2OutlinedFilled.tsx new file mode 100644 index 000000000..e389b5afc --- /dev/null +++ b/src/IconFlag2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlag2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlag2OutlinedFilled as default } diff --git a/src/IconFlag2RoundedFilled.tsx b/src/IconFlag2RoundedFilled.tsx new file mode 100644 index 000000000..f2b23e481 --- /dev/null +++ b/src/IconFlag2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlag2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlag2RoundedFilled as default } diff --git a/src/IconFlag2SharpFilled.tsx b/src/IconFlag2SharpFilled.tsx new file mode 100644 index 000000000..444416755 --- /dev/null +++ b/src/IconFlag2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlag2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlag2SharpFilled as default } diff --git a/src/IconFlagCircleOutlinedFilled.tsx b/src/IconFlagCircleOutlinedFilled.tsx new file mode 100644 index 000000000..1807837e9 --- /dev/null +++ b/src/IconFlagCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlagCircleOutlinedFilled as default } diff --git a/src/IconFlagCircleRoundedFilled.tsx b/src/IconFlagCircleRoundedFilled.tsx new file mode 100644 index 000000000..3b4187c94 --- /dev/null +++ b/src/IconFlagCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlagCircleRoundedFilled as default } diff --git a/src/IconFlagCircleSharpFilled.tsx b/src/IconFlagCircleSharpFilled.tsx new file mode 100644 index 000000000..192003ee4 --- /dev/null +++ b/src/IconFlagCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlagCircleSharpFilled as default } diff --git a/src/IconFlagOutlinedFilled.tsx b/src/IconFlagOutlinedFilled.tsx new file mode 100644 index 000000000..aa5b03ecc --- /dev/null +++ b/src/IconFlagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlagOutlinedFilled as default } diff --git a/src/IconFlagRoundedFilled.tsx b/src/IconFlagRoundedFilled.tsx new file mode 100644 index 000000000..0f4aaabcc --- /dev/null +++ b/src/IconFlagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlagRoundedFilled as default } diff --git a/src/IconFlagSharpFilled.tsx b/src/IconFlagSharpFilled.tsx new file mode 100644 index 000000000..229347a4d --- /dev/null +++ b/src/IconFlagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlagSharpFilled as default } diff --git a/src/IconFlakyOutlinedFilled.tsx b/src/IconFlakyOutlinedFilled.tsx new file mode 100644 index 000000000..6295312a1 --- /dev/null +++ b/src/IconFlakyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlakyOutlinedFilled as default } diff --git a/src/IconFlakyRoundedFilled.tsx b/src/IconFlakyRoundedFilled.tsx new file mode 100644 index 000000000..7aea27864 --- /dev/null +++ b/src/IconFlakyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlakyRoundedFilled as default } diff --git a/src/IconFlakySharpFilled.tsx b/src/IconFlakySharpFilled.tsx new file mode 100644 index 000000000..e22809f31 --- /dev/null +++ b/src/IconFlakySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlakySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlakySharpFilled as default } diff --git a/src/IconFlareOutlinedFilled.tsx b/src/IconFlareOutlinedFilled.tsx new file mode 100644 index 000000000..07d5b9109 --- /dev/null +++ b/src/IconFlareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlareOutlinedFilled as default } diff --git a/src/IconFlareRoundedFilled.tsx b/src/IconFlareRoundedFilled.tsx new file mode 100644 index 000000000..3c39dcf58 --- /dev/null +++ b/src/IconFlareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlareRoundedFilled as default } diff --git a/src/IconFlareSharpFilled.tsx b/src/IconFlareSharpFilled.tsx new file mode 100644 index 000000000..a449570d8 --- /dev/null +++ b/src/IconFlareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlareSharpFilled as default } diff --git a/src/IconFlashAutoOutlinedFilled.tsx b/src/IconFlashAutoOutlinedFilled.tsx new file mode 100644 index 000000000..97742766d --- /dev/null +++ b/src/IconFlashAutoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashAutoOutlinedFilled as default } diff --git a/src/IconFlashAutoRoundedFilled.tsx b/src/IconFlashAutoRoundedFilled.tsx new file mode 100644 index 000000000..68d3001d0 --- /dev/null +++ b/src/IconFlashAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashAutoRoundedFilled as default } diff --git a/src/IconFlashAutoSharpFilled.tsx b/src/IconFlashAutoSharpFilled.tsx new file mode 100644 index 000000000..1f7c29c40 --- /dev/null +++ b/src/IconFlashAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashAutoSharpFilled as default } diff --git a/src/IconFlashOffOutlinedFilled.tsx b/src/IconFlashOffOutlinedFilled.tsx new file mode 100644 index 000000000..9c41284fb --- /dev/null +++ b/src/IconFlashOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashOffOutlinedFilled as default } diff --git a/src/IconFlashOffRoundedFilled.tsx b/src/IconFlashOffRoundedFilled.tsx new file mode 100644 index 000000000..4a6c8d1ce --- /dev/null +++ b/src/IconFlashOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashOffRoundedFilled as default } diff --git a/src/IconFlashOffSharpFilled.tsx b/src/IconFlashOffSharpFilled.tsx new file mode 100644 index 000000000..5c616e544 --- /dev/null +++ b/src/IconFlashOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashOffSharpFilled as default } diff --git a/src/IconFlashOnOutlinedFilled.tsx b/src/IconFlashOnOutlinedFilled.tsx new file mode 100644 index 000000000..9899bdf61 --- /dev/null +++ b/src/IconFlashOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashOnOutlinedFilled as default } diff --git a/src/IconFlashOnRoundedFilled.tsx b/src/IconFlashOnRoundedFilled.tsx new file mode 100644 index 000000000..e73893561 --- /dev/null +++ b/src/IconFlashOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashOnRoundedFilled as default } diff --git a/src/IconFlashOnSharpFilled.tsx b/src/IconFlashOnSharpFilled.tsx new file mode 100644 index 000000000..5e67bd719 --- /dev/null +++ b/src/IconFlashOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashOnSharpFilled as default } diff --git a/src/IconFlashlightOffOutlinedFilled.tsx b/src/IconFlashlightOffOutlinedFilled.tsx new file mode 100644 index 000000000..a3eea6121 --- /dev/null +++ b/src/IconFlashlightOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashlightOffOutlinedFilled as default } diff --git a/src/IconFlashlightOffRoundedFilled.tsx b/src/IconFlashlightOffRoundedFilled.tsx new file mode 100644 index 000000000..ae4cbd0e4 --- /dev/null +++ b/src/IconFlashlightOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashlightOffRoundedFilled as default } diff --git a/src/IconFlashlightOffSharpFilled.tsx b/src/IconFlashlightOffSharpFilled.tsx new file mode 100644 index 000000000..ffbd0770d --- /dev/null +++ b/src/IconFlashlightOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashlightOffSharpFilled as default } diff --git a/src/IconFlashlightOnOutlinedFilled.tsx b/src/IconFlashlightOnOutlinedFilled.tsx new file mode 100644 index 000000000..7f6bfe7a7 --- /dev/null +++ b/src/IconFlashlightOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashlightOnOutlinedFilled as default } diff --git a/src/IconFlashlightOnRoundedFilled.tsx b/src/IconFlashlightOnRoundedFilled.tsx new file mode 100644 index 000000000..9cfad6539 --- /dev/null +++ b/src/IconFlashlightOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashlightOnRoundedFilled as default } diff --git a/src/IconFlashlightOnSharpFilled.tsx b/src/IconFlashlightOnSharpFilled.tsx new file mode 100644 index 000000000..6c5840863 --- /dev/null +++ b/src/IconFlashlightOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlashlightOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlashlightOnSharpFilled as default } diff --git a/src/IconFlatwareOutlinedFilled.tsx b/src/IconFlatwareOutlinedFilled.tsx new file mode 100644 index 000000000..2309cda93 --- /dev/null +++ b/src/IconFlatwareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlatwareOutlinedFilled as default } diff --git a/src/IconFlatwareRoundedFilled.tsx b/src/IconFlatwareRoundedFilled.tsx new file mode 100644 index 000000000..5fae69c2e --- /dev/null +++ b/src/IconFlatwareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlatwareRoundedFilled as default } diff --git a/src/IconFlatwareSharpFilled.tsx b/src/IconFlatwareSharpFilled.tsx new file mode 100644 index 000000000..3b28753f0 --- /dev/null +++ b/src/IconFlatwareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlatwareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlatwareSharpFilled as default } diff --git a/src/IconFlexDirectionOutlinedFilled.tsx b/src/IconFlexDirectionOutlinedFilled.tsx new file mode 100644 index 000000000..067bcd221 --- /dev/null +++ b/src/IconFlexDirectionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexDirectionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexDirectionOutlinedFilled as default } diff --git a/src/IconFlexDirectionRoundedFilled.tsx b/src/IconFlexDirectionRoundedFilled.tsx new file mode 100644 index 000000000..08778d07e --- /dev/null +++ b/src/IconFlexDirectionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexDirectionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexDirectionRoundedFilled as default } diff --git a/src/IconFlexDirectionSharpFilled.tsx b/src/IconFlexDirectionSharpFilled.tsx new file mode 100644 index 000000000..7f2cef022 --- /dev/null +++ b/src/IconFlexDirectionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexDirectionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexDirectionSharpFilled as default } diff --git a/src/IconFlexNoWrapOutlinedFilled.tsx b/src/IconFlexNoWrapOutlinedFilled.tsx new file mode 100644 index 000000000..bd7cbe4a6 --- /dev/null +++ b/src/IconFlexNoWrapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexNoWrapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexNoWrapOutlinedFilled as default } diff --git a/src/IconFlexNoWrapRoundedFilled.tsx b/src/IconFlexNoWrapRoundedFilled.tsx new file mode 100644 index 000000000..e5cbb7cc0 --- /dev/null +++ b/src/IconFlexNoWrapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexNoWrapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexNoWrapRoundedFilled as default } diff --git a/src/IconFlexNoWrapSharpFilled.tsx b/src/IconFlexNoWrapSharpFilled.tsx new file mode 100644 index 000000000..8b1e5e80d --- /dev/null +++ b/src/IconFlexNoWrapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexNoWrapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexNoWrapSharpFilled as default } diff --git a/src/IconFlexWrapOutlinedFilled.tsx b/src/IconFlexWrapOutlinedFilled.tsx new file mode 100644 index 000000000..e13fc0824 --- /dev/null +++ b/src/IconFlexWrapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexWrapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexWrapOutlinedFilled as default } diff --git a/src/IconFlexWrapRoundedFilled.tsx b/src/IconFlexWrapRoundedFilled.tsx new file mode 100644 index 000000000..7fb3afd6c --- /dev/null +++ b/src/IconFlexWrapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexWrapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexWrapRoundedFilled as default } diff --git a/src/IconFlexWrapSharpFilled.tsx b/src/IconFlexWrapSharpFilled.tsx new file mode 100644 index 000000000..35012cbe2 --- /dev/null +++ b/src/IconFlexWrapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlexWrapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlexWrapSharpFilled as default } diff --git a/src/IconFlightClassOutlinedFilled.tsx b/src/IconFlightClassOutlinedFilled.tsx new file mode 100644 index 000000000..4c16737ac --- /dev/null +++ b/src/IconFlightClassOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightClassOutlinedFilled as default } diff --git a/src/IconFlightClassRoundedFilled.tsx b/src/IconFlightClassRoundedFilled.tsx new file mode 100644 index 000000000..41e251a7f --- /dev/null +++ b/src/IconFlightClassRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightClassRoundedFilled as default } diff --git a/src/IconFlightClassSharpFilled.tsx b/src/IconFlightClassSharpFilled.tsx new file mode 100644 index 000000000..469a73500 --- /dev/null +++ b/src/IconFlightClassSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightClassSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightClassSharpFilled as default } diff --git a/src/IconFlightLandOutlinedFilled.tsx b/src/IconFlightLandOutlinedFilled.tsx new file mode 100644 index 000000000..8b6768894 --- /dev/null +++ b/src/IconFlightLandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightLandOutlinedFilled as default } diff --git a/src/IconFlightLandRoundedFilled.tsx b/src/IconFlightLandRoundedFilled.tsx new file mode 100644 index 000000000..f8150d669 --- /dev/null +++ b/src/IconFlightLandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightLandRoundedFilled as default } diff --git a/src/IconFlightLandSharpFilled.tsx b/src/IconFlightLandSharpFilled.tsx new file mode 100644 index 000000000..a42e5e6b6 --- /dev/null +++ b/src/IconFlightLandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightLandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightLandSharpFilled as default } diff --git a/src/IconFlightOutlinedFilled.tsx b/src/IconFlightOutlinedFilled.tsx new file mode 100644 index 000000000..4e149a963 --- /dev/null +++ b/src/IconFlightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightOutlinedFilled as default } diff --git a/src/IconFlightRoundedFilled.tsx b/src/IconFlightRoundedFilled.tsx new file mode 100644 index 000000000..863621c69 --- /dev/null +++ b/src/IconFlightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightRoundedFilled as default } diff --git a/src/IconFlightSharpFilled.tsx b/src/IconFlightSharpFilled.tsx new file mode 100644 index 000000000..ea277ad5b --- /dev/null +++ b/src/IconFlightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightSharpFilled as default } diff --git a/src/IconFlightTakeoffOutlinedFilled.tsx b/src/IconFlightTakeoffOutlinedFilled.tsx new file mode 100644 index 000000000..05d856744 --- /dev/null +++ b/src/IconFlightTakeoffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightTakeoffOutlinedFilled as default } diff --git a/src/IconFlightTakeoffRoundedFilled.tsx b/src/IconFlightTakeoffRoundedFilled.tsx new file mode 100644 index 000000000..de2668f5a --- /dev/null +++ b/src/IconFlightTakeoffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightTakeoffRoundedFilled as default } diff --git a/src/IconFlightTakeoffSharpFilled.tsx b/src/IconFlightTakeoffSharpFilled.tsx new file mode 100644 index 000000000..34ff2edf1 --- /dev/null +++ b/src/IconFlightTakeoffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightTakeoffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightTakeoffSharpFilled as default } diff --git a/src/IconFlightsAndHotelsOutlinedFilled.tsx b/src/IconFlightsAndHotelsOutlinedFilled.tsx new file mode 100644 index 000000000..4617cd10f --- /dev/null +++ b/src/IconFlightsAndHotelsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightsAndHotelsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightsAndHotelsOutlinedFilled as default } diff --git a/src/IconFlightsAndHotelsRoundedFilled.tsx b/src/IconFlightsAndHotelsRoundedFilled.tsx new file mode 100644 index 000000000..140bf83f2 --- /dev/null +++ b/src/IconFlightsAndHotelsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightsAndHotelsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightsAndHotelsRoundedFilled as default } diff --git a/src/IconFlightsAndHotelsSharpFilled.tsx b/src/IconFlightsAndHotelsSharpFilled.tsx new file mode 100644 index 000000000..d3bb1b008 --- /dev/null +++ b/src/IconFlightsAndHotelsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlightsAndHotelsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlightsAndHotelsSharpFilled as default } diff --git a/src/IconFlipCameraAndroidOutlinedFilled.tsx b/src/IconFlipCameraAndroidOutlinedFilled.tsx new file mode 100644 index 000000000..44d180eaf --- /dev/null +++ b/src/IconFlipCameraAndroidOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipCameraAndroidOutlinedFilled as default } diff --git a/src/IconFlipCameraAndroidRoundedFilled.tsx b/src/IconFlipCameraAndroidRoundedFilled.tsx new file mode 100644 index 000000000..5b71f3985 --- /dev/null +++ b/src/IconFlipCameraAndroidRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipCameraAndroidRoundedFilled as default } diff --git a/src/IconFlipCameraAndroidSharpFilled.tsx b/src/IconFlipCameraAndroidSharpFilled.tsx new file mode 100644 index 000000000..4073e22c4 --- /dev/null +++ b/src/IconFlipCameraAndroidSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraAndroidSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipCameraAndroidSharpFilled as default } diff --git a/src/IconFlipCameraIosOutlinedFilled.tsx b/src/IconFlipCameraIosOutlinedFilled.tsx new file mode 100644 index 000000000..c39f21dd8 --- /dev/null +++ b/src/IconFlipCameraIosOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipCameraIosOutlinedFilled as default } diff --git a/src/IconFlipCameraIosRoundedFilled.tsx b/src/IconFlipCameraIosRoundedFilled.tsx new file mode 100644 index 000000000..f7c1b4a22 --- /dev/null +++ b/src/IconFlipCameraIosRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipCameraIosRoundedFilled as default } diff --git a/src/IconFlipCameraIosSharpFilled.tsx b/src/IconFlipCameraIosSharpFilled.tsx new file mode 100644 index 000000000..f0a0bf185 --- /dev/null +++ b/src/IconFlipCameraIosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipCameraIosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipCameraIosSharpFilled as default } diff --git a/src/IconFlipOutlinedFilled.tsx b/src/IconFlipOutlinedFilled.tsx new file mode 100644 index 000000000..dac38532d --- /dev/null +++ b/src/IconFlipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipOutlinedFilled as default } diff --git a/src/IconFlipRoundedFilled.tsx b/src/IconFlipRoundedFilled.tsx new file mode 100644 index 000000000..f4004e38d --- /dev/null +++ b/src/IconFlipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipRoundedFilled as default } diff --git a/src/IconFlipSharpFilled.tsx b/src/IconFlipSharpFilled.tsx new file mode 100644 index 000000000..76934e97e --- /dev/null +++ b/src/IconFlipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipSharpFilled as default } diff --git a/src/IconFlipToBackOutlinedFilled.tsx b/src/IconFlipToBackOutlinedFilled.tsx new file mode 100644 index 000000000..0d3e9241a --- /dev/null +++ b/src/IconFlipToBackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipToBackOutlinedFilled as default } diff --git a/src/IconFlipToBackRoundedFilled.tsx b/src/IconFlipToBackRoundedFilled.tsx new file mode 100644 index 000000000..c89c91b51 --- /dev/null +++ b/src/IconFlipToBackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipToBackRoundedFilled as default } diff --git a/src/IconFlipToBackSharpFilled.tsx b/src/IconFlipToBackSharpFilled.tsx new file mode 100644 index 000000000..bb22e4280 --- /dev/null +++ b/src/IconFlipToBackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToBackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipToBackSharpFilled as default } diff --git a/src/IconFlipToFrontOutlinedFilled.tsx b/src/IconFlipToFrontOutlinedFilled.tsx new file mode 100644 index 000000000..01f528eac --- /dev/null +++ b/src/IconFlipToFrontOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipToFrontOutlinedFilled as default } diff --git a/src/IconFlipToFrontRoundedFilled.tsx b/src/IconFlipToFrontRoundedFilled.tsx new file mode 100644 index 000000000..ec7cb99fc --- /dev/null +++ b/src/IconFlipToFrontRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipToFrontRoundedFilled as default } diff --git a/src/IconFlipToFrontSharpFilled.tsx b/src/IconFlipToFrontSharpFilled.tsx new file mode 100644 index 000000000..edb94fdb1 --- /dev/null +++ b/src/IconFlipToFrontSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlipToFrontSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlipToFrontSharpFilled as default } diff --git a/src/IconFloatLandscape2OutlinedFilled.tsx b/src/IconFloatLandscape2OutlinedFilled.tsx new file mode 100644 index 000000000..8824f6178 --- /dev/null +++ b/src/IconFloatLandscape2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloatLandscape2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFloatLandscape2OutlinedFilled as default } diff --git a/src/IconFloatLandscape2RoundedFilled.tsx b/src/IconFloatLandscape2RoundedFilled.tsx new file mode 100644 index 000000000..d99e894e0 --- /dev/null +++ b/src/IconFloatLandscape2RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloatLandscape2RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFloatLandscape2RoundedFilled as default } diff --git a/src/IconFloatLandscape2SharpFilled.tsx b/src/IconFloatLandscape2SharpFilled.tsx new file mode 100644 index 000000000..a66d58c49 --- /dev/null +++ b/src/IconFloatLandscape2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloatLandscape2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloatLandscape2SharpFilled as default } diff --git a/src/IconFloatPortrait2OutlinedFilled.tsx b/src/IconFloatPortrait2OutlinedFilled.tsx new file mode 100644 index 000000000..5b8b3c6d6 --- /dev/null +++ b/src/IconFloatPortrait2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloatPortrait2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFloatPortrait2OutlinedFilled as default } diff --git a/src/IconFloatPortrait2RoundedFilled.tsx b/src/IconFloatPortrait2RoundedFilled.tsx new file mode 100644 index 000000000..0016f146f --- /dev/null +++ b/src/IconFloatPortrait2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloatPortrait2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloatPortrait2RoundedFilled as default } diff --git a/src/IconFloatPortrait2SharpFilled.tsx b/src/IconFloatPortrait2SharpFilled.tsx new file mode 100644 index 000000000..2d130a551 --- /dev/null +++ b/src/IconFloatPortrait2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloatPortrait2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloatPortrait2SharpFilled as default } diff --git a/src/IconFloodOutlinedFilled.tsx b/src/IconFloodOutlinedFilled.tsx new file mode 100644 index 000000000..ff8bd35dc --- /dev/null +++ b/src/IconFloodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloodOutlinedFilled as default } diff --git a/src/IconFloodRoundedFilled.tsx b/src/IconFloodRoundedFilled.tsx new file mode 100644 index 000000000..4c8b22ca6 --- /dev/null +++ b/src/IconFloodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloodRoundedFilled as default } diff --git a/src/IconFloodSharpFilled.tsx b/src/IconFloodSharpFilled.tsx new file mode 100644 index 000000000..3d75c2591 --- /dev/null +++ b/src/IconFloodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloodSharpFilled as default } diff --git a/src/IconFloorLampOutlinedFilled.tsx b/src/IconFloorLampOutlinedFilled.tsx new file mode 100644 index 000000000..48ddff382 --- /dev/null +++ b/src/IconFloorLampOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloorLampOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloorLampOutlinedFilled as default } diff --git a/src/IconFloorLampRoundedFilled.tsx b/src/IconFloorLampRoundedFilled.tsx new file mode 100644 index 000000000..9c252ea08 --- /dev/null +++ b/src/IconFloorLampRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloorLampRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloorLampRoundedFilled as default } diff --git a/src/IconFloorLampSharpFilled.tsx b/src/IconFloorLampSharpFilled.tsx new file mode 100644 index 000000000..a9d98bbc9 --- /dev/null +++ b/src/IconFloorLampSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloorLampSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloorLampSharpFilled as default } diff --git a/src/IconFloorOutlinedFilled.tsx b/src/IconFloorOutlinedFilled.tsx new file mode 100644 index 000000000..d5452071d --- /dev/null +++ b/src/IconFloorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloorOutlinedFilled as default } diff --git a/src/IconFloorRoundedFilled.tsx b/src/IconFloorRoundedFilled.tsx new file mode 100644 index 000000000..bcccade15 --- /dev/null +++ b/src/IconFloorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloorRoundedFilled as default } diff --git a/src/IconFloorSharpFilled.tsx b/src/IconFloorSharpFilled.tsx new file mode 100644 index 000000000..89a0e8696 --- /dev/null +++ b/src/IconFloorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFloorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFloorSharpFilled as default } diff --git a/src/IconFlowsheetOutlinedFilled.tsx b/src/IconFlowsheetOutlinedFilled.tsx new file mode 100644 index 000000000..b582475d7 --- /dev/null +++ b/src/IconFlowsheetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlowsheetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlowsheetOutlinedFilled as default } diff --git a/src/IconFlowsheetRoundedFilled.tsx b/src/IconFlowsheetRoundedFilled.tsx new file mode 100644 index 000000000..7bc089c54 --- /dev/null +++ b/src/IconFlowsheetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlowsheetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlowsheetRoundedFilled as default } diff --git a/src/IconFlowsheetSharpFilled.tsx b/src/IconFlowsheetSharpFilled.tsx new file mode 100644 index 000000000..58e935e60 --- /dev/null +++ b/src/IconFlowsheetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlowsheetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlowsheetSharpFilled as default } diff --git a/src/IconFluidBalanceOutlinedFilled.tsx b/src/IconFluidBalanceOutlinedFilled.tsx new file mode 100644 index 000000000..c36da9ecf --- /dev/null +++ b/src/IconFluidBalanceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidBalanceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidBalanceOutlinedFilled as default } diff --git a/src/IconFluidBalanceRoundedFilled.tsx b/src/IconFluidBalanceRoundedFilled.tsx new file mode 100644 index 000000000..c0ee58491 --- /dev/null +++ b/src/IconFluidBalanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidBalanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidBalanceRoundedFilled as default } diff --git a/src/IconFluidBalanceSharpFilled.tsx b/src/IconFluidBalanceSharpFilled.tsx new file mode 100644 index 000000000..709935fae --- /dev/null +++ b/src/IconFluidBalanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidBalanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidBalanceSharpFilled as default } diff --git a/src/IconFluidMedOutlinedFilled.tsx b/src/IconFluidMedOutlinedFilled.tsx new file mode 100644 index 000000000..055440108 --- /dev/null +++ b/src/IconFluidMedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidMedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidMedOutlinedFilled as default } diff --git a/src/IconFluidMedRoundedFilled.tsx b/src/IconFluidMedRoundedFilled.tsx new file mode 100644 index 000000000..91448f941 --- /dev/null +++ b/src/IconFluidMedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidMedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidMedRoundedFilled as default } diff --git a/src/IconFluidMedSharpFilled.tsx b/src/IconFluidMedSharpFilled.tsx new file mode 100644 index 000000000..068ef4bc3 --- /dev/null +++ b/src/IconFluidMedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidMedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidMedSharpFilled as default } diff --git a/src/IconFluidOutlinedFilled.tsx b/src/IconFluidOutlinedFilled.tsx new file mode 100644 index 000000000..aac531c62 --- /dev/null +++ b/src/IconFluidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidOutlinedFilled as default } diff --git a/src/IconFluidRoundedFilled.tsx b/src/IconFluidRoundedFilled.tsx new file mode 100644 index 000000000..678377e9f --- /dev/null +++ b/src/IconFluidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidRoundedFilled as default } diff --git a/src/IconFluidSharpFilled.tsx b/src/IconFluidSharpFilled.tsx new file mode 100644 index 000000000..7464bc7d8 --- /dev/null +++ b/src/IconFluidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluidSharpFilled as default } diff --git a/src/IconFluorescentOutlinedFilled.tsx b/src/IconFluorescentOutlinedFilled.tsx new file mode 100644 index 000000000..2d1305b2b --- /dev/null +++ b/src/IconFluorescentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluorescentOutlinedFilled as default } diff --git a/src/IconFluorescentRoundedFilled.tsx b/src/IconFluorescentRoundedFilled.tsx new file mode 100644 index 000000000..7fa02bc09 --- /dev/null +++ b/src/IconFluorescentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluorescentRoundedFilled as default } diff --git a/src/IconFluorescentSharpFilled.tsx b/src/IconFluorescentSharpFilled.tsx new file mode 100644 index 000000000..e0ba9c1cd --- /dev/null +++ b/src/IconFluorescentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFluorescentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFluorescentSharpFilled as default } diff --git a/src/IconFlutterDashOutlinedFilled.tsx b/src/IconFlutterDashOutlinedFilled.tsx new file mode 100644 index 000000000..d8504ab42 --- /dev/null +++ b/src/IconFlutterDashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlutterDashOutlinedFilled as default } diff --git a/src/IconFlutterDashRoundedFilled.tsx b/src/IconFlutterDashRoundedFilled.tsx new file mode 100644 index 000000000..7f7012c87 --- /dev/null +++ b/src/IconFlutterDashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlutterDashRoundedFilled as default } diff --git a/src/IconFlutterDashSharpFilled.tsx b/src/IconFlutterDashSharpFilled.tsx new file mode 100644 index 000000000..e2cda522d --- /dev/null +++ b/src/IconFlutterDashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterDashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlutterDashSharpFilled as default } diff --git a/src/IconFlutterOutlinedFilled.tsx b/src/IconFlutterOutlinedFilled.tsx new file mode 100644 index 000000000..e004f0c82 --- /dev/null +++ b/src/IconFlutterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlutterOutlinedFilled as default } diff --git a/src/IconFlutterRoundedFilled.tsx b/src/IconFlutterRoundedFilled.tsx new file mode 100644 index 000000000..bd18e2129 --- /dev/null +++ b/src/IconFlutterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlutterRoundedFilled as default } diff --git a/src/IconFlutterSharpFilled.tsx b/src/IconFlutterSharpFilled.tsx new file mode 100644 index 000000000..c2b6bf9a0 --- /dev/null +++ b/src/IconFlutterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlutterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlutterSharpFilled as default } diff --git a/src/IconFlyoverOutlinedFilled.tsx b/src/IconFlyoverOutlinedFilled.tsx new file mode 100644 index 000000000..8fefb2dd3 --- /dev/null +++ b/src/IconFlyoverOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlyoverOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlyoverOutlinedFilled as default } diff --git a/src/IconFlyoverRoundedFilled.tsx b/src/IconFlyoverRoundedFilled.tsx new file mode 100644 index 000000000..3fcc3e286 --- /dev/null +++ b/src/IconFlyoverRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlyoverRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlyoverRoundedFilled as default } diff --git a/src/IconFlyoverSharpFilled.tsx b/src/IconFlyoverSharpFilled.tsx new file mode 100644 index 000000000..c29394109 --- /dev/null +++ b/src/IconFlyoverSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFlyoverSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFlyoverSharpFilled as default } diff --git a/src/IconFmdBadOutlinedFilled.tsx b/src/IconFmdBadOutlinedFilled.tsx new file mode 100644 index 000000000..4baa0e7b3 --- /dev/null +++ b/src/IconFmdBadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFmdBadOutlinedFilled as default } diff --git a/src/IconFmdBadRoundedFilled.tsx b/src/IconFmdBadRoundedFilled.tsx new file mode 100644 index 000000000..696c752e9 --- /dev/null +++ b/src/IconFmdBadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFmdBadRoundedFilled as default } diff --git a/src/IconFmdBadSharpFilled.tsx b/src/IconFmdBadSharpFilled.tsx new file mode 100644 index 000000000..2e8687870 --- /dev/null +++ b/src/IconFmdBadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFmdBadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFmdBadSharpFilled as default } diff --git a/src/IconFoggyOutlinedFilled.tsx b/src/IconFoggyOutlinedFilled.tsx new file mode 100644 index 000000000..341b730b1 --- /dev/null +++ b/src/IconFoggyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoggyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoggyOutlinedFilled as default } diff --git a/src/IconFoggyRoundedFilled.tsx b/src/IconFoggyRoundedFilled.tsx new file mode 100644 index 000000000..be08a7362 --- /dev/null +++ b/src/IconFoggyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoggyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoggyRoundedFilled as default } diff --git a/src/IconFoggySharpFilled.tsx b/src/IconFoggySharpFilled.tsx new file mode 100644 index 000000000..003145e9f --- /dev/null +++ b/src/IconFoggySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoggySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoggySharpFilled as default } diff --git a/src/IconFoldedHandsOutlinedFilled.tsx b/src/IconFoldedHandsOutlinedFilled.tsx new file mode 100644 index 000000000..8a2c0b3ce --- /dev/null +++ b/src/IconFoldedHandsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoldedHandsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoldedHandsOutlinedFilled as default } diff --git a/src/IconFoldedHandsRoundedFilled.tsx b/src/IconFoldedHandsRoundedFilled.tsx new file mode 100644 index 000000000..1d203cf0e --- /dev/null +++ b/src/IconFoldedHandsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoldedHandsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoldedHandsRoundedFilled as default } diff --git a/src/IconFoldedHandsSharpFilled.tsx b/src/IconFoldedHandsSharpFilled.tsx new file mode 100644 index 000000000..2872736cc --- /dev/null +++ b/src/IconFoldedHandsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoldedHandsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoldedHandsSharpFilled as default } diff --git a/src/IconFolderCopyOutlinedFilled.tsx b/src/IconFolderCopyOutlinedFilled.tsx new file mode 100644 index 000000000..cb32fac4c --- /dev/null +++ b/src/IconFolderCopyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderCopyOutlinedFilled as default } diff --git a/src/IconFolderCopyRoundedFilled.tsx b/src/IconFolderCopyRoundedFilled.tsx new file mode 100644 index 000000000..7dc984e84 --- /dev/null +++ b/src/IconFolderCopyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderCopyRoundedFilled as default } diff --git a/src/IconFolderCopySharpFilled.tsx b/src/IconFolderCopySharpFilled.tsx new file mode 100644 index 000000000..0cda26400 --- /dev/null +++ b/src/IconFolderCopySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderCopySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderCopySharpFilled as default } diff --git a/src/IconFolderDataOutlinedFilled.tsx b/src/IconFolderDataOutlinedFilled.tsx new file mode 100644 index 000000000..7176fa6a5 --- /dev/null +++ b/src/IconFolderDataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderDataOutlinedFilled as default } diff --git a/src/IconFolderDataRoundedFilled.tsx b/src/IconFolderDataRoundedFilled.tsx new file mode 100644 index 000000000..f396c1009 --- /dev/null +++ b/src/IconFolderDataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderDataRoundedFilled as default } diff --git a/src/IconFolderDataSharpFilled.tsx b/src/IconFolderDataSharpFilled.tsx new file mode 100644 index 000000000..d3bd550a0 --- /dev/null +++ b/src/IconFolderDataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderDataSharpFilled as default } diff --git a/src/IconFolderDeleteOutlinedFilled.tsx b/src/IconFolderDeleteOutlinedFilled.tsx new file mode 100644 index 000000000..ed5e6264d --- /dev/null +++ b/src/IconFolderDeleteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderDeleteOutlinedFilled as default } diff --git a/src/IconFolderDeleteRoundedFilled.tsx b/src/IconFolderDeleteRoundedFilled.tsx new file mode 100644 index 000000000..911f402ef --- /dev/null +++ b/src/IconFolderDeleteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderDeleteRoundedFilled as default } diff --git a/src/IconFolderDeleteSharpFilled.tsx b/src/IconFolderDeleteSharpFilled.tsx new file mode 100644 index 000000000..9a17e4169 --- /dev/null +++ b/src/IconFolderDeleteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderDeleteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderDeleteSharpFilled as default } diff --git a/src/IconFolderLimitedOutlinedFilled.tsx b/src/IconFolderLimitedOutlinedFilled.tsx new file mode 100644 index 000000000..178d8bcf4 --- /dev/null +++ b/src/IconFolderLimitedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderLimitedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderLimitedOutlinedFilled as default } diff --git a/src/IconFolderLimitedRoundedFilled.tsx b/src/IconFolderLimitedRoundedFilled.tsx new file mode 100644 index 000000000..1455af04b --- /dev/null +++ b/src/IconFolderLimitedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderLimitedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderLimitedRoundedFilled as default } diff --git a/src/IconFolderLimitedSharpFilled.tsx b/src/IconFolderLimitedSharpFilled.tsx new file mode 100644 index 000000000..f83a138cc --- /dev/null +++ b/src/IconFolderLimitedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderLimitedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderLimitedSharpFilled as default } diff --git a/src/IconFolderManagedOutlinedFilled.tsx b/src/IconFolderManagedOutlinedFilled.tsx new file mode 100644 index 000000000..a5d772580 --- /dev/null +++ b/src/IconFolderManagedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderManagedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderManagedOutlinedFilled as default } diff --git a/src/IconFolderManagedRoundedFilled.tsx b/src/IconFolderManagedRoundedFilled.tsx new file mode 100644 index 000000000..0eac889b8 --- /dev/null +++ b/src/IconFolderManagedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderManagedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderManagedRoundedFilled as default } diff --git a/src/IconFolderManagedSharpFilled.tsx b/src/IconFolderManagedSharpFilled.tsx new file mode 100644 index 000000000..63f7656e6 --- /dev/null +++ b/src/IconFolderManagedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderManagedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderManagedSharpFilled as default } diff --git a/src/IconFolderOffOutlinedFilled.tsx b/src/IconFolderOffOutlinedFilled.tsx new file mode 100644 index 000000000..664ac3ebb --- /dev/null +++ b/src/IconFolderOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOffOutlinedFilled as default } diff --git a/src/IconFolderOffRoundedFilled.tsx b/src/IconFolderOffRoundedFilled.tsx new file mode 100644 index 000000000..dc915c253 --- /dev/null +++ b/src/IconFolderOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOffRoundedFilled as default } diff --git a/src/IconFolderOffSharpFilled.tsx b/src/IconFolderOffSharpFilled.tsx new file mode 100644 index 000000000..de3479c27 --- /dev/null +++ b/src/IconFolderOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOffSharpFilled as default } diff --git a/src/IconFolderOpenOutlinedFilled.tsx b/src/IconFolderOpenOutlinedFilled.tsx new file mode 100644 index 000000000..374202986 --- /dev/null +++ b/src/IconFolderOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOpenOutlinedFilled as default } diff --git a/src/IconFolderOpenRoundedFilled.tsx b/src/IconFolderOpenRoundedFilled.tsx new file mode 100644 index 000000000..4f8540b00 --- /dev/null +++ b/src/IconFolderOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOpenRoundedFilled as default } diff --git a/src/IconFolderOpenSharpFilled.tsx b/src/IconFolderOpenSharpFilled.tsx new file mode 100644 index 000000000..6f37c76b4 --- /dev/null +++ b/src/IconFolderOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOpenSharpFilled as default } diff --git a/src/IconFolderOutlinedFilled.tsx b/src/IconFolderOutlinedFilled.tsx new file mode 100644 index 000000000..317922748 --- /dev/null +++ b/src/IconFolderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderOutlinedFilled as default } diff --git a/src/IconFolderRoundedFilled.tsx b/src/IconFolderRoundedFilled.tsx new file mode 100644 index 000000000..04c067ce7 --- /dev/null +++ b/src/IconFolderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderRoundedFilled as default } diff --git a/src/IconFolderSharedOutlinedFilled.tsx b/src/IconFolderSharedOutlinedFilled.tsx new file mode 100644 index 000000000..118feeb56 --- /dev/null +++ b/src/IconFolderSharedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSharedOutlinedFilled as default } diff --git a/src/IconFolderSharedRoundedFilled.tsx b/src/IconFolderSharedRoundedFilled.tsx new file mode 100644 index 000000000..a27878ffb --- /dev/null +++ b/src/IconFolderSharedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSharedRoundedFilled as default } diff --git a/src/IconFolderSharedSharpFilled.tsx b/src/IconFolderSharedSharpFilled.tsx new file mode 100644 index 000000000..74a305ab3 --- /dev/null +++ b/src/IconFolderSharedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSharedSharpFilled as default } diff --git a/src/IconFolderSharpFilled.tsx b/src/IconFolderSharpFilled.tsx new file mode 100644 index 000000000..8f867ed85 --- /dev/null +++ b/src/IconFolderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSharpFilled as default } diff --git a/src/IconFolderSpecialOutlinedFilled.tsx b/src/IconFolderSpecialOutlinedFilled.tsx new file mode 100644 index 000000000..68b75d223 --- /dev/null +++ b/src/IconFolderSpecialOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSpecialOutlinedFilled as default } diff --git a/src/IconFolderSpecialRoundedFilled.tsx b/src/IconFolderSpecialRoundedFilled.tsx new file mode 100644 index 000000000..5379b016a --- /dev/null +++ b/src/IconFolderSpecialRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSpecialRoundedFilled as default } diff --git a/src/IconFolderSpecialSharpFilled.tsx b/src/IconFolderSpecialSharpFilled.tsx new file mode 100644 index 000000000..92779afb4 --- /dev/null +++ b/src/IconFolderSpecialSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSpecialSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSpecialSharpFilled as default } diff --git a/src/IconFolderSupervisedOutlinedFilled.tsx b/src/IconFolderSupervisedOutlinedFilled.tsx new file mode 100644 index 000000000..39ea2eb5f --- /dev/null +++ b/src/IconFolderSupervisedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSupervisedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSupervisedOutlinedFilled as default } diff --git a/src/IconFolderSupervisedRoundedFilled.tsx b/src/IconFolderSupervisedRoundedFilled.tsx new file mode 100644 index 000000000..7f3d196e1 --- /dev/null +++ b/src/IconFolderSupervisedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSupervisedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSupervisedRoundedFilled as default } diff --git a/src/IconFolderSupervisedSharpFilled.tsx b/src/IconFolderSupervisedSharpFilled.tsx new file mode 100644 index 000000000..dab9d0548 --- /dev/null +++ b/src/IconFolderSupervisedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderSupervisedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderSupervisedSharpFilled as default } diff --git a/src/IconFolderZipOutlinedFilled.tsx b/src/IconFolderZipOutlinedFilled.tsx new file mode 100644 index 000000000..33aa9df67 --- /dev/null +++ b/src/IconFolderZipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderZipOutlinedFilled as default } diff --git a/src/IconFolderZipRoundedFilled.tsx b/src/IconFolderZipRoundedFilled.tsx new file mode 100644 index 000000000..288dbea21 --- /dev/null +++ b/src/IconFolderZipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderZipRoundedFilled as default } diff --git a/src/IconFolderZipSharpFilled.tsx b/src/IconFolderZipSharpFilled.tsx new file mode 100644 index 000000000..f3bd5a8e2 --- /dev/null +++ b/src/IconFolderZipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFolderZipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFolderZipSharpFilled as default } diff --git a/src/IconFollowTheSignsOutlinedFilled.tsx b/src/IconFollowTheSignsOutlinedFilled.tsx new file mode 100644 index 000000000..5eec96aaa --- /dev/null +++ b/src/IconFollowTheSignsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFollowTheSignsOutlinedFilled as default } diff --git a/src/IconFollowTheSignsRoundedFilled.tsx b/src/IconFollowTheSignsRoundedFilled.tsx new file mode 100644 index 000000000..0b5c6dc6a --- /dev/null +++ b/src/IconFollowTheSignsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFollowTheSignsRoundedFilled as default } diff --git a/src/IconFollowTheSignsSharpFilled.tsx b/src/IconFollowTheSignsSharpFilled.tsx new file mode 100644 index 000000000..dda69f815 --- /dev/null +++ b/src/IconFollowTheSignsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFollowTheSignsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFollowTheSignsSharpFilled as default } diff --git a/src/IconFontDownloadOffOutlinedFilled.tsx b/src/IconFontDownloadOffOutlinedFilled.tsx new file mode 100644 index 000000000..530b10ac2 --- /dev/null +++ b/src/IconFontDownloadOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFontDownloadOffOutlinedFilled as default } diff --git a/src/IconFontDownloadOffRoundedFilled.tsx b/src/IconFontDownloadOffRoundedFilled.tsx new file mode 100644 index 000000000..9be7a8140 --- /dev/null +++ b/src/IconFontDownloadOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFontDownloadOffRoundedFilled as default } diff --git a/src/IconFontDownloadOffSharpFilled.tsx b/src/IconFontDownloadOffSharpFilled.tsx new file mode 100644 index 000000000..5468b087f --- /dev/null +++ b/src/IconFontDownloadOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFontDownloadOffSharpFilled as default } diff --git a/src/IconFontDownloadOutlinedFilled.tsx b/src/IconFontDownloadOutlinedFilled.tsx new file mode 100644 index 000000000..32da35c65 --- /dev/null +++ b/src/IconFontDownloadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFontDownloadOutlinedFilled as default } diff --git a/src/IconFontDownloadRoundedFilled.tsx b/src/IconFontDownloadRoundedFilled.tsx new file mode 100644 index 000000000..963274dd1 --- /dev/null +++ b/src/IconFontDownloadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFontDownloadRoundedFilled as default } diff --git a/src/IconFontDownloadSharpFilled.tsx b/src/IconFontDownloadSharpFilled.tsx new file mode 100644 index 000000000..101d9a91c --- /dev/null +++ b/src/IconFontDownloadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFontDownloadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFontDownloadSharpFilled as default } diff --git a/src/IconFoodBankOutlinedFilled.tsx b/src/IconFoodBankOutlinedFilled.tsx new file mode 100644 index 000000000..eb124b2d9 --- /dev/null +++ b/src/IconFoodBankOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoodBankOutlinedFilled as default } diff --git a/src/IconFoodBankRoundedFilled.tsx b/src/IconFoodBankRoundedFilled.tsx new file mode 100644 index 000000000..0d29817e3 --- /dev/null +++ b/src/IconFoodBankRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoodBankRoundedFilled as default } diff --git a/src/IconFoodBankSharpFilled.tsx b/src/IconFoodBankSharpFilled.tsx new file mode 100644 index 000000000..087473dd1 --- /dev/null +++ b/src/IconFoodBankSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoodBankSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoodBankSharpFilled as default } diff --git a/src/IconFootBonesOutlinedFilled.tsx b/src/IconFootBonesOutlinedFilled.tsx new file mode 100644 index 000000000..d470d7d0c --- /dev/null +++ b/src/IconFootBonesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFootBonesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFootBonesOutlinedFilled as default } diff --git a/src/IconFootBonesRoundedFilled.tsx b/src/IconFootBonesRoundedFilled.tsx new file mode 100644 index 000000000..8f707ca4c --- /dev/null +++ b/src/IconFootBonesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFootBonesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFootBonesRoundedFilled as default } diff --git a/src/IconFootBonesSharpFilled.tsx b/src/IconFootBonesSharpFilled.tsx new file mode 100644 index 000000000..1501c3113 --- /dev/null +++ b/src/IconFootBonesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFootBonesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFootBonesSharpFilled as default } diff --git a/src/IconFootprintOutlinedFilled.tsx b/src/IconFootprintOutlinedFilled.tsx new file mode 100644 index 000000000..d3fcfa8d3 --- /dev/null +++ b/src/IconFootprintOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFootprintOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFootprintOutlinedFilled as default } diff --git a/src/IconFootprintRoundedFilled.tsx b/src/IconFootprintRoundedFilled.tsx new file mode 100644 index 000000000..dca724dbc --- /dev/null +++ b/src/IconFootprintRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFootprintRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFootprintRoundedFilled as default } diff --git a/src/IconFootprintSharpFilled.tsx b/src/IconFootprintSharpFilled.tsx new file mode 100644 index 000000000..68c7f1655 --- /dev/null +++ b/src/IconFootprintSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFootprintSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFootprintSharpFilled as default } diff --git a/src/IconForYouOutlinedFilled.tsx b/src/IconForYouOutlinedFilled.tsx new file mode 100644 index 000000000..fe75d708c --- /dev/null +++ b/src/IconForYouOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForYouOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForYouOutlinedFilled as default } diff --git a/src/IconForYouRoundedFilled.tsx b/src/IconForYouRoundedFilled.tsx new file mode 100644 index 000000000..47a34a04b --- /dev/null +++ b/src/IconForYouRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForYouRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForYouRoundedFilled as default } diff --git a/src/IconForYouSharpFilled.tsx b/src/IconForYouSharpFilled.tsx new file mode 100644 index 000000000..dc43be4a5 --- /dev/null +++ b/src/IconForYouSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForYouSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForYouSharpFilled as default } diff --git a/src/IconForestOutlinedFilled.tsx b/src/IconForestOutlinedFilled.tsx new file mode 100644 index 000000000..6a8c51da9 --- /dev/null +++ b/src/IconForestOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForestOutlinedFilled as default } diff --git a/src/IconForestRoundedFilled.tsx b/src/IconForestRoundedFilled.tsx new file mode 100644 index 000000000..712778b7c --- /dev/null +++ b/src/IconForestRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForestRoundedFilled as default } diff --git a/src/IconForestSharpFilled.tsx b/src/IconForestSharpFilled.tsx new file mode 100644 index 000000000..e9166d594 --- /dev/null +++ b/src/IconForestSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForestSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForestSharpFilled as default } diff --git a/src/IconForkLeftOutlinedFilled.tsx b/src/IconForkLeftOutlinedFilled.tsx new file mode 100644 index 000000000..4746bcbf8 --- /dev/null +++ b/src/IconForkLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkLeftOutlinedFilled as default } diff --git a/src/IconForkLeftRoundedFilled.tsx b/src/IconForkLeftRoundedFilled.tsx new file mode 100644 index 000000000..d0dd6a8b5 --- /dev/null +++ b/src/IconForkLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkLeftRoundedFilled as default } diff --git a/src/IconForkLeftSharpFilled.tsx b/src/IconForkLeftSharpFilled.tsx new file mode 100644 index 000000000..a2d7b98d4 --- /dev/null +++ b/src/IconForkLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkLeftSharpFilled as default } diff --git a/src/IconForkRightOutlinedFilled.tsx b/src/IconForkRightOutlinedFilled.tsx new file mode 100644 index 000000000..84285afb8 --- /dev/null +++ b/src/IconForkRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkRightOutlinedFilled as default } diff --git a/src/IconForkRightRoundedFilled.tsx b/src/IconForkRightRoundedFilled.tsx new file mode 100644 index 000000000..577f43066 --- /dev/null +++ b/src/IconForkRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkRightRoundedFilled as default } diff --git a/src/IconForkRightSharpFilled.tsx b/src/IconForkRightSharpFilled.tsx new file mode 100644 index 000000000..e7ff8cb0c --- /dev/null +++ b/src/IconForkRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkRightSharpFilled as default } diff --git a/src/IconForkliftOutlinedFilled.tsx b/src/IconForkliftOutlinedFilled.tsx new file mode 100644 index 000000000..ebc307392 --- /dev/null +++ b/src/IconForkliftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkliftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkliftOutlinedFilled as default } diff --git a/src/IconForkliftRoundedFilled.tsx b/src/IconForkliftRoundedFilled.tsx new file mode 100644 index 000000000..4a695ef48 --- /dev/null +++ b/src/IconForkliftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkliftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkliftRoundedFilled as default } diff --git a/src/IconForkliftSharpFilled.tsx b/src/IconForkliftSharpFilled.tsx new file mode 100644 index 000000000..bc73d3d45 --- /dev/null +++ b/src/IconForkliftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForkliftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForkliftSharpFilled as default } diff --git a/src/IconFormatAlignCenterOutlinedFilled.tsx b/src/IconFormatAlignCenterOutlinedFilled.tsx new file mode 100644 index 000000000..bbb239d65 --- /dev/null +++ b/src/IconFormatAlignCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignCenterOutlinedFilled as default } diff --git a/src/IconFormatAlignCenterRoundedFilled.tsx b/src/IconFormatAlignCenterRoundedFilled.tsx new file mode 100644 index 000000000..d22df4807 --- /dev/null +++ b/src/IconFormatAlignCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignCenterRoundedFilled as default } diff --git a/src/IconFormatAlignCenterSharpFilled.tsx b/src/IconFormatAlignCenterSharpFilled.tsx new file mode 100644 index 000000000..6eea84abe --- /dev/null +++ b/src/IconFormatAlignCenterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignCenterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignCenterSharpFilled as default } diff --git a/src/IconFormatAlignJustifyOutlinedFilled.tsx b/src/IconFormatAlignJustifyOutlinedFilled.tsx new file mode 100644 index 000000000..1287bda12 --- /dev/null +++ b/src/IconFormatAlignJustifyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignJustifyOutlinedFilled as default } diff --git a/src/IconFormatAlignJustifyRoundedFilled.tsx b/src/IconFormatAlignJustifyRoundedFilled.tsx new file mode 100644 index 000000000..f5cf2cf1c --- /dev/null +++ b/src/IconFormatAlignJustifyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignJustifyRoundedFilled as default } diff --git a/src/IconFormatAlignJustifySharpFilled.tsx b/src/IconFormatAlignJustifySharpFilled.tsx new file mode 100644 index 000000000..57d08ac74 --- /dev/null +++ b/src/IconFormatAlignJustifySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignJustifySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignJustifySharpFilled as default } diff --git a/src/IconFormatAlignLeftOutlinedFilled.tsx b/src/IconFormatAlignLeftOutlinedFilled.tsx new file mode 100644 index 000000000..0e94f4256 --- /dev/null +++ b/src/IconFormatAlignLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignLeftOutlinedFilled as default } diff --git a/src/IconFormatAlignLeftRoundedFilled.tsx b/src/IconFormatAlignLeftRoundedFilled.tsx new file mode 100644 index 000000000..49f561505 --- /dev/null +++ b/src/IconFormatAlignLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignLeftRoundedFilled as default } diff --git a/src/IconFormatAlignLeftSharpFilled.tsx b/src/IconFormatAlignLeftSharpFilled.tsx new file mode 100644 index 000000000..a1acdb119 --- /dev/null +++ b/src/IconFormatAlignLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignLeftSharpFilled as default } diff --git a/src/IconFormatAlignRightOutlinedFilled.tsx b/src/IconFormatAlignRightOutlinedFilled.tsx new file mode 100644 index 000000000..0925452e3 --- /dev/null +++ b/src/IconFormatAlignRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignRightOutlinedFilled as default } diff --git a/src/IconFormatAlignRightRoundedFilled.tsx b/src/IconFormatAlignRightRoundedFilled.tsx new file mode 100644 index 000000000..a67a84751 --- /dev/null +++ b/src/IconFormatAlignRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignRightRoundedFilled as default } diff --git a/src/IconFormatAlignRightSharpFilled.tsx b/src/IconFormatAlignRightSharpFilled.tsx new file mode 100644 index 000000000..d93f39588 --- /dev/null +++ b/src/IconFormatAlignRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatAlignRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatAlignRightSharpFilled as default } diff --git a/src/IconFormatBoldOutlinedFilled.tsx b/src/IconFormatBoldOutlinedFilled.tsx new file mode 100644 index 000000000..c256788ac --- /dev/null +++ b/src/IconFormatBoldOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatBoldOutlinedFilled as default } diff --git a/src/IconFormatBoldRoundedFilled.tsx b/src/IconFormatBoldRoundedFilled.tsx new file mode 100644 index 000000000..1babdb745 --- /dev/null +++ b/src/IconFormatBoldRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatBoldRoundedFilled as default } diff --git a/src/IconFormatBoldSharpFilled.tsx b/src/IconFormatBoldSharpFilled.tsx new file mode 100644 index 000000000..c094166cc --- /dev/null +++ b/src/IconFormatBoldSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatBoldSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatBoldSharpFilled as default } diff --git a/src/IconFormatClearOutlinedFilled.tsx b/src/IconFormatClearOutlinedFilled.tsx new file mode 100644 index 000000000..f47130e93 --- /dev/null +++ b/src/IconFormatClearOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatClearOutlinedFilled as default } diff --git a/src/IconFormatClearRoundedFilled.tsx b/src/IconFormatClearRoundedFilled.tsx new file mode 100644 index 000000000..70554faf2 --- /dev/null +++ b/src/IconFormatClearRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatClearRoundedFilled as default } diff --git a/src/IconFormatClearSharpFilled.tsx b/src/IconFormatClearSharpFilled.tsx new file mode 100644 index 000000000..dfe67c6be --- /dev/null +++ b/src/IconFormatClearSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatClearSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatClearSharpFilled as default } diff --git a/src/IconFormatColorFillOutlinedFilled.tsx b/src/IconFormatColorFillOutlinedFilled.tsx new file mode 100644 index 000000000..9d16fd80b --- /dev/null +++ b/src/IconFormatColorFillOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorFillOutlinedFilled as default } diff --git a/src/IconFormatColorFillRoundedFilled.tsx b/src/IconFormatColorFillRoundedFilled.tsx new file mode 100644 index 000000000..dd1d006f1 --- /dev/null +++ b/src/IconFormatColorFillRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorFillRoundedFilled as default } diff --git a/src/IconFormatColorFillSharpFilled.tsx b/src/IconFormatColorFillSharpFilled.tsx new file mode 100644 index 000000000..0a282d09e --- /dev/null +++ b/src/IconFormatColorFillSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorFillSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorFillSharpFilled as default } diff --git a/src/IconFormatColorResetOutlinedFilled.tsx b/src/IconFormatColorResetOutlinedFilled.tsx new file mode 100644 index 000000000..19fbb1cbf --- /dev/null +++ b/src/IconFormatColorResetOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorResetOutlinedFilled as default } diff --git a/src/IconFormatColorResetRoundedFilled.tsx b/src/IconFormatColorResetRoundedFilled.tsx new file mode 100644 index 000000000..0211a4743 --- /dev/null +++ b/src/IconFormatColorResetRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorResetRoundedFilled as default } diff --git a/src/IconFormatColorResetSharpFilled.tsx b/src/IconFormatColorResetSharpFilled.tsx new file mode 100644 index 000000000..dc431219c --- /dev/null +++ b/src/IconFormatColorResetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorResetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorResetSharpFilled as default } diff --git a/src/IconFormatColorTextOutlinedFilled.tsx b/src/IconFormatColorTextOutlinedFilled.tsx new file mode 100644 index 000000000..61249e9ae --- /dev/null +++ b/src/IconFormatColorTextOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorTextOutlinedFilled as default } diff --git a/src/IconFormatColorTextRoundedFilled.tsx b/src/IconFormatColorTextRoundedFilled.tsx new file mode 100644 index 000000000..2f412ddbe --- /dev/null +++ b/src/IconFormatColorTextRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorTextRoundedFilled as default } diff --git a/src/IconFormatColorTextSharpFilled.tsx b/src/IconFormatColorTextSharpFilled.tsx new file mode 100644 index 000000000..76955aefc --- /dev/null +++ b/src/IconFormatColorTextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatColorTextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatColorTextSharpFilled as default } diff --git a/src/IconFormatH1OutlinedFilled.tsx b/src/IconFormatH1OutlinedFilled.tsx new file mode 100644 index 000000000..4c04496ee --- /dev/null +++ b/src/IconFormatH1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH1OutlinedFilled as default } diff --git a/src/IconFormatH1RoundedFilled.tsx b/src/IconFormatH1RoundedFilled.tsx new file mode 100644 index 000000000..abd30ec1a --- /dev/null +++ b/src/IconFormatH1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH1RoundedFilled as default } diff --git a/src/IconFormatH1SharpFilled.tsx b/src/IconFormatH1SharpFilled.tsx new file mode 100644 index 000000000..3f2a6060d --- /dev/null +++ b/src/IconFormatH1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH1SharpFilled as default } diff --git a/src/IconFormatH2OutlinedFilled.tsx b/src/IconFormatH2OutlinedFilled.tsx new file mode 100644 index 000000000..4bcbfb911 --- /dev/null +++ b/src/IconFormatH2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH2OutlinedFilled as default } diff --git a/src/IconFormatH2RoundedFilled.tsx b/src/IconFormatH2RoundedFilled.tsx new file mode 100644 index 000000000..5e8d871f6 --- /dev/null +++ b/src/IconFormatH2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH2RoundedFilled as default } diff --git a/src/IconFormatH2SharpFilled.tsx b/src/IconFormatH2SharpFilled.tsx new file mode 100644 index 000000000..a449be72e --- /dev/null +++ b/src/IconFormatH2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH2SharpFilled as default } diff --git a/src/IconFormatH3OutlinedFilled.tsx b/src/IconFormatH3OutlinedFilled.tsx new file mode 100644 index 000000000..3d1ed1818 --- /dev/null +++ b/src/IconFormatH3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH3OutlinedFilled as default } diff --git a/src/IconFormatH3RoundedFilled.tsx b/src/IconFormatH3RoundedFilled.tsx new file mode 100644 index 000000000..f61bf92f9 --- /dev/null +++ b/src/IconFormatH3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH3RoundedFilled as default } diff --git a/src/IconFormatH3SharpFilled.tsx b/src/IconFormatH3SharpFilled.tsx new file mode 100644 index 000000000..82ae72734 --- /dev/null +++ b/src/IconFormatH3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH3SharpFilled as default } diff --git a/src/IconFormatH4OutlinedFilled.tsx b/src/IconFormatH4OutlinedFilled.tsx new file mode 100644 index 000000000..7f3ac8307 --- /dev/null +++ b/src/IconFormatH4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH4OutlinedFilled as default } diff --git a/src/IconFormatH4RoundedFilled.tsx b/src/IconFormatH4RoundedFilled.tsx new file mode 100644 index 000000000..52ec46b0a --- /dev/null +++ b/src/IconFormatH4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH4RoundedFilled as default } diff --git a/src/IconFormatH4SharpFilled.tsx b/src/IconFormatH4SharpFilled.tsx new file mode 100644 index 000000000..fa4ff9816 --- /dev/null +++ b/src/IconFormatH4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH4SharpFilled as default } diff --git a/src/IconFormatH5OutlinedFilled.tsx b/src/IconFormatH5OutlinedFilled.tsx new file mode 100644 index 000000000..0c80d5a12 --- /dev/null +++ b/src/IconFormatH5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH5OutlinedFilled as default } diff --git a/src/IconFormatH5RoundedFilled.tsx b/src/IconFormatH5RoundedFilled.tsx new file mode 100644 index 000000000..d3362500c --- /dev/null +++ b/src/IconFormatH5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH5RoundedFilled as default } diff --git a/src/IconFormatH5SharpFilled.tsx b/src/IconFormatH5SharpFilled.tsx new file mode 100644 index 000000000..b2a48bc47 --- /dev/null +++ b/src/IconFormatH5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH5SharpFilled as default } diff --git a/src/IconFormatH6OutlinedFilled.tsx b/src/IconFormatH6OutlinedFilled.tsx new file mode 100644 index 000000000..06cd81672 --- /dev/null +++ b/src/IconFormatH6OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH6OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH6OutlinedFilled as default } diff --git a/src/IconFormatH6RoundedFilled.tsx b/src/IconFormatH6RoundedFilled.tsx new file mode 100644 index 000000000..0858c895b --- /dev/null +++ b/src/IconFormatH6RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH6RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH6RoundedFilled as default } diff --git a/src/IconFormatH6SharpFilled.tsx b/src/IconFormatH6SharpFilled.tsx new file mode 100644 index 000000000..fcc6a5fb3 --- /dev/null +++ b/src/IconFormatH6SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatH6SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatH6SharpFilled as default } diff --git a/src/IconFormatImageLeftOutlinedFilled.tsx b/src/IconFormatImageLeftOutlinedFilled.tsx new file mode 100644 index 000000000..87f25614c --- /dev/null +++ b/src/IconFormatImageLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatImageLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatImageLeftOutlinedFilled as default } diff --git a/src/IconFormatImageLeftRoundedFilled.tsx b/src/IconFormatImageLeftRoundedFilled.tsx new file mode 100644 index 000000000..5eb08cbc8 --- /dev/null +++ b/src/IconFormatImageLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatImageLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatImageLeftRoundedFilled as default } diff --git a/src/IconFormatImageLeftSharpFilled.tsx b/src/IconFormatImageLeftSharpFilled.tsx new file mode 100644 index 000000000..1279a0ea9 --- /dev/null +++ b/src/IconFormatImageLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatImageLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatImageLeftSharpFilled as default } diff --git a/src/IconFormatImageRightOutlinedFilled.tsx b/src/IconFormatImageRightOutlinedFilled.tsx new file mode 100644 index 000000000..104a871e5 --- /dev/null +++ b/src/IconFormatImageRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatImageRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatImageRightOutlinedFilled as default } diff --git a/src/IconFormatImageRightRoundedFilled.tsx b/src/IconFormatImageRightRoundedFilled.tsx new file mode 100644 index 000000000..37a4ad8d4 --- /dev/null +++ b/src/IconFormatImageRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatImageRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatImageRightRoundedFilled as default } diff --git a/src/IconFormatImageRightSharpFilled.tsx b/src/IconFormatImageRightSharpFilled.tsx new file mode 100644 index 000000000..2958f8e9d --- /dev/null +++ b/src/IconFormatImageRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatImageRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatImageRightSharpFilled as default } diff --git a/src/IconFormatIndentDecreaseOutlinedFilled.tsx b/src/IconFormatIndentDecreaseOutlinedFilled.tsx new file mode 100644 index 000000000..956eeffd7 --- /dev/null +++ b/src/IconFormatIndentDecreaseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentDecreaseOutlinedFilled as default } diff --git a/src/IconFormatIndentDecreaseRoundedFilled.tsx b/src/IconFormatIndentDecreaseRoundedFilled.tsx new file mode 100644 index 000000000..6df462811 --- /dev/null +++ b/src/IconFormatIndentDecreaseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentDecreaseRoundedFilled as default } diff --git a/src/IconFormatIndentDecreaseSharpFilled.tsx b/src/IconFormatIndentDecreaseSharpFilled.tsx new file mode 100644 index 000000000..66fdbf46e --- /dev/null +++ b/src/IconFormatIndentDecreaseSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentDecreaseSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentDecreaseSharpFilled as default } diff --git a/src/IconFormatIndentIncreaseOutlinedFilled.tsx b/src/IconFormatIndentIncreaseOutlinedFilled.tsx new file mode 100644 index 000000000..a58f76095 --- /dev/null +++ b/src/IconFormatIndentIncreaseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentIncreaseOutlinedFilled as default } diff --git a/src/IconFormatIndentIncreaseRoundedFilled.tsx b/src/IconFormatIndentIncreaseRoundedFilled.tsx new file mode 100644 index 000000000..47dab7cd9 --- /dev/null +++ b/src/IconFormatIndentIncreaseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentIncreaseRoundedFilled as default } diff --git a/src/IconFormatIndentIncreaseSharpFilled.tsx b/src/IconFormatIndentIncreaseSharpFilled.tsx new file mode 100644 index 000000000..cd7ffc20f --- /dev/null +++ b/src/IconFormatIndentIncreaseSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatIndentIncreaseSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatIndentIncreaseSharpFilled as default } diff --git a/src/IconFormatInkHighlighterOutlinedFilled.tsx b/src/IconFormatInkHighlighterOutlinedFilled.tsx new file mode 100644 index 000000000..586274184 --- /dev/null +++ b/src/IconFormatInkHighlighterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatInkHighlighterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatInkHighlighterOutlinedFilled as default } diff --git a/src/IconFormatInkHighlighterRoundedFilled.tsx b/src/IconFormatInkHighlighterRoundedFilled.tsx new file mode 100644 index 000000000..d096c845a --- /dev/null +++ b/src/IconFormatInkHighlighterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatInkHighlighterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatInkHighlighterRoundedFilled as default } diff --git a/src/IconFormatInkHighlighterSharpFilled.tsx b/src/IconFormatInkHighlighterSharpFilled.tsx new file mode 100644 index 000000000..645560c39 --- /dev/null +++ b/src/IconFormatInkHighlighterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatInkHighlighterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatInkHighlighterSharpFilled as default } diff --git a/src/IconFormatItalicOutlinedFilled.tsx b/src/IconFormatItalicOutlinedFilled.tsx new file mode 100644 index 000000000..9f2a98857 --- /dev/null +++ b/src/IconFormatItalicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatItalicOutlinedFilled as default } diff --git a/src/IconFormatItalicRoundedFilled.tsx b/src/IconFormatItalicRoundedFilled.tsx new file mode 100644 index 000000000..5e7352c7f --- /dev/null +++ b/src/IconFormatItalicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatItalicRoundedFilled as default } diff --git a/src/IconFormatItalicSharpFilled.tsx b/src/IconFormatItalicSharpFilled.tsx new file mode 100644 index 000000000..8cebe0c92 --- /dev/null +++ b/src/IconFormatItalicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatItalicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatItalicSharpFilled as default } diff --git a/src/IconFormatLetterSpacing2OutlinedFilled.tsx b/src/IconFormatLetterSpacing2OutlinedFilled.tsx new file mode 100644 index 000000000..2f4d1babb --- /dev/null +++ b/src/IconFormatLetterSpacing2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacing2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacing2OutlinedFilled as default } diff --git a/src/IconFormatLetterSpacing2RoundedFilled.tsx b/src/IconFormatLetterSpacing2RoundedFilled.tsx new file mode 100644 index 000000000..2c142a657 --- /dev/null +++ b/src/IconFormatLetterSpacing2RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacing2RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacing2RoundedFilled as default } diff --git a/src/IconFormatLetterSpacing2SharpFilled.tsx b/src/IconFormatLetterSpacing2SharpFilled.tsx new file mode 100644 index 000000000..8f1259352 --- /dev/null +++ b/src/IconFormatLetterSpacing2SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacing2SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacing2SharpFilled as default } diff --git a/src/IconFormatLetterSpacingOutlinedFilled.tsx b/src/IconFormatLetterSpacingOutlinedFilled.tsx new file mode 100644 index 000000000..b2be459a7 --- /dev/null +++ b/src/IconFormatLetterSpacingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingOutlinedFilled as default } diff --git a/src/IconFormatLetterSpacingRoundedFilled.tsx b/src/IconFormatLetterSpacingRoundedFilled.tsx new file mode 100644 index 000000000..cd07bd21d --- /dev/null +++ b/src/IconFormatLetterSpacingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingRoundedFilled as default } diff --git a/src/IconFormatLetterSpacingSharpFilled.tsx b/src/IconFormatLetterSpacingSharpFilled.tsx new file mode 100644 index 000000000..e1ee3e0b2 --- /dev/null +++ b/src/IconFormatLetterSpacingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingSharpFilled as default } diff --git a/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx b/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx new file mode 100644 index 000000000..88f334112 --- /dev/null +++ b/src/IconFormatLetterSpacingStandardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingStandardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingStandardOutlinedFilled as default } diff --git a/src/IconFormatLetterSpacingStandardRoundedFilled.tsx b/src/IconFormatLetterSpacingStandardRoundedFilled.tsx new file mode 100644 index 000000000..76d8adb84 --- /dev/null +++ b/src/IconFormatLetterSpacingStandardRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingStandardRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingStandardRoundedFilled as default } diff --git a/src/IconFormatLetterSpacingStandardSharpFilled.tsx b/src/IconFormatLetterSpacingStandardSharpFilled.tsx new file mode 100644 index 000000000..c5cd57f3c --- /dev/null +++ b/src/IconFormatLetterSpacingStandardSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingStandardSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingStandardSharpFilled as default } diff --git a/src/IconFormatLetterSpacingWideOutlinedFilled.tsx b/src/IconFormatLetterSpacingWideOutlinedFilled.tsx new file mode 100644 index 000000000..86a9725ce --- /dev/null +++ b/src/IconFormatLetterSpacingWideOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingWideOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingWideOutlinedFilled as default } diff --git a/src/IconFormatLetterSpacingWideRoundedFilled.tsx b/src/IconFormatLetterSpacingWideRoundedFilled.tsx new file mode 100644 index 000000000..b2920fcae --- /dev/null +++ b/src/IconFormatLetterSpacingWideRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingWideRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingWideRoundedFilled as default } diff --git a/src/IconFormatLetterSpacingWideSharpFilled.tsx b/src/IconFormatLetterSpacingWideSharpFilled.tsx new file mode 100644 index 000000000..3e6505ccd --- /dev/null +++ b/src/IconFormatLetterSpacingWideSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingWideSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingWideSharpFilled as default } diff --git a/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx b/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx new file mode 100644 index 000000000..d1533a9ee --- /dev/null +++ b/src/IconFormatLetterSpacingWiderOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingWiderOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingWiderOutlinedFilled as default } diff --git a/src/IconFormatLetterSpacingWiderRoundedFilled.tsx b/src/IconFormatLetterSpacingWiderRoundedFilled.tsx new file mode 100644 index 000000000..bb628decb --- /dev/null +++ b/src/IconFormatLetterSpacingWiderRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingWiderRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingWiderRoundedFilled as default } diff --git a/src/IconFormatLetterSpacingWiderSharpFilled.tsx b/src/IconFormatLetterSpacingWiderSharpFilled.tsx new file mode 100644 index 000000000..129d629a2 --- /dev/null +++ b/src/IconFormatLetterSpacingWiderSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLetterSpacingWiderSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLetterSpacingWiderSharpFilled as default } diff --git a/src/IconFormatLineSpacingOutlinedFilled.tsx b/src/IconFormatLineSpacingOutlinedFilled.tsx new file mode 100644 index 000000000..e83896d74 --- /dev/null +++ b/src/IconFormatLineSpacingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLineSpacingOutlinedFilled as default } diff --git a/src/IconFormatLineSpacingRoundedFilled.tsx b/src/IconFormatLineSpacingRoundedFilled.tsx new file mode 100644 index 000000000..2e58fa898 --- /dev/null +++ b/src/IconFormatLineSpacingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLineSpacingRoundedFilled as default } diff --git a/src/IconFormatLineSpacingSharpFilled.tsx b/src/IconFormatLineSpacingSharpFilled.tsx new file mode 100644 index 000000000..14a1a5321 --- /dev/null +++ b/src/IconFormatLineSpacingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatLineSpacingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatLineSpacingSharpFilled as default } diff --git a/src/IconFormatListBulletedAddOutlinedFilled.tsx b/src/IconFormatListBulletedAddOutlinedFilled.tsx new file mode 100644 index 000000000..527cebf46 --- /dev/null +++ b/src/IconFormatListBulletedAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedAddOutlinedFilled as default } diff --git a/src/IconFormatListBulletedAddRoundedFilled.tsx b/src/IconFormatListBulletedAddRoundedFilled.tsx new file mode 100644 index 000000000..9dc1ef2c1 --- /dev/null +++ b/src/IconFormatListBulletedAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedAddRoundedFilled as default } diff --git a/src/IconFormatListBulletedAddSharpFilled.tsx b/src/IconFormatListBulletedAddSharpFilled.tsx new file mode 100644 index 000000000..fba47c42a --- /dev/null +++ b/src/IconFormatListBulletedAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedAddSharpFilled as default } diff --git a/src/IconFormatListBulletedOutlinedFilled.tsx b/src/IconFormatListBulletedOutlinedFilled.tsx new file mode 100644 index 000000000..786aec1bd --- /dev/null +++ b/src/IconFormatListBulletedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedOutlinedFilled as default } diff --git a/src/IconFormatListBulletedRoundedFilled.tsx b/src/IconFormatListBulletedRoundedFilled.tsx new file mode 100644 index 000000000..2ea62e99d --- /dev/null +++ b/src/IconFormatListBulletedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedRoundedFilled as default } diff --git a/src/IconFormatListBulletedSharpFilled.tsx b/src/IconFormatListBulletedSharpFilled.tsx new file mode 100644 index 000000000..2239df1e7 --- /dev/null +++ b/src/IconFormatListBulletedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListBulletedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListBulletedSharpFilled as default } diff --git a/src/IconFormatListNumberedOutlinedFilled.tsx b/src/IconFormatListNumberedOutlinedFilled.tsx new file mode 100644 index 000000000..f7f89b383 --- /dev/null +++ b/src/IconFormatListNumberedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedOutlinedFilled as default } diff --git a/src/IconFormatListNumberedRoundedFilled.tsx b/src/IconFormatListNumberedRoundedFilled.tsx new file mode 100644 index 000000000..40d5e6595 --- /dev/null +++ b/src/IconFormatListNumberedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedRoundedFilled as default } diff --git a/src/IconFormatListNumberedRtlOutlinedFilled.tsx b/src/IconFormatListNumberedRtlOutlinedFilled.tsx new file mode 100644 index 000000000..08c3a3dc4 --- /dev/null +++ b/src/IconFormatListNumberedRtlOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedRtlOutlinedFilled as default } diff --git a/src/IconFormatListNumberedRtlRoundedFilled.tsx b/src/IconFormatListNumberedRtlRoundedFilled.tsx new file mode 100644 index 000000000..32ac917a5 --- /dev/null +++ b/src/IconFormatListNumberedRtlRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedRtlRoundedFilled as default } diff --git a/src/IconFormatListNumberedRtlSharpFilled.tsx b/src/IconFormatListNumberedRtlSharpFilled.tsx new file mode 100644 index 000000000..2056dd39c --- /dev/null +++ b/src/IconFormatListNumberedRtlSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedRtlSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedRtlSharpFilled as default } diff --git a/src/IconFormatListNumberedSharpFilled.tsx b/src/IconFormatListNumberedSharpFilled.tsx new file mode 100644 index 000000000..98cdb5189 --- /dev/null +++ b/src/IconFormatListNumberedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatListNumberedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatListNumberedSharpFilled as default } diff --git a/src/IconFormatOverlineOutlinedFilled.tsx b/src/IconFormatOverlineOutlinedFilled.tsx new file mode 100644 index 000000000..313c30655 --- /dev/null +++ b/src/IconFormatOverlineOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatOverlineOutlinedFilled as default } diff --git a/src/IconFormatOverlineRoundedFilled.tsx b/src/IconFormatOverlineRoundedFilled.tsx new file mode 100644 index 000000000..12face7d3 --- /dev/null +++ b/src/IconFormatOverlineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatOverlineRoundedFilled as default } diff --git a/src/IconFormatOverlineSharpFilled.tsx b/src/IconFormatOverlineSharpFilled.tsx new file mode 100644 index 000000000..93375c271 --- /dev/null +++ b/src/IconFormatOverlineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatOverlineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatOverlineSharpFilled as default } diff --git a/src/IconFormatPaintOutlinedFilled.tsx b/src/IconFormatPaintOutlinedFilled.tsx new file mode 100644 index 000000000..c6a13b3ce --- /dev/null +++ b/src/IconFormatPaintOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatPaintOutlinedFilled as default } diff --git a/src/IconFormatPaintRoundedFilled.tsx b/src/IconFormatPaintRoundedFilled.tsx new file mode 100644 index 000000000..5bb02378f --- /dev/null +++ b/src/IconFormatPaintRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatPaintRoundedFilled as default } diff --git a/src/IconFormatPaintSharpFilled.tsx b/src/IconFormatPaintSharpFilled.tsx new file mode 100644 index 000000000..3fc49b940 --- /dev/null +++ b/src/IconFormatPaintSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatPaintSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatPaintSharpFilled as default } diff --git a/src/IconFormatParagraphOutlinedFilled.tsx b/src/IconFormatParagraphOutlinedFilled.tsx new file mode 100644 index 000000000..09ffdaafc --- /dev/null +++ b/src/IconFormatParagraphOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatParagraphOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatParagraphOutlinedFilled as default } diff --git a/src/IconFormatParagraphRoundedFilled.tsx b/src/IconFormatParagraphRoundedFilled.tsx new file mode 100644 index 000000000..37c2a0ec7 --- /dev/null +++ b/src/IconFormatParagraphRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatParagraphRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatParagraphRoundedFilled as default } diff --git a/src/IconFormatParagraphSharpFilled.tsx b/src/IconFormatParagraphSharpFilled.tsx new file mode 100644 index 000000000..97341fda7 --- /dev/null +++ b/src/IconFormatParagraphSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatParagraphSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatParagraphSharpFilled as default } diff --git a/src/IconFormatQuoteOffOutlinedFilled.tsx b/src/IconFormatQuoteOffOutlinedFilled.tsx new file mode 100644 index 000000000..5669f311b --- /dev/null +++ b/src/IconFormatQuoteOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteOffOutlinedFilled as default } diff --git a/src/IconFormatQuoteOffRoundedFilled.tsx b/src/IconFormatQuoteOffRoundedFilled.tsx new file mode 100644 index 000000000..8cea69b31 --- /dev/null +++ b/src/IconFormatQuoteOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteOffRoundedFilled as default } diff --git a/src/IconFormatQuoteOffSharpFilled.tsx b/src/IconFormatQuoteOffSharpFilled.tsx new file mode 100644 index 000000000..03df99418 --- /dev/null +++ b/src/IconFormatQuoteOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteOffSharpFilled as default } diff --git a/src/IconFormatQuoteOutlinedFilled.tsx b/src/IconFormatQuoteOutlinedFilled.tsx new file mode 100644 index 000000000..f06577d36 --- /dev/null +++ b/src/IconFormatQuoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteOutlinedFilled as default } diff --git a/src/IconFormatQuoteRoundedFilled.tsx b/src/IconFormatQuoteRoundedFilled.tsx new file mode 100644 index 000000000..cd93202b5 --- /dev/null +++ b/src/IconFormatQuoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteRoundedFilled as default } diff --git a/src/IconFormatQuoteSharpFilled.tsx b/src/IconFormatQuoteSharpFilled.tsx new file mode 100644 index 000000000..b7f1ede31 --- /dev/null +++ b/src/IconFormatQuoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatQuoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatQuoteSharpFilled as default } diff --git a/src/IconFormatShapesOutlinedFilled.tsx b/src/IconFormatShapesOutlinedFilled.tsx new file mode 100644 index 000000000..135f6bfb7 --- /dev/null +++ b/src/IconFormatShapesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatShapesOutlinedFilled as default } diff --git a/src/IconFormatShapesRoundedFilled.tsx b/src/IconFormatShapesRoundedFilled.tsx new file mode 100644 index 000000000..b9ffcdec1 --- /dev/null +++ b/src/IconFormatShapesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatShapesRoundedFilled as default } diff --git a/src/IconFormatShapesSharpFilled.tsx b/src/IconFormatShapesSharpFilled.tsx new file mode 100644 index 000000000..abff1b8af --- /dev/null +++ b/src/IconFormatShapesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatShapesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatShapesSharpFilled as default } diff --git a/src/IconFormatSizeOutlinedFilled.tsx b/src/IconFormatSizeOutlinedFilled.tsx new file mode 100644 index 000000000..b6645cff3 --- /dev/null +++ b/src/IconFormatSizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatSizeOutlinedFilled as default } diff --git a/src/IconFormatSizeRoundedFilled.tsx b/src/IconFormatSizeRoundedFilled.tsx new file mode 100644 index 000000000..6f414899b --- /dev/null +++ b/src/IconFormatSizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatSizeRoundedFilled as default } diff --git a/src/IconFormatSizeSharpFilled.tsx b/src/IconFormatSizeSharpFilled.tsx new file mode 100644 index 000000000..103153fb5 --- /dev/null +++ b/src/IconFormatSizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatSizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatSizeSharpFilled as default } diff --git a/src/IconFormatStrikethroughOutlinedFilled.tsx b/src/IconFormatStrikethroughOutlinedFilled.tsx new file mode 100644 index 000000000..b90b24224 --- /dev/null +++ b/src/IconFormatStrikethroughOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatStrikethroughOutlinedFilled as default } diff --git a/src/IconFormatStrikethroughRoundedFilled.tsx b/src/IconFormatStrikethroughRoundedFilled.tsx new file mode 100644 index 000000000..a9f4a58ad --- /dev/null +++ b/src/IconFormatStrikethroughRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatStrikethroughRoundedFilled as default } diff --git a/src/IconFormatStrikethroughSharpFilled.tsx b/src/IconFormatStrikethroughSharpFilled.tsx new file mode 100644 index 000000000..b52f6a40f --- /dev/null +++ b/src/IconFormatStrikethroughSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatStrikethroughSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatStrikethroughSharpFilled as default } diff --git a/src/IconFormatTextClipOutlinedFilled.tsx b/src/IconFormatTextClipOutlinedFilled.tsx new file mode 100644 index 000000000..07363b67b --- /dev/null +++ b/src/IconFormatTextClipOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextClipOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextClipOutlinedFilled as default } diff --git a/src/IconFormatTextClipRoundedFilled.tsx b/src/IconFormatTextClipRoundedFilled.tsx new file mode 100644 index 000000000..202702517 --- /dev/null +++ b/src/IconFormatTextClipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextClipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextClipRoundedFilled as default } diff --git a/src/IconFormatTextClipSharpFilled.tsx b/src/IconFormatTextClipSharpFilled.tsx new file mode 100644 index 000000000..8cae95d0c --- /dev/null +++ b/src/IconFormatTextClipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextClipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextClipSharpFilled as default } diff --git a/src/IconFormatTextOverflowOutlinedFilled.tsx b/src/IconFormatTextOverflowOutlinedFilled.tsx new file mode 100644 index 000000000..f74de0785 --- /dev/null +++ b/src/IconFormatTextOverflowOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextOverflowOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextOverflowOutlinedFilled as default } diff --git a/src/IconFormatTextOverflowRoundedFilled.tsx b/src/IconFormatTextOverflowRoundedFilled.tsx new file mode 100644 index 000000000..4482df069 --- /dev/null +++ b/src/IconFormatTextOverflowRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextOverflowRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextOverflowRoundedFilled as default } diff --git a/src/IconFormatTextOverflowSharpFilled.tsx b/src/IconFormatTextOverflowSharpFilled.tsx new file mode 100644 index 000000000..3e8146ee1 --- /dev/null +++ b/src/IconFormatTextOverflowSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextOverflowSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextOverflowSharpFilled as default } diff --git a/src/IconFormatTextWrapOutlinedFilled.tsx b/src/IconFormatTextWrapOutlinedFilled.tsx new file mode 100644 index 000000000..a22f8ad29 --- /dev/null +++ b/src/IconFormatTextWrapOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextWrapOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextWrapOutlinedFilled as default } diff --git a/src/IconFormatTextWrapRoundedFilled.tsx b/src/IconFormatTextWrapRoundedFilled.tsx new file mode 100644 index 000000000..cd6a4a0b0 --- /dev/null +++ b/src/IconFormatTextWrapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextWrapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextWrapRoundedFilled as default } diff --git a/src/IconFormatTextWrapSharpFilled.tsx b/src/IconFormatTextWrapSharpFilled.tsx new file mode 100644 index 000000000..13c1fa2fa --- /dev/null +++ b/src/IconFormatTextWrapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextWrapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextWrapSharpFilled as default } diff --git a/src/IconFormatTextdirectionLToROutlinedFilled.tsx b/src/IconFormatTextdirectionLToROutlinedFilled.tsx new file mode 100644 index 000000000..2e0495ba2 --- /dev/null +++ b/src/IconFormatTextdirectionLToROutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToROutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionLToROutlinedFilled as default } diff --git a/src/IconFormatTextdirectionLToRRoundedFilled.tsx b/src/IconFormatTextdirectionLToRRoundedFilled.tsx new file mode 100644 index 000000000..1afcdef83 --- /dev/null +++ b/src/IconFormatTextdirectionLToRRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToRRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionLToRRoundedFilled as default } diff --git a/src/IconFormatTextdirectionLToRSharpFilled.tsx b/src/IconFormatTextdirectionLToRSharpFilled.tsx new file mode 100644 index 000000000..5fd8d95bc --- /dev/null +++ b/src/IconFormatTextdirectionLToRSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionLToRSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionLToRSharpFilled as default } diff --git a/src/IconFormatTextdirectionRToLOutlinedFilled.tsx b/src/IconFormatTextdirectionRToLOutlinedFilled.tsx new file mode 100644 index 000000000..ecc9052d3 --- /dev/null +++ b/src/IconFormatTextdirectionRToLOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionRToLOutlinedFilled as default } diff --git a/src/IconFormatTextdirectionRToLRoundedFilled.tsx b/src/IconFormatTextdirectionRToLRoundedFilled.tsx new file mode 100644 index 000000000..fa963e445 --- /dev/null +++ b/src/IconFormatTextdirectionRToLRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionRToLRoundedFilled as default } diff --git a/src/IconFormatTextdirectionRToLSharpFilled.tsx b/src/IconFormatTextdirectionRToLSharpFilled.tsx new file mode 100644 index 000000000..cf0e7f641 --- /dev/null +++ b/src/IconFormatTextdirectionRToLSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionRToLSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionRToLSharpFilled as default } diff --git a/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx b/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx new file mode 100644 index 000000000..95210f0b6 --- /dev/null +++ b/src/IconFormatTextdirectionVerticalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionVerticalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionVerticalOutlinedFilled as default } diff --git a/src/IconFormatTextdirectionVerticalRoundedFilled.tsx b/src/IconFormatTextdirectionVerticalRoundedFilled.tsx new file mode 100644 index 000000000..21c7966be --- /dev/null +++ b/src/IconFormatTextdirectionVerticalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionVerticalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionVerticalRoundedFilled as default } diff --git a/src/IconFormatTextdirectionVerticalSharpFilled.tsx b/src/IconFormatTextdirectionVerticalSharpFilled.tsx new file mode 100644 index 000000000..826a00f9d --- /dev/null +++ b/src/IconFormatTextdirectionVerticalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatTextdirectionVerticalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatTextdirectionVerticalSharpFilled as default } diff --git a/src/IconFormatUnderlinedOutlinedFilled.tsx b/src/IconFormatUnderlinedOutlinedFilled.tsx new file mode 100644 index 000000000..09c0f57cb --- /dev/null +++ b/src/IconFormatUnderlinedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedOutlinedFilled as default } diff --git a/src/IconFormatUnderlinedRoundedFilled.tsx b/src/IconFormatUnderlinedRoundedFilled.tsx new file mode 100644 index 000000000..738d762f0 --- /dev/null +++ b/src/IconFormatUnderlinedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedRoundedFilled as default } diff --git a/src/IconFormatUnderlinedSharpFilled.tsx b/src/IconFormatUnderlinedSharpFilled.tsx new file mode 100644 index 000000000..5f9711da7 --- /dev/null +++ b/src/IconFormatUnderlinedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedSharpFilled as default } diff --git a/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx b/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx new file mode 100644 index 000000000..cf1fd13e5 --- /dev/null +++ b/src/IconFormatUnderlinedSquiggleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedSquiggleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedSquiggleOutlinedFilled as default } diff --git a/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx b/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx new file mode 100644 index 000000000..f3ddfc524 --- /dev/null +++ b/src/IconFormatUnderlinedSquiggleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedSquiggleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedSquiggleRoundedFilled as default } diff --git a/src/IconFormatUnderlinedSquiggleSharpFilled.tsx b/src/IconFormatUnderlinedSquiggleSharpFilled.tsx new file mode 100644 index 000000000..d71eec891 --- /dev/null +++ b/src/IconFormatUnderlinedSquiggleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormatUnderlinedSquiggleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormatUnderlinedSquiggleSharpFilled as default } diff --git a/src/IconFormsAddOnOutlinedFilled.tsx b/src/IconFormsAddOnOutlinedFilled.tsx new file mode 100644 index 000000000..db6958997 --- /dev/null +++ b/src/IconFormsAddOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormsAddOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormsAddOnOutlinedFilled as default } diff --git a/src/IconFormsAddOnRoundedFilled.tsx b/src/IconFormsAddOnRoundedFilled.tsx new file mode 100644 index 000000000..79a31ec72 --- /dev/null +++ b/src/IconFormsAddOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormsAddOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormsAddOnRoundedFilled as default } diff --git a/src/IconFormsAddOnSharpFilled.tsx b/src/IconFormsAddOnSharpFilled.tsx new file mode 100644 index 000000000..634357243 --- /dev/null +++ b/src/IconFormsAddOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormsAddOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormsAddOnSharpFilled as default } diff --git a/src/IconFormsAppsScriptOutlinedFilled.tsx b/src/IconFormsAppsScriptOutlinedFilled.tsx new file mode 100644 index 000000000..b6f733b52 --- /dev/null +++ b/src/IconFormsAppsScriptOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormsAppsScriptOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormsAppsScriptOutlinedFilled as default } diff --git a/src/IconFormsAppsScriptRoundedFilled.tsx b/src/IconFormsAppsScriptRoundedFilled.tsx new file mode 100644 index 000000000..006826b4e --- /dev/null +++ b/src/IconFormsAppsScriptRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormsAppsScriptRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFormsAppsScriptRoundedFilled as default } diff --git a/src/IconFormsAppsScriptSharpFilled.tsx b/src/IconFormsAppsScriptSharpFilled.tsx new file mode 100644 index 000000000..7f83f5adb --- /dev/null +++ b/src/IconFormsAppsScriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFormsAppsScriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFormsAppsScriptSharpFilled as default } diff --git a/src/IconFortOutlinedFilled.tsx b/src/IconFortOutlinedFilled.tsx new file mode 100644 index 000000000..a5649eaba --- /dev/null +++ b/src/IconFortOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFortOutlinedFilled as default } diff --git a/src/IconFortRoundedFilled.tsx b/src/IconFortRoundedFilled.tsx new file mode 100644 index 000000000..f3a67e25f --- /dev/null +++ b/src/IconFortRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFortRoundedFilled as default } diff --git a/src/IconFortSharpFilled.tsx b/src/IconFortSharpFilled.tsx new file mode 100644 index 000000000..8cdefebce --- /dev/null +++ b/src/IconFortSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFortSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFortSharpFilled as default } diff --git a/src/IconForumOutlinedFilled.tsx b/src/IconForumOutlinedFilled.tsx new file mode 100644 index 000000000..f00029472 --- /dev/null +++ b/src/IconForumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForumOutlinedFilled as default } diff --git a/src/IconForumRoundedFilled.tsx b/src/IconForumRoundedFilled.tsx new file mode 100644 index 000000000..abfdba540 --- /dev/null +++ b/src/IconForumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForumRoundedFilled as default } diff --git a/src/IconForumSharpFilled.tsx b/src/IconForumSharpFilled.tsx new file mode 100644 index 000000000..4c5e9cfd5 --- /dev/null +++ b/src/IconForumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForumSharpFilled as default } diff --git a/src/IconForward10OutlinedFilled.tsx b/src/IconForward10OutlinedFilled.tsx new file mode 100644 index 000000000..5a15c29fc --- /dev/null +++ b/src/IconForward10OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward10OutlinedFilled as default } diff --git a/src/IconForward10RoundedFilled.tsx b/src/IconForward10RoundedFilled.tsx new file mode 100644 index 000000000..6a494b873 --- /dev/null +++ b/src/IconForward10RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward10RoundedFilled as default } diff --git a/src/IconForward10SharpFilled.tsx b/src/IconForward10SharpFilled.tsx new file mode 100644 index 000000000..7c6662c1f --- /dev/null +++ b/src/IconForward10SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward10SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward10SharpFilled as default } diff --git a/src/IconForward30OutlinedFilled.tsx b/src/IconForward30OutlinedFilled.tsx new file mode 100644 index 000000000..8401e85ac --- /dev/null +++ b/src/IconForward30OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward30OutlinedFilled as default } diff --git a/src/IconForward30RoundedFilled.tsx b/src/IconForward30RoundedFilled.tsx new file mode 100644 index 000000000..2be1f5b73 --- /dev/null +++ b/src/IconForward30RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward30RoundedFilled as default } diff --git a/src/IconForward30SharpFilled.tsx b/src/IconForward30SharpFilled.tsx new file mode 100644 index 000000000..73a1a84de --- /dev/null +++ b/src/IconForward30SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward30SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward30SharpFilled as default } diff --git a/src/IconForward5OutlinedFilled.tsx b/src/IconForward5OutlinedFilled.tsx new file mode 100644 index 000000000..fdecabe4a --- /dev/null +++ b/src/IconForward5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward5OutlinedFilled as default } diff --git a/src/IconForward5RoundedFilled.tsx b/src/IconForward5RoundedFilled.tsx new file mode 100644 index 000000000..a2d575510 --- /dev/null +++ b/src/IconForward5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward5RoundedFilled as default } diff --git a/src/IconForward5SharpFilled.tsx b/src/IconForward5SharpFilled.tsx new file mode 100644 index 000000000..7f009c11c --- /dev/null +++ b/src/IconForward5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForward5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForward5SharpFilled as default } diff --git a/src/IconForwardCircleOutlinedFilled.tsx b/src/IconForwardCircleOutlinedFilled.tsx new file mode 100644 index 000000000..acdeb2e80 --- /dev/null +++ b/src/IconForwardCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardCircleOutlinedFilled as default } diff --git a/src/IconForwardCircleRoundedFilled.tsx b/src/IconForwardCircleRoundedFilled.tsx new file mode 100644 index 000000000..09fc02686 --- /dev/null +++ b/src/IconForwardCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardCircleRoundedFilled as default } diff --git a/src/IconForwardCircleSharpFilled.tsx b/src/IconForwardCircleSharpFilled.tsx new file mode 100644 index 000000000..5e4504cc8 --- /dev/null +++ b/src/IconForwardCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardCircleSharpFilled as default } diff --git a/src/IconForwardMediaOutlinedFilled.tsx b/src/IconForwardMediaOutlinedFilled.tsx new file mode 100644 index 000000000..e27044e97 --- /dev/null +++ b/src/IconForwardMediaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardMediaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardMediaOutlinedFilled as default } diff --git a/src/IconForwardMediaRoundedFilled.tsx b/src/IconForwardMediaRoundedFilled.tsx new file mode 100644 index 000000000..600357333 --- /dev/null +++ b/src/IconForwardMediaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardMediaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardMediaRoundedFilled as default } diff --git a/src/IconForwardMediaSharpFilled.tsx b/src/IconForwardMediaSharpFilled.tsx new file mode 100644 index 000000000..bdb698d9e --- /dev/null +++ b/src/IconForwardMediaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardMediaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardMediaSharpFilled as default } diff --git a/src/IconForwardOutlinedFilled.tsx b/src/IconForwardOutlinedFilled.tsx new file mode 100644 index 000000000..d8e7edb8d --- /dev/null +++ b/src/IconForwardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardOutlinedFilled as default } diff --git a/src/IconForwardRoundedFilled.tsx b/src/IconForwardRoundedFilled.tsx new file mode 100644 index 000000000..22cd99ceb --- /dev/null +++ b/src/IconForwardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardRoundedFilled as default } diff --git a/src/IconForwardSharpFilled.tsx b/src/IconForwardSharpFilled.tsx new file mode 100644 index 000000000..304ad7c25 --- /dev/null +++ b/src/IconForwardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardSharpFilled as default } diff --git a/src/IconForwardToInboxOutlinedFilled.tsx b/src/IconForwardToInboxOutlinedFilled.tsx new file mode 100644 index 000000000..96c09878a --- /dev/null +++ b/src/IconForwardToInboxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardToInboxOutlinedFilled as default } diff --git a/src/IconForwardToInboxRoundedFilled.tsx b/src/IconForwardToInboxRoundedFilled.tsx new file mode 100644 index 000000000..9ecc6e998 --- /dev/null +++ b/src/IconForwardToInboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardToInboxRoundedFilled as default } diff --git a/src/IconForwardToInboxSharpFilled.tsx b/src/IconForwardToInboxSharpFilled.tsx new file mode 100644 index 000000000..9f2377094 --- /dev/null +++ b/src/IconForwardToInboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconForwardToInboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconForwardToInboxSharpFilled as default } diff --git a/src/IconFoundationOutlinedFilled.tsx b/src/IconFoundationOutlinedFilled.tsx new file mode 100644 index 000000000..5bf5cd04c --- /dev/null +++ b/src/IconFoundationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoundationOutlinedFilled as default } diff --git a/src/IconFoundationRoundedFilled.tsx b/src/IconFoundationRoundedFilled.tsx new file mode 100644 index 000000000..da0f039d5 --- /dev/null +++ b/src/IconFoundationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoundationRoundedFilled as default } diff --git a/src/IconFoundationSharpFilled.tsx b/src/IconFoundationSharpFilled.tsx new file mode 100644 index 000000000..7614e045a --- /dev/null +++ b/src/IconFoundationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFoundationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFoundationSharpFilled as default } diff --git a/src/IconFrameInspectOutlinedFilled.tsx b/src/IconFrameInspectOutlinedFilled.tsx new file mode 100644 index 000000000..242b91e92 --- /dev/null +++ b/src/IconFrameInspectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameInspectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameInspectOutlinedFilled as default } diff --git a/src/IconFrameInspectRoundedFilled.tsx b/src/IconFrameInspectRoundedFilled.tsx new file mode 100644 index 000000000..6c7303d4f --- /dev/null +++ b/src/IconFrameInspectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameInspectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameInspectRoundedFilled as default } diff --git a/src/IconFrameInspectSharpFilled.tsx b/src/IconFrameInspectSharpFilled.tsx new file mode 100644 index 000000000..503dd558b --- /dev/null +++ b/src/IconFrameInspectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameInspectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameInspectSharpFilled as default } diff --git a/src/IconFramePersonMicOutlinedFilled.tsx b/src/IconFramePersonMicOutlinedFilled.tsx new file mode 100644 index 000000000..3ce721bb5 --- /dev/null +++ b/src/IconFramePersonMicOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonMicOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonMicOutlinedFilled as default } diff --git a/src/IconFramePersonMicRoundedFilled.tsx b/src/IconFramePersonMicRoundedFilled.tsx new file mode 100644 index 000000000..184df72ac --- /dev/null +++ b/src/IconFramePersonMicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonMicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonMicRoundedFilled as default } diff --git a/src/IconFramePersonMicSharpFilled.tsx b/src/IconFramePersonMicSharpFilled.tsx new file mode 100644 index 000000000..04ef0b9ed --- /dev/null +++ b/src/IconFramePersonMicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonMicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonMicSharpFilled as default } diff --git a/src/IconFramePersonOffOutlinedFilled.tsx b/src/IconFramePersonOffOutlinedFilled.tsx new file mode 100644 index 000000000..566d097ae --- /dev/null +++ b/src/IconFramePersonOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonOffOutlinedFilled as default } diff --git a/src/IconFramePersonOffRoundedFilled.tsx b/src/IconFramePersonOffRoundedFilled.tsx new file mode 100644 index 000000000..2fedacc46 --- /dev/null +++ b/src/IconFramePersonOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonOffRoundedFilled as default } diff --git a/src/IconFramePersonOffSharpFilled.tsx b/src/IconFramePersonOffSharpFilled.tsx new file mode 100644 index 000000000..f578f4d29 --- /dev/null +++ b/src/IconFramePersonOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonOffSharpFilled as default } diff --git a/src/IconFramePersonOutlinedFilled.tsx b/src/IconFramePersonOutlinedFilled.tsx new file mode 100644 index 000000000..24c928e54 --- /dev/null +++ b/src/IconFramePersonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonOutlinedFilled as default } diff --git a/src/IconFramePersonRoundedFilled.tsx b/src/IconFramePersonRoundedFilled.tsx new file mode 100644 index 000000000..96b4aad92 --- /dev/null +++ b/src/IconFramePersonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonRoundedFilled as default } diff --git a/src/IconFramePersonSharpFilled.tsx b/src/IconFramePersonSharpFilled.tsx new file mode 100644 index 000000000..78b6222da --- /dev/null +++ b/src/IconFramePersonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFramePersonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFramePersonSharpFilled as default } diff --git a/src/IconFrameReloadOutlinedFilled.tsx b/src/IconFrameReloadOutlinedFilled.tsx new file mode 100644 index 000000000..fc78c9989 --- /dev/null +++ b/src/IconFrameReloadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameReloadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameReloadOutlinedFilled as default } diff --git a/src/IconFrameReloadRoundedFilled.tsx b/src/IconFrameReloadRoundedFilled.tsx new file mode 100644 index 000000000..6d1bb8159 --- /dev/null +++ b/src/IconFrameReloadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameReloadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameReloadRoundedFilled as default } diff --git a/src/IconFrameReloadSharpFilled.tsx b/src/IconFrameReloadSharpFilled.tsx new file mode 100644 index 000000000..bf1921743 --- /dev/null +++ b/src/IconFrameReloadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameReloadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameReloadSharpFilled as default } diff --git a/src/IconFrameSourceOutlinedFilled.tsx b/src/IconFrameSourceOutlinedFilled.tsx new file mode 100644 index 000000000..6c1a42324 --- /dev/null +++ b/src/IconFrameSourceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameSourceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameSourceOutlinedFilled as default } diff --git a/src/IconFrameSourceRoundedFilled.tsx b/src/IconFrameSourceRoundedFilled.tsx new file mode 100644 index 000000000..b8f7c8249 --- /dev/null +++ b/src/IconFrameSourceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameSourceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameSourceRoundedFilled as default } diff --git a/src/IconFrameSourceSharpFilled.tsx b/src/IconFrameSourceSharpFilled.tsx new file mode 100644 index 000000000..44d104ff0 --- /dev/null +++ b/src/IconFrameSourceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrameSourceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrameSourceSharpFilled as default } diff --git a/src/IconFreeCancellationOutlinedFilled.tsx b/src/IconFreeCancellationOutlinedFilled.tsx new file mode 100644 index 000000000..6c83d23dd --- /dev/null +++ b/src/IconFreeCancellationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFreeCancellationOutlinedFilled as default } diff --git a/src/IconFreeCancellationRoundedFilled.tsx b/src/IconFreeCancellationRoundedFilled.tsx new file mode 100644 index 000000000..1cf3b8a0e --- /dev/null +++ b/src/IconFreeCancellationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFreeCancellationRoundedFilled as default } diff --git a/src/IconFreeCancellationSharpFilled.tsx b/src/IconFreeCancellationSharpFilled.tsx new file mode 100644 index 000000000..18c3c81d0 --- /dev/null +++ b/src/IconFreeCancellationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFreeCancellationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFreeCancellationSharpFilled as default } diff --git a/src/IconFrontHandOutlinedFilled.tsx b/src/IconFrontHandOutlinedFilled.tsx new file mode 100644 index 000000000..31defbe6b --- /dev/null +++ b/src/IconFrontHandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrontHandOutlinedFilled as default } diff --git a/src/IconFrontHandRoundedFilled.tsx b/src/IconFrontHandRoundedFilled.tsx new file mode 100644 index 000000000..114c6c64d --- /dev/null +++ b/src/IconFrontHandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrontHandRoundedFilled as default } diff --git a/src/IconFrontHandSharpFilled.tsx b/src/IconFrontHandSharpFilled.tsx new file mode 100644 index 000000000..ed7af19c5 --- /dev/null +++ b/src/IconFrontHandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontHandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrontHandSharpFilled as default } diff --git a/src/IconFrontLoaderOutlinedFilled.tsx b/src/IconFrontLoaderOutlinedFilled.tsx new file mode 100644 index 000000000..123cf636e --- /dev/null +++ b/src/IconFrontLoaderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontLoaderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrontLoaderOutlinedFilled as default } diff --git a/src/IconFrontLoaderRoundedFilled.tsx b/src/IconFrontLoaderRoundedFilled.tsx new file mode 100644 index 000000000..a62a17cb3 --- /dev/null +++ b/src/IconFrontLoaderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontLoaderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrontLoaderRoundedFilled as default } diff --git a/src/IconFrontLoaderSharpFilled.tsx b/src/IconFrontLoaderSharpFilled.tsx new file mode 100644 index 000000000..00ae4a624 --- /dev/null +++ b/src/IconFrontLoaderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFrontLoaderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFrontLoaderSharpFilled as default } diff --git a/src/IconFullCoverageOutlinedFilled.tsx b/src/IconFullCoverageOutlinedFilled.tsx new file mode 100644 index 000000000..0c856891c --- /dev/null +++ b/src/IconFullCoverageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullCoverageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullCoverageOutlinedFilled as default } diff --git a/src/IconFullCoverageRoundedFilled.tsx b/src/IconFullCoverageRoundedFilled.tsx new file mode 100644 index 000000000..65c9d5564 --- /dev/null +++ b/src/IconFullCoverageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullCoverageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullCoverageRoundedFilled as default } diff --git a/src/IconFullCoverageSharpFilled.tsx b/src/IconFullCoverageSharpFilled.tsx new file mode 100644 index 000000000..e748bff5d --- /dev/null +++ b/src/IconFullCoverageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullCoverageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullCoverageSharpFilled as default } diff --git a/src/IconFullHdOutlinedFilled.tsx b/src/IconFullHdOutlinedFilled.tsx new file mode 100644 index 000000000..2772900a2 --- /dev/null +++ b/src/IconFullHdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullHdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullHdOutlinedFilled as default } diff --git a/src/IconFullHdRoundedFilled.tsx b/src/IconFullHdRoundedFilled.tsx new file mode 100644 index 000000000..aba330b82 --- /dev/null +++ b/src/IconFullHdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullHdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullHdRoundedFilled as default } diff --git a/src/IconFullHdSharpFilled.tsx b/src/IconFullHdSharpFilled.tsx new file mode 100644 index 000000000..3fc1ee90b --- /dev/null +++ b/src/IconFullHdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullHdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullHdSharpFilled as default } diff --git a/src/IconFullStackedBarChartOutlinedFilled.tsx b/src/IconFullStackedBarChartOutlinedFilled.tsx new file mode 100644 index 000000000..5b31eaf4c --- /dev/null +++ b/src/IconFullStackedBarChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullStackedBarChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullStackedBarChartOutlinedFilled as default } diff --git a/src/IconFullStackedBarChartRoundedFilled.tsx b/src/IconFullStackedBarChartRoundedFilled.tsx new file mode 100644 index 000000000..55c0fc7c9 --- /dev/null +++ b/src/IconFullStackedBarChartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullStackedBarChartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullStackedBarChartRoundedFilled as default } diff --git a/src/IconFullStackedBarChartSharpFilled.tsx b/src/IconFullStackedBarChartSharpFilled.tsx new file mode 100644 index 000000000..ccb376f04 --- /dev/null +++ b/src/IconFullStackedBarChartSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullStackedBarChartSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullStackedBarChartSharpFilled as default } diff --git a/src/IconFullscreenExitOutlinedFilled.tsx b/src/IconFullscreenExitOutlinedFilled.tsx new file mode 100644 index 000000000..ff1006f83 --- /dev/null +++ b/src/IconFullscreenExitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenExitOutlinedFilled as default } diff --git a/src/IconFullscreenExitRoundedFilled.tsx b/src/IconFullscreenExitRoundedFilled.tsx new file mode 100644 index 000000000..f3ea96e60 --- /dev/null +++ b/src/IconFullscreenExitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenExitRoundedFilled as default } diff --git a/src/IconFullscreenExitSharpFilled.tsx b/src/IconFullscreenExitSharpFilled.tsx new file mode 100644 index 000000000..88e80433a --- /dev/null +++ b/src/IconFullscreenExitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenExitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenExitSharpFilled as default } diff --git a/src/IconFullscreenOutlinedFilled.tsx b/src/IconFullscreenOutlinedFilled.tsx new file mode 100644 index 000000000..17036e44d --- /dev/null +++ b/src/IconFullscreenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenOutlinedFilled as default } diff --git a/src/IconFullscreenPortraitOutlinedFilled.tsx b/src/IconFullscreenPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..7aae3b2c2 --- /dev/null +++ b/src/IconFullscreenPortraitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenPortraitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenPortraitOutlinedFilled as default } diff --git a/src/IconFullscreenPortraitRoundedFilled.tsx b/src/IconFullscreenPortraitRoundedFilled.tsx new file mode 100644 index 000000000..a8b389694 --- /dev/null +++ b/src/IconFullscreenPortraitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenPortraitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenPortraitRoundedFilled as default } diff --git a/src/IconFullscreenPortraitSharpFilled.tsx b/src/IconFullscreenPortraitSharpFilled.tsx new file mode 100644 index 000000000..e240f4dc5 --- /dev/null +++ b/src/IconFullscreenPortraitSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenPortraitSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenPortraitSharpFilled as default } diff --git a/src/IconFullscreenRoundedFilled.tsx b/src/IconFullscreenRoundedFilled.tsx new file mode 100644 index 000000000..b941b4245 --- /dev/null +++ b/src/IconFullscreenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenRoundedFilled as default } diff --git a/src/IconFullscreenSharpFilled.tsx b/src/IconFullscreenSharpFilled.tsx new file mode 100644 index 000000000..069d805d4 --- /dev/null +++ b/src/IconFullscreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFullscreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFullscreenSharpFilled as default } diff --git a/src/IconFunctionOutlinedFilled.tsx b/src/IconFunctionOutlinedFilled.tsx new file mode 100644 index 000000000..ea20dfac1 --- /dev/null +++ b/src/IconFunctionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionOutlinedFilled as default } diff --git a/src/IconFunctionRoundedFilled.tsx b/src/IconFunctionRoundedFilled.tsx new file mode 100644 index 000000000..754b1891d --- /dev/null +++ b/src/IconFunctionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionRoundedFilled as default } diff --git a/src/IconFunctionSharpFilled.tsx b/src/IconFunctionSharpFilled.tsx new file mode 100644 index 000000000..a6a68c9de --- /dev/null +++ b/src/IconFunctionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionSharpFilled as default } diff --git a/src/IconFunctionsOutlinedFilled.tsx b/src/IconFunctionsOutlinedFilled.tsx new file mode 100644 index 000000000..53e2a74a2 --- /dev/null +++ b/src/IconFunctionsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionsOutlinedFilled as default } diff --git a/src/IconFunctionsRoundedFilled.tsx b/src/IconFunctionsRoundedFilled.tsx new file mode 100644 index 000000000..ed4956c41 --- /dev/null +++ b/src/IconFunctionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionsRoundedFilled as default } diff --git a/src/IconFunctionsSharpFilled.tsx b/src/IconFunctionsSharpFilled.tsx new file mode 100644 index 000000000..072e0a393 --- /dev/null +++ b/src/IconFunctionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunctionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunctionsSharpFilled as default } diff --git a/src/IconFunicularOutlinedFilled.tsx b/src/IconFunicularOutlinedFilled.tsx new file mode 100644 index 000000000..42aab2f85 --- /dev/null +++ b/src/IconFunicularOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunicularOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunicularOutlinedFilled as default } diff --git a/src/IconFunicularRoundedFilled.tsx b/src/IconFunicularRoundedFilled.tsx new file mode 100644 index 000000000..eae3dacc8 --- /dev/null +++ b/src/IconFunicularRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunicularRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunicularRoundedFilled as default } diff --git a/src/IconFunicularSharpFilled.tsx b/src/IconFunicularSharpFilled.tsx new file mode 100644 index 000000000..9a109722f --- /dev/null +++ b/src/IconFunicularSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconFunicularSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconFunicularSharpFilled as default } diff --git a/src/IconGMobiledataBadgeOutlinedFilled.tsx b/src/IconGMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..4ef0c77f0 --- /dev/null +++ b/src/IconGMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconGMobiledataBadgeRoundedFilled.tsx b/src/IconGMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..9b19f67f5 --- /dev/null +++ b/src/IconGMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGMobiledataBadgeRoundedFilled as default } diff --git a/src/IconGMobiledataBadgeSharpFilled.tsx b/src/IconGMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..78621b42b --- /dev/null +++ b/src/IconGMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataBadgeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGMobiledataBadgeSharpFilled as default } diff --git a/src/IconGMobiledataOutlinedFilled.tsx b/src/IconGMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..0aebc93e3 --- /dev/null +++ b/src/IconGMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGMobiledataOutlinedFilled as default } diff --git a/src/IconGMobiledataRoundedFilled.tsx b/src/IconGMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..527d65c83 --- /dev/null +++ b/src/IconGMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGMobiledataRoundedFilled as default } diff --git a/src/IconGMobiledataSharpFilled.tsx b/src/IconGMobiledataSharpFilled.tsx new file mode 100644 index 000000000..a3bea6289 --- /dev/null +++ b/src/IconGMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGMobiledataSharpFilled as default } diff --git a/src/IconGTranslateOutlinedFilled.tsx b/src/IconGTranslateOutlinedFilled.tsx new file mode 100644 index 000000000..c22d05f9d --- /dev/null +++ b/src/IconGTranslateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGTranslateOutlinedFilled as default } diff --git a/src/IconGTranslateRoundedFilled.tsx b/src/IconGTranslateRoundedFilled.tsx new file mode 100644 index 000000000..ab7dbfdc6 --- /dev/null +++ b/src/IconGTranslateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGTranslateRoundedFilled as default } diff --git a/src/IconGTranslateSharpFilled.tsx b/src/IconGTranslateSharpFilled.tsx new file mode 100644 index 000000000..58cb2f29d --- /dev/null +++ b/src/IconGTranslateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGTranslateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGTranslateSharpFilled as default } diff --git a/src/IconGalleryThumbnailOutlinedFilled.tsx b/src/IconGalleryThumbnailOutlinedFilled.tsx new file mode 100644 index 000000000..352e76beb --- /dev/null +++ b/src/IconGalleryThumbnailOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGalleryThumbnailOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGalleryThumbnailOutlinedFilled as default } diff --git a/src/IconGalleryThumbnailRoundedFilled.tsx b/src/IconGalleryThumbnailRoundedFilled.tsx new file mode 100644 index 000000000..14cbfeef3 --- /dev/null +++ b/src/IconGalleryThumbnailRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGalleryThumbnailRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGalleryThumbnailRoundedFilled as default } diff --git a/src/IconGalleryThumbnailSharpFilled.tsx b/src/IconGalleryThumbnailSharpFilled.tsx new file mode 100644 index 000000000..c781c28ae --- /dev/null +++ b/src/IconGalleryThumbnailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGalleryThumbnailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGalleryThumbnailSharpFilled as default } diff --git a/src/IconGamepadOutlinedFilled.tsx b/src/IconGamepadOutlinedFilled.tsx new file mode 100644 index 000000000..b0efcb119 --- /dev/null +++ b/src/IconGamepadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGamepadOutlinedFilled as default } diff --git a/src/IconGamepadRoundedFilled.tsx b/src/IconGamepadRoundedFilled.tsx new file mode 100644 index 000000000..057d44dfd --- /dev/null +++ b/src/IconGamepadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGamepadRoundedFilled as default } diff --git a/src/IconGamepadSharpFilled.tsx b/src/IconGamepadSharpFilled.tsx new file mode 100644 index 000000000..fb8a281d5 --- /dev/null +++ b/src/IconGamepadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGamepadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGamepadSharpFilled as default } diff --git a/src/IconGarageDoorOutlinedFilled.tsx b/src/IconGarageDoorOutlinedFilled.tsx new file mode 100644 index 000000000..55bee206a --- /dev/null +++ b/src/IconGarageDoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageDoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageDoorOutlinedFilled as default } diff --git a/src/IconGarageDoorRoundedFilled.tsx b/src/IconGarageDoorRoundedFilled.tsx new file mode 100644 index 000000000..672a6ead1 --- /dev/null +++ b/src/IconGarageDoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageDoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageDoorRoundedFilled as default } diff --git a/src/IconGarageDoorSharpFilled.tsx b/src/IconGarageDoorSharpFilled.tsx new file mode 100644 index 000000000..5076e5812 --- /dev/null +++ b/src/IconGarageDoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageDoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageDoorSharpFilled as default } diff --git a/src/IconGarageHomeOutlinedFilled.tsx b/src/IconGarageHomeOutlinedFilled.tsx new file mode 100644 index 000000000..36cb2f15a --- /dev/null +++ b/src/IconGarageHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageHomeOutlinedFilled as default } diff --git a/src/IconGarageHomeRoundedFilled.tsx b/src/IconGarageHomeRoundedFilled.tsx new file mode 100644 index 000000000..d25219edb --- /dev/null +++ b/src/IconGarageHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageHomeRoundedFilled as default } diff --git a/src/IconGarageHomeSharpFilled.tsx b/src/IconGarageHomeSharpFilled.tsx new file mode 100644 index 000000000..3e45b55ac --- /dev/null +++ b/src/IconGarageHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageHomeSharpFilled as default } diff --git a/src/IconGarageOutlinedFilled.tsx b/src/IconGarageOutlinedFilled.tsx new file mode 100644 index 000000000..124ac4649 --- /dev/null +++ b/src/IconGarageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageOutlinedFilled as default } diff --git a/src/IconGarageRoundedFilled.tsx b/src/IconGarageRoundedFilled.tsx new file mode 100644 index 000000000..9bf043b16 --- /dev/null +++ b/src/IconGarageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageRoundedFilled as default } diff --git a/src/IconGarageSharpFilled.tsx b/src/IconGarageSharpFilled.tsx new file mode 100644 index 000000000..8a130962d --- /dev/null +++ b/src/IconGarageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGarageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGarageSharpFilled as default } diff --git a/src/IconGardenCartOutlinedFilled.tsx b/src/IconGardenCartOutlinedFilled.tsx new file mode 100644 index 000000000..73221f458 --- /dev/null +++ b/src/IconGardenCartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGardenCartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGardenCartOutlinedFilled as default } diff --git a/src/IconGardenCartRoundedFilled.tsx b/src/IconGardenCartRoundedFilled.tsx new file mode 100644 index 000000000..f307f099f --- /dev/null +++ b/src/IconGardenCartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGardenCartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGardenCartRoundedFilled as default } diff --git a/src/IconGardenCartSharpFilled.tsx b/src/IconGardenCartSharpFilled.tsx new file mode 100644 index 000000000..5ef096f59 --- /dev/null +++ b/src/IconGardenCartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGardenCartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGardenCartSharpFilled as default } diff --git a/src/IconGasMeterOutlinedFilled.tsx b/src/IconGasMeterOutlinedFilled.tsx new file mode 100644 index 000000000..b5a924f2a --- /dev/null +++ b/src/IconGasMeterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGasMeterOutlinedFilled as default } diff --git a/src/IconGasMeterRoundedFilled.tsx b/src/IconGasMeterRoundedFilled.tsx new file mode 100644 index 000000000..d5ea62f45 --- /dev/null +++ b/src/IconGasMeterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGasMeterRoundedFilled as default } diff --git a/src/IconGasMeterSharpFilled.tsx b/src/IconGasMeterSharpFilled.tsx new file mode 100644 index 000000000..37bd10d86 --- /dev/null +++ b/src/IconGasMeterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGasMeterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGasMeterSharpFilled as default } diff --git a/src/IconGastroenterologyOutlinedFilled.tsx b/src/IconGastroenterologyOutlinedFilled.tsx new file mode 100644 index 000000000..5f15f4024 --- /dev/null +++ b/src/IconGastroenterologyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGastroenterologyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGastroenterologyOutlinedFilled as default } diff --git a/src/IconGastroenterologyRoundedFilled.tsx b/src/IconGastroenterologyRoundedFilled.tsx new file mode 100644 index 000000000..a0e25c917 --- /dev/null +++ b/src/IconGastroenterologyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGastroenterologyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGastroenterologyRoundedFilled as default } diff --git a/src/IconGastroenterologySharpFilled.tsx b/src/IconGastroenterologySharpFilled.tsx new file mode 100644 index 000000000..75b0db7e7 --- /dev/null +++ b/src/IconGastroenterologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGastroenterologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGastroenterologySharpFilled as default } diff --git a/src/IconGateOutlinedFilled.tsx b/src/IconGateOutlinedFilled.tsx new file mode 100644 index 000000000..7a5c16198 --- /dev/null +++ b/src/IconGateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGateOutlinedFilled as default } diff --git a/src/IconGateRoundedFilled.tsx b/src/IconGateRoundedFilled.tsx new file mode 100644 index 000000000..8aefeafbb --- /dev/null +++ b/src/IconGateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGateRoundedFilled as default } diff --git a/src/IconGateSharpFilled.tsx b/src/IconGateSharpFilled.tsx new file mode 100644 index 000000000..d84bced5f --- /dev/null +++ b/src/IconGateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGateSharpFilled as default } diff --git a/src/IconGavelOutlinedFilled.tsx b/src/IconGavelOutlinedFilled.tsx new file mode 100644 index 000000000..69be665cd --- /dev/null +++ b/src/IconGavelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGavelOutlinedFilled as default } diff --git a/src/IconGavelRoundedFilled.tsx b/src/IconGavelRoundedFilled.tsx new file mode 100644 index 000000000..761ac6515 --- /dev/null +++ b/src/IconGavelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGavelRoundedFilled as default } diff --git a/src/IconGavelSharpFilled.tsx b/src/IconGavelSharpFilled.tsx new file mode 100644 index 000000000..fe4a1c7b1 --- /dev/null +++ b/src/IconGavelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGavelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGavelSharpFilled as default } diff --git a/src/IconGeneralDeviceOutlinedFilled.tsx b/src/IconGeneralDeviceOutlinedFilled.tsx new file mode 100644 index 000000000..10e72798d --- /dev/null +++ b/src/IconGeneralDeviceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneralDeviceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGeneralDeviceOutlinedFilled as default } diff --git a/src/IconGeneralDeviceRoundedFilled.tsx b/src/IconGeneralDeviceRoundedFilled.tsx new file mode 100644 index 000000000..dcba51e49 --- /dev/null +++ b/src/IconGeneralDeviceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneralDeviceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGeneralDeviceRoundedFilled as default } diff --git a/src/IconGeneralDeviceSharpFilled.tsx b/src/IconGeneralDeviceSharpFilled.tsx new file mode 100644 index 000000000..5a67b3def --- /dev/null +++ b/src/IconGeneralDeviceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneralDeviceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGeneralDeviceSharpFilled as default } diff --git a/src/IconGeneticsOutlinedFilled.tsx b/src/IconGeneticsOutlinedFilled.tsx new file mode 100644 index 000000000..517e358cb --- /dev/null +++ b/src/IconGeneticsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneticsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGeneticsOutlinedFilled as default } diff --git a/src/IconGeneticsRoundedFilled.tsx b/src/IconGeneticsRoundedFilled.tsx new file mode 100644 index 000000000..92f16adfc --- /dev/null +++ b/src/IconGeneticsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneticsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGeneticsRoundedFilled as default } diff --git a/src/IconGeneticsSharpFilled.tsx b/src/IconGeneticsSharpFilled.tsx new file mode 100644 index 000000000..38108b8f9 --- /dev/null +++ b/src/IconGeneticsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGeneticsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGeneticsSharpFilled as default } diff --git a/src/IconGenresOutlinedFilled.tsx b/src/IconGenresOutlinedFilled.tsx new file mode 100644 index 000000000..a7052f2ff --- /dev/null +++ b/src/IconGenresOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGenresOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGenresOutlinedFilled as default } diff --git a/src/IconGenresRoundedFilled.tsx b/src/IconGenresRoundedFilled.tsx new file mode 100644 index 000000000..eeb494da1 --- /dev/null +++ b/src/IconGenresRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGenresRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGenresRoundedFilled as default } diff --git a/src/IconGenresSharpFilled.tsx b/src/IconGenresSharpFilled.tsx new file mode 100644 index 000000000..255d2edcb --- /dev/null +++ b/src/IconGenresSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGenresSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGenresSharpFilled as default } diff --git a/src/IconGestureOutlinedFilled.tsx b/src/IconGestureOutlinedFilled.tsx new file mode 100644 index 000000000..29b3c48cc --- /dev/null +++ b/src/IconGestureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGestureOutlinedFilled as default } diff --git a/src/IconGestureRoundedFilled.tsx b/src/IconGestureRoundedFilled.tsx new file mode 100644 index 000000000..e71f979fa --- /dev/null +++ b/src/IconGestureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGestureRoundedFilled as default } diff --git a/src/IconGestureSelectOutlinedFilled.tsx b/src/IconGestureSelectOutlinedFilled.tsx new file mode 100644 index 000000000..e76ca059e --- /dev/null +++ b/src/IconGestureSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGestureSelectOutlinedFilled as default } diff --git a/src/IconGestureSelectRoundedFilled.tsx b/src/IconGestureSelectRoundedFilled.tsx new file mode 100644 index 000000000..08eaef095 --- /dev/null +++ b/src/IconGestureSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGestureSelectRoundedFilled as default } diff --git a/src/IconGestureSelectSharpFilled.tsx b/src/IconGestureSelectSharpFilled.tsx new file mode 100644 index 000000000..0b35dd646 --- /dev/null +++ b/src/IconGestureSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGestureSelectSharpFilled as default } diff --git a/src/IconGestureSharpFilled.tsx b/src/IconGestureSharpFilled.tsx new file mode 100644 index 000000000..a96ddd167 --- /dev/null +++ b/src/IconGestureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGestureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGestureSharpFilled as default } diff --git a/src/IconGif2OutlinedFilled.tsx b/src/IconGif2OutlinedFilled.tsx new file mode 100644 index 000000000..af7305cb2 --- /dev/null +++ b/src/IconGif2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGif2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGif2OutlinedFilled as default } diff --git a/src/IconGif2RoundedFilled.tsx b/src/IconGif2RoundedFilled.tsx new file mode 100644 index 000000000..27bda5a0e --- /dev/null +++ b/src/IconGif2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGif2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGif2RoundedFilled as default } diff --git a/src/IconGif2SharpFilled.tsx b/src/IconGif2SharpFilled.tsx new file mode 100644 index 000000000..a24641dbb --- /dev/null +++ b/src/IconGif2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGif2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGif2SharpFilled as default } diff --git a/src/IconGifBoxOutlinedFilled.tsx b/src/IconGifBoxOutlinedFilled.tsx new file mode 100644 index 000000000..cabed2dec --- /dev/null +++ b/src/IconGifBoxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGifBoxOutlinedFilled as default } diff --git a/src/IconGifBoxRoundedFilled.tsx b/src/IconGifBoxRoundedFilled.tsx new file mode 100644 index 000000000..8185497a9 --- /dev/null +++ b/src/IconGifBoxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGifBoxRoundedFilled as default } diff --git a/src/IconGifBoxSharpFilled.tsx b/src/IconGifBoxSharpFilled.tsx new file mode 100644 index 000000000..d5666e5ff --- /dev/null +++ b/src/IconGifBoxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifBoxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGifBoxSharpFilled as default } diff --git a/src/IconGifOutlinedFilled.tsx b/src/IconGifOutlinedFilled.tsx new file mode 100644 index 000000000..8cd0392cc --- /dev/null +++ b/src/IconGifOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGifOutlinedFilled as default } diff --git a/src/IconGifRoundedFilled.tsx b/src/IconGifRoundedFilled.tsx new file mode 100644 index 000000000..d88cc6f38 --- /dev/null +++ b/src/IconGifRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGifRoundedFilled as default } diff --git a/src/IconGifSharpFilled.tsx b/src/IconGifSharpFilled.tsx new file mode 100644 index 000000000..2a07c5c95 --- /dev/null +++ b/src/IconGifSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGifSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGifSharpFilled as default } diff --git a/src/IconGirlOutlinedFilled.tsx b/src/IconGirlOutlinedFilled.tsx new file mode 100644 index 000000000..1d5182d37 --- /dev/null +++ b/src/IconGirlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGirlOutlinedFilled as default } diff --git a/src/IconGirlRoundedFilled.tsx b/src/IconGirlRoundedFilled.tsx new file mode 100644 index 000000000..d71757878 --- /dev/null +++ b/src/IconGirlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGirlRoundedFilled as default } diff --git a/src/IconGirlSharpFilled.tsx b/src/IconGirlSharpFilled.tsx new file mode 100644 index 000000000..4f46133cf --- /dev/null +++ b/src/IconGirlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGirlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGirlSharpFilled as default } diff --git a/src/IconGiteOutlinedFilled.tsx b/src/IconGiteOutlinedFilled.tsx new file mode 100644 index 000000000..80f548511 --- /dev/null +++ b/src/IconGiteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGiteOutlinedFilled as default } diff --git a/src/IconGiteRoundedFilled.tsx b/src/IconGiteRoundedFilled.tsx new file mode 100644 index 000000000..1e0c5a2f1 --- /dev/null +++ b/src/IconGiteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGiteRoundedFilled as default } diff --git a/src/IconGiteSharpFilled.tsx b/src/IconGiteSharpFilled.tsx new file mode 100644 index 000000000..58006039c --- /dev/null +++ b/src/IconGiteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGiteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGiteSharpFilled as default } diff --git a/src/IconGlassCupOutlinedFilled.tsx b/src/IconGlassCupOutlinedFilled.tsx new file mode 100644 index 000000000..39dde8df9 --- /dev/null +++ b/src/IconGlassCupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlassCupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlassCupOutlinedFilled as default } diff --git a/src/IconGlassCupRoundedFilled.tsx b/src/IconGlassCupRoundedFilled.tsx new file mode 100644 index 000000000..887787f51 --- /dev/null +++ b/src/IconGlassCupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlassCupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlassCupRoundedFilled as default } diff --git a/src/IconGlassCupSharpFilled.tsx b/src/IconGlassCupSharpFilled.tsx new file mode 100644 index 000000000..0cf34b378 --- /dev/null +++ b/src/IconGlassCupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlassCupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlassCupSharpFilled as default } diff --git a/src/IconGlobeAsiaOutlinedFilled.tsx b/src/IconGlobeAsiaOutlinedFilled.tsx new file mode 100644 index 000000000..db2c06ab5 --- /dev/null +++ b/src/IconGlobeAsiaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeAsiaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeAsiaOutlinedFilled as default } diff --git a/src/IconGlobeAsiaRoundedFilled.tsx b/src/IconGlobeAsiaRoundedFilled.tsx new file mode 100644 index 000000000..75c675938 --- /dev/null +++ b/src/IconGlobeAsiaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeAsiaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeAsiaRoundedFilled as default } diff --git a/src/IconGlobeAsiaSharpFilled.tsx b/src/IconGlobeAsiaSharpFilled.tsx new file mode 100644 index 000000000..20d4f8872 --- /dev/null +++ b/src/IconGlobeAsiaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeAsiaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeAsiaSharpFilled as default } diff --git a/src/IconGlobeOutlinedFilled.tsx b/src/IconGlobeOutlinedFilled.tsx new file mode 100644 index 000000000..1eb1a570f --- /dev/null +++ b/src/IconGlobeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeOutlinedFilled as default } diff --git a/src/IconGlobeRoundedFilled.tsx b/src/IconGlobeRoundedFilled.tsx new file mode 100644 index 000000000..2ce2a1664 --- /dev/null +++ b/src/IconGlobeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeRoundedFilled as default } diff --git a/src/IconGlobeSharpFilled.tsx b/src/IconGlobeSharpFilled.tsx new file mode 100644 index 000000000..05e34440b --- /dev/null +++ b/src/IconGlobeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeSharpFilled as default } diff --git a/src/IconGlobeUkOutlinedFilled.tsx b/src/IconGlobeUkOutlinedFilled.tsx new file mode 100644 index 000000000..1097f7346 --- /dev/null +++ b/src/IconGlobeUkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeUkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeUkOutlinedFilled as default } diff --git a/src/IconGlobeUkRoundedFilled.tsx b/src/IconGlobeUkRoundedFilled.tsx new file mode 100644 index 000000000..1c3c7a51d --- /dev/null +++ b/src/IconGlobeUkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeUkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeUkRoundedFilled as default } diff --git a/src/IconGlobeUkSharpFilled.tsx b/src/IconGlobeUkSharpFilled.tsx new file mode 100644 index 000000000..ef10ebddf --- /dev/null +++ b/src/IconGlobeUkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlobeUkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlobeUkSharpFilled as default } diff --git a/src/IconGlucoseOutlinedFilled.tsx b/src/IconGlucoseOutlinedFilled.tsx new file mode 100644 index 000000000..4c070f0c9 --- /dev/null +++ b/src/IconGlucoseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlucoseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlucoseOutlinedFilled as default } diff --git a/src/IconGlucoseRoundedFilled.tsx b/src/IconGlucoseRoundedFilled.tsx new file mode 100644 index 000000000..3106b3753 --- /dev/null +++ b/src/IconGlucoseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlucoseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlucoseRoundedFilled as default } diff --git a/src/IconGlucoseSharpFilled.tsx b/src/IconGlucoseSharpFilled.tsx new file mode 100644 index 000000000..aa38dd3b7 --- /dev/null +++ b/src/IconGlucoseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlucoseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlucoseSharpFilled as default } diff --git a/src/IconGlyphsOutlinedFilled.tsx b/src/IconGlyphsOutlinedFilled.tsx new file mode 100644 index 000000000..56ecb7736 --- /dev/null +++ b/src/IconGlyphsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlyphsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlyphsOutlinedFilled as default } diff --git a/src/IconGlyphsRoundedFilled.tsx b/src/IconGlyphsRoundedFilled.tsx new file mode 100644 index 000000000..40a4b32e6 --- /dev/null +++ b/src/IconGlyphsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlyphsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlyphsRoundedFilled as default } diff --git a/src/IconGlyphsSharpFilled.tsx b/src/IconGlyphsSharpFilled.tsx new file mode 100644 index 000000000..ffab20f60 --- /dev/null +++ b/src/IconGlyphsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGlyphsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGlyphsSharpFilled as default } diff --git a/src/IconGoToLineOutlinedFilled.tsx b/src/IconGoToLineOutlinedFilled.tsx new file mode 100644 index 000000000..d911cb32f --- /dev/null +++ b/src/IconGoToLineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoToLineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoToLineOutlinedFilled as default } diff --git a/src/IconGoToLineRoundedFilled.tsx b/src/IconGoToLineRoundedFilled.tsx new file mode 100644 index 000000000..01e179209 --- /dev/null +++ b/src/IconGoToLineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoToLineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoToLineRoundedFilled as default } diff --git a/src/IconGoToLineSharpFilled.tsx b/src/IconGoToLineSharpFilled.tsx new file mode 100644 index 000000000..1b084f968 --- /dev/null +++ b/src/IconGoToLineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoToLineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoToLineSharpFilled as default } diff --git a/src/IconGolfCourseOutlinedFilled.tsx b/src/IconGolfCourseOutlinedFilled.tsx new file mode 100644 index 000000000..92663575d --- /dev/null +++ b/src/IconGolfCourseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGolfCourseOutlinedFilled as default } diff --git a/src/IconGolfCourseRoundedFilled.tsx b/src/IconGolfCourseRoundedFilled.tsx new file mode 100644 index 000000000..ae25c9041 --- /dev/null +++ b/src/IconGolfCourseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGolfCourseRoundedFilled as default } diff --git a/src/IconGolfCourseSharpFilled.tsx b/src/IconGolfCourseSharpFilled.tsx new file mode 100644 index 000000000..4a309e5b5 --- /dev/null +++ b/src/IconGolfCourseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGolfCourseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGolfCourseSharpFilled as default } diff --git a/src/IconGondolaLiftOutlinedFilled.tsx b/src/IconGondolaLiftOutlinedFilled.tsx new file mode 100644 index 000000000..3a81f9aa3 --- /dev/null +++ b/src/IconGondolaLiftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGondolaLiftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGondolaLiftOutlinedFilled as default } diff --git a/src/IconGondolaLiftRoundedFilled.tsx b/src/IconGondolaLiftRoundedFilled.tsx new file mode 100644 index 000000000..4dc4cc4e9 --- /dev/null +++ b/src/IconGondolaLiftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGondolaLiftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGondolaLiftRoundedFilled as default } diff --git a/src/IconGondolaLiftSharpFilled.tsx b/src/IconGondolaLiftSharpFilled.tsx new file mode 100644 index 000000000..c6350a54f --- /dev/null +++ b/src/IconGondolaLiftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGondolaLiftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGondolaLiftSharpFilled as default } diff --git a/src/IconGoogleHomeDevicesOutlinedFilled.tsx b/src/IconGoogleHomeDevicesOutlinedFilled.tsx new file mode 100644 index 000000000..20223883e --- /dev/null +++ b/src/IconGoogleHomeDevicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleHomeDevicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleHomeDevicesOutlinedFilled as default } diff --git a/src/IconGoogleHomeDevicesRoundedFilled.tsx b/src/IconGoogleHomeDevicesRoundedFilled.tsx new file mode 100644 index 000000000..edfa18d62 --- /dev/null +++ b/src/IconGoogleHomeDevicesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleHomeDevicesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleHomeDevicesRoundedFilled as default } diff --git a/src/IconGoogleHomeDevicesSharpFilled.tsx b/src/IconGoogleHomeDevicesSharpFilled.tsx new file mode 100644 index 000000000..f744d1024 --- /dev/null +++ b/src/IconGoogleHomeDevicesSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleHomeDevicesSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleHomeDevicesSharpFilled as default } diff --git a/src/IconGoogleTvRemoteOutlinedFilled.tsx b/src/IconGoogleTvRemoteOutlinedFilled.tsx new file mode 100644 index 000000000..503c3ccd3 --- /dev/null +++ b/src/IconGoogleTvRemoteOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleTvRemoteOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleTvRemoteOutlinedFilled as default } diff --git a/src/IconGoogleTvRemoteRoundedFilled.tsx b/src/IconGoogleTvRemoteRoundedFilled.tsx new file mode 100644 index 000000000..7226db91e --- /dev/null +++ b/src/IconGoogleTvRemoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleTvRemoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleTvRemoteRoundedFilled as default } diff --git a/src/IconGoogleTvRemoteSharpFilled.tsx b/src/IconGoogleTvRemoteSharpFilled.tsx new file mode 100644 index 000000000..f3d357dbc --- /dev/null +++ b/src/IconGoogleTvRemoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleTvRemoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleTvRemoteSharpFilled as default } diff --git a/src/IconGoogleWifiOutlinedFilled.tsx b/src/IconGoogleWifiOutlinedFilled.tsx new file mode 100644 index 000000000..8a777ca22 --- /dev/null +++ b/src/IconGoogleWifiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleWifiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleWifiOutlinedFilled as default } diff --git a/src/IconGoogleWifiRoundedFilled.tsx b/src/IconGoogleWifiRoundedFilled.tsx new file mode 100644 index 000000000..ec43148fd --- /dev/null +++ b/src/IconGoogleWifiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleWifiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleWifiRoundedFilled as default } diff --git a/src/IconGoogleWifiSharpFilled.tsx b/src/IconGoogleWifiSharpFilled.tsx new file mode 100644 index 000000000..ea4f93d06 --- /dev/null +++ b/src/IconGoogleWifiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGoogleWifiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGoogleWifiSharpFilled as default } diff --git a/src/IconGppBadOutlinedFilled.tsx b/src/IconGppBadOutlinedFilled.tsx new file mode 100644 index 000000000..f0d81c741 --- /dev/null +++ b/src/IconGppBadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGppBadOutlinedFilled as default } diff --git a/src/IconGppBadRoundedFilled.tsx b/src/IconGppBadRoundedFilled.tsx new file mode 100644 index 000000000..e2c083244 --- /dev/null +++ b/src/IconGppBadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGppBadRoundedFilled as default } diff --git a/src/IconGppBadSharpFilled.tsx b/src/IconGppBadSharpFilled.tsx new file mode 100644 index 000000000..a1df47b0e --- /dev/null +++ b/src/IconGppBadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppBadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGppBadSharpFilled as default } diff --git a/src/IconGppMaybeOutlinedFilled.tsx b/src/IconGppMaybeOutlinedFilled.tsx new file mode 100644 index 000000000..3b3a9324f --- /dev/null +++ b/src/IconGppMaybeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGppMaybeOutlinedFilled as default } diff --git a/src/IconGppMaybeRoundedFilled.tsx b/src/IconGppMaybeRoundedFilled.tsx new file mode 100644 index 000000000..43e50f9f0 --- /dev/null +++ b/src/IconGppMaybeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGppMaybeRoundedFilled as default } diff --git a/src/IconGppMaybeSharpFilled.tsx b/src/IconGppMaybeSharpFilled.tsx new file mode 100644 index 000000000..5170fe99a --- /dev/null +++ b/src/IconGppMaybeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGppMaybeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGppMaybeSharpFilled as default } diff --git a/src/IconGradeOutlinedFilled.tsx b/src/IconGradeOutlinedFilled.tsx new file mode 100644 index 000000000..3fd499cc0 --- /dev/null +++ b/src/IconGradeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradeOutlinedFilled as default } diff --git a/src/IconGradeRoundedFilled.tsx b/src/IconGradeRoundedFilled.tsx new file mode 100644 index 000000000..7e97e49f9 --- /dev/null +++ b/src/IconGradeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradeRoundedFilled as default } diff --git a/src/IconGradeSharpFilled.tsx b/src/IconGradeSharpFilled.tsx new file mode 100644 index 000000000..c17ff0c38 --- /dev/null +++ b/src/IconGradeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradeSharpFilled as default } diff --git a/src/IconGradientOutlinedFilled.tsx b/src/IconGradientOutlinedFilled.tsx new file mode 100644 index 000000000..fffec5fad --- /dev/null +++ b/src/IconGradientOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradientOutlinedFilled as default } diff --git a/src/IconGradientRoundedFilled.tsx b/src/IconGradientRoundedFilled.tsx new file mode 100644 index 000000000..73162537d --- /dev/null +++ b/src/IconGradientRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradientRoundedFilled as default } diff --git a/src/IconGradientSharpFilled.tsx b/src/IconGradientSharpFilled.tsx new file mode 100644 index 000000000..5f903ac86 --- /dev/null +++ b/src/IconGradientSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradientSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradientSharpFilled as default } diff --git a/src/IconGradingOutlinedFilled.tsx b/src/IconGradingOutlinedFilled.tsx new file mode 100644 index 000000000..0f7dfe33c --- /dev/null +++ b/src/IconGradingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradingOutlinedFilled as default } diff --git a/src/IconGradingRoundedFilled.tsx b/src/IconGradingRoundedFilled.tsx new file mode 100644 index 000000000..bb79de070 --- /dev/null +++ b/src/IconGradingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradingRoundedFilled as default } diff --git a/src/IconGradingSharpFilled.tsx b/src/IconGradingSharpFilled.tsx new file mode 100644 index 000000000..5f277e154 --- /dev/null +++ b/src/IconGradingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGradingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGradingSharpFilled as default } diff --git a/src/IconGrainOutlinedFilled.tsx b/src/IconGrainOutlinedFilled.tsx new file mode 100644 index 000000000..abc889613 --- /dev/null +++ b/src/IconGrainOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrainOutlinedFilled as default } diff --git a/src/IconGrainRoundedFilled.tsx b/src/IconGrainRoundedFilled.tsx new file mode 100644 index 000000000..f380b9712 --- /dev/null +++ b/src/IconGrainRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrainRoundedFilled as default } diff --git a/src/IconGrainSharpFilled.tsx b/src/IconGrainSharpFilled.tsx new file mode 100644 index 000000000..e8bc330d1 --- /dev/null +++ b/src/IconGrainSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrainSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrainSharpFilled as default } diff --git a/src/IconGraphicEqOutlinedFilled.tsx b/src/IconGraphicEqOutlinedFilled.tsx new file mode 100644 index 000000000..f76823032 --- /dev/null +++ b/src/IconGraphicEqOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGraphicEqOutlinedFilled as default } diff --git a/src/IconGraphicEqRoundedFilled.tsx b/src/IconGraphicEqRoundedFilled.tsx new file mode 100644 index 000000000..b73448cd9 --- /dev/null +++ b/src/IconGraphicEqRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGraphicEqRoundedFilled as default } diff --git a/src/IconGraphicEqSharpFilled.tsx b/src/IconGraphicEqSharpFilled.tsx new file mode 100644 index 000000000..a126689e3 --- /dev/null +++ b/src/IconGraphicEqSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGraphicEqSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGraphicEqSharpFilled as default } diff --git a/src/IconGrassOutlinedFilled.tsx b/src/IconGrassOutlinedFilled.tsx new file mode 100644 index 000000000..bc084001f --- /dev/null +++ b/src/IconGrassOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrassOutlinedFilled as default } diff --git a/src/IconGrassRoundedFilled.tsx b/src/IconGrassRoundedFilled.tsx new file mode 100644 index 000000000..585358c77 --- /dev/null +++ b/src/IconGrassRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrassRoundedFilled as default } diff --git a/src/IconGrassSharpFilled.tsx b/src/IconGrassSharpFilled.tsx new file mode 100644 index 000000000..80dcbb3e7 --- /dev/null +++ b/src/IconGrassSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrassSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrassSharpFilled as default } diff --git a/src/IconGrid3x3OffOutlinedFilled.tsx b/src/IconGrid3x3OffOutlinedFilled.tsx new file mode 100644 index 000000000..4e3af43c6 --- /dev/null +++ b/src/IconGrid3x3OffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3OffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid3x3OffOutlinedFilled as default } diff --git a/src/IconGrid3x3OffRoundedFilled.tsx b/src/IconGrid3x3OffRoundedFilled.tsx new file mode 100644 index 000000000..c80b005a9 --- /dev/null +++ b/src/IconGrid3x3OffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3OffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid3x3OffRoundedFilled as default } diff --git a/src/IconGrid3x3OffSharpFilled.tsx b/src/IconGrid3x3OffSharpFilled.tsx new file mode 100644 index 000000000..7660e748e --- /dev/null +++ b/src/IconGrid3x3OffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3OffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid3x3OffSharpFilled as default } diff --git a/src/IconGrid3x3OutlinedFilled.tsx b/src/IconGrid3x3OutlinedFilled.tsx new file mode 100644 index 000000000..f42839c5d --- /dev/null +++ b/src/IconGrid3x3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid3x3OutlinedFilled as default } diff --git a/src/IconGrid3x3RoundedFilled.tsx b/src/IconGrid3x3RoundedFilled.tsx new file mode 100644 index 000000000..3c92361c2 --- /dev/null +++ b/src/IconGrid3x3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid3x3RoundedFilled as default } diff --git a/src/IconGrid3x3SharpFilled.tsx b/src/IconGrid3x3SharpFilled.tsx new file mode 100644 index 000000000..f934a75ac --- /dev/null +++ b/src/IconGrid3x3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid3x3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid3x3SharpFilled as default } diff --git a/src/IconGrid4x4OutlinedFilled.tsx b/src/IconGrid4x4OutlinedFilled.tsx new file mode 100644 index 000000000..b1ec3c5f5 --- /dev/null +++ b/src/IconGrid4x4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid4x4OutlinedFilled as default } diff --git a/src/IconGrid4x4RoundedFilled.tsx b/src/IconGrid4x4RoundedFilled.tsx new file mode 100644 index 000000000..dc52c2bb8 --- /dev/null +++ b/src/IconGrid4x4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid4x4RoundedFilled as default } diff --git a/src/IconGrid4x4SharpFilled.tsx b/src/IconGrid4x4SharpFilled.tsx new file mode 100644 index 000000000..f0d8ae71f --- /dev/null +++ b/src/IconGrid4x4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrid4x4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrid4x4SharpFilled as default } diff --git a/src/IconGridGoldenratioOutlinedFilled.tsx b/src/IconGridGoldenratioOutlinedFilled.tsx new file mode 100644 index 000000000..04ddb3ff8 --- /dev/null +++ b/src/IconGridGoldenratioOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGridGoldenratioOutlinedFilled as default } diff --git a/src/IconGridGoldenratioRoundedFilled.tsx b/src/IconGridGoldenratioRoundedFilled.tsx new file mode 100644 index 000000000..fd09c1c76 --- /dev/null +++ b/src/IconGridGoldenratioRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGridGoldenratioRoundedFilled as default } diff --git a/src/IconGridGoldenratioSharpFilled.tsx b/src/IconGridGoldenratioSharpFilled.tsx new file mode 100644 index 000000000..474e33be7 --- /dev/null +++ b/src/IconGridGoldenratioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGoldenratioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridGoldenratioSharpFilled as default } diff --git a/src/IconGridGuidesOutlinedFilled.tsx b/src/IconGridGuidesOutlinedFilled.tsx new file mode 100644 index 000000000..aded8e50e --- /dev/null +++ b/src/IconGridGuidesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGuidesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridGuidesOutlinedFilled as default } diff --git a/src/IconGridGuidesRoundedFilled.tsx b/src/IconGridGuidesRoundedFilled.tsx new file mode 100644 index 000000000..ecf94eeb1 --- /dev/null +++ b/src/IconGridGuidesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGuidesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridGuidesRoundedFilled as default } diff --git a/src/IconGridGuidesSharpFilled.tsx b/src/IconGridGuidesSharpFilled.tsx new file mode 100644 index 000000000..162b8c5ba --- /dev/null +++ b/src/IconGridGuidesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridGuidesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridGuidesSharpFilled as default } diff --git a/src/IconGridOffOutlinedFilled.tsx b/src/IconGridOffOutlinedFilled.tsx new file mode 100644 index 000000000..6b690b711 --- /dev/null +++ b/src/IconGridOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridOffOutlinedFilled as default } diff --git a/src/IconGridOffRoundedFilled.tsx b/src/IconGridOffRoundedFilled.tsx new file mode 100644 index 000000000..6a8c90b2f --- /dev/null +++ b/src/IconGridOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridOffRoundedFilled as default } diff --git a/src/IconGridOffSharpFilled.tsx b/src/IconGridOffSharpFilled.tsx new file mode 100644 index 000000000..aff53c38e --- /dev/null +++ b/src/IconGridOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridOffSharpFilled as default } diff --git a/src/IconGridOnOutlinedFilled.tsx b/src/IconGridOnOutlinedFilled.tsx new file mode 100644 index 000000000..1eb818361 --- /dev/null +++ b/src/IconGridOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridOnOutlinedFilled as default } diff --git a/src/IconGridOnRoundedFilled.tsx b/src/IconGridOnRoundedFilled.tsx new file mode 100644 index 000000000..7e9fc5ee6 --- /dev/null +++ b/src/IconGridOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridOnRoundedFilled as default } diff --git a/src/IconGridOnSharpFilled.tsx b/src/IconGridOnSharpFilled.tsx new file mode 100644 index 000000000..02b4d799d --- /dev/null +++ b/src/IconGridOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridOnSharpFilled as default } diff --git a/src/IconGridViewOutlinedFilled.tsx b/src/IconGridViewOutlinedFilled.tsx new file mode 100644 index 000000000..76cb61d86 --- /dev/null +++ b/src/IconGridViewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridViewOutlinedFilled as default } diff --git a/src/IconGridViewRoundedFilled.tsx b/src/IconGridViewRoundedFilled.tsx new file mode 100644 index 000000000..bffaa4a6e --- /dev/null +++ b/src/IconGridViewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridViewRoundedFilled as default } diff --git a/src/IconGridViewSharpFilled.tsx b/src/IconGridViewSharpFilled.tsx new file mode 100644 index 000000000..9cbd85c3f --- /dev/null +++ b/src/IconGridViewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGridViewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGridViewSharpFilled as default } diff --git a/src/IconGroceryOutlinedFilled.tsx b/src/IconGroceryOutlinedFilled.tsx new file mode 100644 index 000000000..0878f57e5 --- /dev/null +++ b/src/IconGroceryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroceryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroceryOutlinedFilled as default } diff --git a/src/IconGroceryRoundedFilled.tsx b/src/IconGroceryRoundedFilled.tsx new file mode 100644 index 000000000..e24a37867 --- /dev/null +++ b/src/IconGroceryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroceryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroceryRoundedFilled as default } diff --git a/src/IconGrocerySharpFilled.tsx b/src/IconGrocerySharpFilled.tsx new file mode 100644 index 000000000..b1e6cc4fa --- /dev/null +++ b/src/IconGrocerySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGrocerySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGrocerySharpFilled as default } diff --git a/src/IconGroupAddOutlinedFilled.tsx b/src/IconGroupAddOutlinedFilled.tsx new file mode 100644 index 000000000..158648331 --- /dev/null +++ b/src/IconGroupAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupAddOutlinedFilled as default } diff --git a/src/IconGroupAddRoundedFilled.tsx b/src/IconGroupAddRoundedFilled.tsx new file mode 100644 index 000000000..7e8276964 --- /dev/null +++ b/src/IconGroupAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupAddRoundedFilled as default } diff --git a/src/IconGroupAddSharpFilled.tsx b/src/IconGroupAddSharpFilled.tsx new file mode 100644 index 000000000..e8542efa5 --- /dev/null +++ b/src/IconGroupAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupAddSharpFilled as default } diff --git a/src/IconGroupOffOutlinedFilled.tsx b/src/IconGroupOffOutlinedFilled.tsx new file mode 100644 index 000000000..a9443c70a --- /dev/null +++ b/src/IconGroupOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupOffOutlinedFilled as default } diff --git a/src/IconGroupOffRoundedFilled.tsx b/src/IconGroupOffRoundedFilled.tsx new file mode 100644 index 000000000..7e5b03259 --- /dev/null +++ b/src/IconGroupOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupOffRoundedFilled as default } diff --git a/src/IconGroupOffSharpFilled.tsx b/src/IconGroupOffSharpFilled.tsx new file mode 100644 index 000000000..9acab4f07 --- /dev/null +++ b/src/IconGroupOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupOffSharpFilled as default } diff --git a/src/IconGroupOutlinedFilled.tsx b/src/IconGroupOutlinedFilled.tsx new file mode 100644 index 000000000..5e3a96092 --- /dev/null +++ b/src/IconGroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupOutlinedFilled as default } diff --git a/src/IconGroupRemoveOutlinedFilled.tsx b/src/IconGroupRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..f9353ab54 --- /dev/null +++ b/src/IconGroupRemoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupRemoveOutlinedFilled as default } diff --git a/src/IconGroupRemoveRoundedFilled.tsx b/src/IconGroupRemoveRoundedFilled.tsx new file mode 100644 index 000000000..b7e9380dc --- /dev/null +++ b/src/IconGroupRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupRemoveRoundedFilled as default } diff --git a/src/IconGroupRemoveSharpFilled.tsx b/src/IconGroupRemoveSharpFilled.tsx new file mode 100644 index 000000000..871a12844 --- /dev/null +++ b/src/IconGroupRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupRemoveSharpFilled as default } diff --git a/src/IconGroupRoundedFilled.tsx b/src/IconGroupRoundedFilled.tsx new file mode 100644 index 000000000..0c5f63db1 --- /dev/null +++ b/src/IconGroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupRoundedFilled as default } diff --git a/src/IconGroupSharpFilled.tsx b/src/IconGroupSharpFilled.tsx new file mode 100644 index 000000000..cebe67e20 --- /dev/null +++ b/src/IconGroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupSharpFilled as default } diff --git a/src/IconGroupWorkOutlinedFilled.tsx b/src/IconGroupWorkOutlinedFilled.tsx new file mode 100644 index 000000000..5f8251cbc --- /dev/null +++ b/src/IconGroupWorkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupWorkOutlinedFilled as default } diff --git a/src/IconGroupWorkRoundedFilled.tsx b/src/IconGroupWorkRoundedFilled.tsx new file mode 100644 index 000000000..38669d243 --- /dev/null +++ b/src/IconGroupWorkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupWorkRoundedFilled as default } diff --git a/src/IconGroupWorkSharpFilled.tsx b/src/IconGroupWorkSharpFilled.tsx new file mode 100644 index 000000000..27e9c4ae7 --- /dev/null +++ b/src/IconGroupWorkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupWorkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupWorkSharpFilled as default } diff --git a/src/IconGroupedBarChartOutlinedFilled.tsx b/src/IconGroupedBarChartOutlinedFilled.tsx new file mode 100644 index 000000000..01dc904c0 --- /dev/null +++ b/src/IconGroupedBarChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupedBarChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupedBarChartOutlinedFilled as default } diff --git a/src/IconGroupedBarChartRoundedFilled.tsx b/src/IconGroupedBarChartRoundedFilled.tsx new file mode 100644 index 000000000..9ef704cbe --- /dev/null +++ b/src/IconGroupedBarChartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupedBarChartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupedBarChartRoundedFilled as default } diff --git a/src/IconGroupedBarChartSharpFilled.tsx b/src/IconGroupedBarChartSharpFilled.tsx new file mode 100644 index 000000000..b6d6ebb08 --- /dev/null +++ b/src/IconGroupedBarChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupedBarChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupedBarChartSharpFilled as default } diff --git a/src/IconGroups2OutlinedFilled.tsx b/src/IconGroups2OutlinedFilled.tsx new file mode 100644 index 000000000..04a34f7c7 --- /dev/null +++ b/src/IconGroups2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroups2OutlinedFilled as default } diff --git a/src/IconGroups2RoundedFilled.tsx b/src/IconGroups2RoundedFilled.tsx new file mode 100644 index 000000000..214df9955 --- /dev/null +++ b/src/IconGroups2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroups2RoundedFilled as default } diff --git a/src/IconGroups2SharpFilled.tsx b/src/IconGroups2SharpFilled.tsx new file mode 100644 index 000000000..96fdd7c6e --- /dev/null +++ b/src/IconGroups2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroups2SharpFilled as default } diff --git a/src/IconGroups3OutlinedFilled.tsx b/src/IconGroups3OutlinedFilled.tsx new file mode 100644 index 000000000..d4cc2e4c4 --- /dev/null +++ b/src/IconGroups3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroups3OutlinedFilled as default } diff --git a/src/IconGroups3RoundedFilled.tsx b/src/IconGroups3RoundedFilled.tsx new file mode 100644 index 000000000..71ee04953 --- /dev/null +++ b/src/IconGroups3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroups3RoundedFilled as default } diff --git a/src/IconGroups3SharpFilled.tsx b/src/IconGroups3SharpFilled.tsx new file mode 100644 index 000000000..4bb5dc5e7 --- /dev/null +++ b/src/IconGroups3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroups3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroups3SharpFilled as default } diff --git a/src/IconGroupsOutlinedFilled.tsx b/src/IconGroupsOutlinedFilled.tsx new file mode 100644 index 000000000..709b9c65a --- /dev/null +++ b/src/IconGroupsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupsOutlinedFilled as default } diff --git a/src/IconGroupsRoundedFilled.tsx b/src/IconGroupsRoundedFilled.tsx new file mode 100644 index 000000000..70225315c --- /dev/null +++ b/src/IconGroupsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupsRoundedFilled as default } diff --git a/src/IconGroupsSharpFilled.tsx b/src/IconGroupsSharpFilled.tsx new file mode 100644 index 000000000..d5dbf8a6a --- /dev/null +++ b/src/IconGroupsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGroupsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGroupsSharpFilled as default } diff --git a/src/IconGuardianOutlinedFilled.tsx b/src/IconGuardianOutlinedFilled.tsx new file mode 100644 index 000000000..f6e050e2e --- /dev/null +++ b/src/IconGuardianOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGuardianOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGuardianOutlinedFilled as default } diff --git a/src/IconGuardianRoundedFilled.tsx b/src/IconGuardianRoundedFilled.tsx new file mode 100644 index 000000000..8e2b77176 --- /dev/null +++ b/src/IconGuardianRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGuardianRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGuardianRoundedFilled as default } diff --git a/src/IconGuardianSharpFilled.tsx b/src/IconGuardianSharpFilled.tsx new file mode 100644 index 000000000..c1e50fc04 --- /dev/null +++ b/src/IconGuardianSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGuardianSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGuardianSharpFilled as default } diff --git a/src/IconGynecologyOutlinedFilled.tsx b/src/IconGynecologyOutlinedFilled.tsx new file mode 100644 index 000000000..15cc9aa0e --- /dev/null +++ b/src/IconGynecologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGynecologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGynecologyOutlinedFilled as default } diff --git a/src/IconGynecologyRoundedFilled.tsx b/src/IconGynecologyRoundedFilled.tsx new file mode 100644 index 000000000..d475730a7 --- /dev/null +++ b/src/IconGynecologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGynecologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGynecologyRoundedFilled as default } diff --git a/src/IconGynecologySharpFilled.tsx b/src/IconGynecologySharpFilled.tsx new file mode 100644 index 000000000..978c8f713 --- /dev/null +++ b/src/IconGynecologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconGynecologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconGynecologySharpFilled as default } diff --git a/src/IconHMobiledataBadgeOutlinedFilled.tsx b/src/IconHMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..efab6832a --- /dev/null +++ b/src/IconHMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconHMobiledataBadgeRoundedFilled.tsx b/src/IconHMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..cb58c7e8a --- /dev/null +++ b/src/IconHMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHMobiledataBadgeRoundedFilled as default } diff --git a/src/IconHMobiledataBadgeSharpFilled.tsx b/src/IconHMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..8e8ea9c03 --- /dev/null +++ b/src/IconHMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataBadgeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHMobiledataBadgeSharpFilled as default } diff --git a/src/IconHMobiledataOutlinedFilled.tsx b/src/IconHMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..f57d4973c --- /dev/null +++ b/src/IconHMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHMobiledataOutlinedFilled as default } diff --git a/src/IconHMobiledataRoundedFilled.tsx b/src/IconHMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..0e2325ad2 --- /dev/null +++ b/src/IconHMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHMobiledataRoundedFilled as default } diff --git a/src/IconHMobiledataSharpFilled.tsx b/src/IconHMobiledataSharpFilled.tsx new file mode 100644 index 000000000..53ec5a27c --- /dev/null +++ b/src/IconHMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHMobiledataSharpFilled as default } diff --git a/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx b/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..d91316562 --- /dev/null +++ b/src/IconHPlusMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHPlusMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconHPlusMobiledataBadgeRoundedFilled.tsx b/src/IconHPlusMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..7d4616262 --- /dev/null +++ b/src/IconHPlusMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHPlusMobiledataBadgeRoundedFilled as default } diff --git a/src/IconHPlusMobiledataBadgeSharpFilled.tsx b/src/IconHPlusMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..2a391fef3 --- /dev/null +++ b/src/IconHPlusMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHPlusMobiledataBadgeSharpFilled as default } diff --git a/src/IconHPlusMobiledataOutlinedFilled.tsx b/src/IconHPlusMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..0d73a7aba --- /dev/null +++ b/src/IconHPlusMobiledataOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHPlusMobiledataOutlinedFilled as default } diff --git a/src/IconHPlusMobiledataRoundedFilled.tsx b/src/IconHPlusMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..c21f6d0db --- /dev/null +++ b/src/IconHPlusMobiledataRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHPlusMobiledataRoundedFilled as default } diff --git a/src/IconHPlusMobiledataSharpFilled.tsx b/src/IconHPlusMobiledataSharpFilled.tsx new file mode 100644 index 000000000..4a636d631 --- /dev/null +++ b/src/IconHPlusMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHPlusMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHPlusMobiledataSharpFilled as default } diff --git a/src/IconHailOutlinedFilled.tsx b/src/IconHailOutlinedFilled.tsx new file mode 100644 index 000000000..d60c8c2ab --- /dev/null +++ b/src/IconHailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHailOutlinedFilled as default } diff --git a/src/IconHailRoundedFilled.tsx b/src/IconHailRoundedFilled.tsx new file mode 100644 index 000000000..92b934186 --- /dev/null +++ b/src/IconHailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHailRoundedFilled as default } diff --git a/src/IconHailSharpFilled.tsx b/src/IconHailSharpFilled.tsx new file mode 100644 index 000000000..690ca8653 --- /dev/null +++ b/src/IconHailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHailSharpFilled as default } diff --git a/src/IconHallwayOutlinedFilled.tsx b/src/IconHallwayOutlinedFilled.tsx new file mode 100644 index 000000000..1ec34d3b3 --- /dev/null +++ b/src/IconHallwayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHallwayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHallwayOutlinedFilled as default } diff --git a/src/IconHallwayRoundedFilled.tsx b/src/IconHallwayRoundedFilled.tsx new file mode 100644 index 000000000..99f58988e --- /dev/null +++ b/src/IconHallwayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHallwayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHallwayRoundedFilled as default } diff --git a/src/IconHallwaySharpFilled.tsx b/src/IconHallwaySharpFilled.tsx new file mode 100644 index 000000000..4861c198c --- /dev/null +++ b/src/IconHallwaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHallwaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHallwaySharpFilled as default } diff --git a/src/IconHandBonesOutlinedFilled.tsx b/src/IconHandBonesOutlinedFilled.tsx new file mode 100644 index 000000000..c4c712fa6 --- /dev/null +++ b/src/IconHandBonesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandBonesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandBonesOutlinedFilled as default } diff --git a/src/IconHandBonesRoundedFilled.tsx b/src/IconHandBonesRoundedFilled.tsx new file mode 100644 index 000000000..a4850000e --- /dev/null +++ b/src/IconHandBonesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandBonesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandBonesRoundedFilled as default } diff --git a/src/IconHandBonesSharpFilled.tsx b/src/IconHandBonesSharpFilled.tsx new file mode 100644 index 000000000..a5b79f76c --- /dev/null +++ b/src/IconHandBonesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandBonesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandBonesSharpFilled as default } diff --git a/src/IconHandGestureOffOutlinedFilled.tsx b/src/IconHandGestureOffOutlinedFilled.tsx new file mode 100644 index 000000000..5fdcaf5ce --- /dev/null +++ b/src/IconHandGestureOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandGestureOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHandGestureOffOutlinedFilled as default } diff --git a/src/IconHandGestureOffRoundedFilled.tsx b/src/IconHandGestureOffRoundedFilled.tsx new file mode 100644 index 000000000..8526a66a3 --- /dev/null +++ b/src/IconHandGestureOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandGestureOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandGestureOffRoundedFilled as default } diff --git a/src/IconHandGestureOffSharpFilled.tsx b/src/IconHandGestureOffSharpFilled.tsx new file mode 100644 index 000000000..10e61f13e --- /dev/null +++ b/src/IconHandGestureOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandGestureOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandGestureOffSharpFilled as default } diff --git a/src/IconHandGestureOutlinedFilled.tsx b/src/IconHandGestureOutlinedFilled.tsx new file mode 100644 index 000000000..51fb1b0f8 --- /dev/null +++ b/src/IconHandGestureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandGestureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandGestureOutlinedFilled as default } diff --git a/src/IconHandGestureRoundedFilled.tsx b/src/IconHandGestureRoundedFilled.tsx new file mode 100644 index 000000000..57dad7523 --- /dev/null +++ b/src/IconHandGestureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandGestureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandGestureRoundedFilled as default } diff --git a/src/IconHandGestureSharpFilled.tsx b/src/IconHandGestureSharpFilled.tsx new file mode 100644 index 000000000..10c8cc1ae --- /dev/null +++ b/src/IconHandGestureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandGestureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandGestureSharpFilled as default } diff --git a/src/IconHandheldControllerOutlinedFilled.tsx b/src/IconHandheldControllerOutlinedFilled.tsx new file mode 100644 index 000000000..8dfe8a005 --- /dev/null +++ b/src/IconHandheldControllerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandheldControllerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHandheldControllerOutlinedFilled as default } diff --git a/src/IconHandheldControllerRoundedFilled.tsx b/src/IconHandheldControllerRoundedFilled.tsx new file mode 100644 index 000000000..7f7a40490 --- /dev/null +++ b/src/IconHandheldControllerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandheldControllerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHandheldControllerRoundedFilled as default } diff --git a/src/IconHandheldControllerSharpFilled.tsx b/src/IconHandheldControllerSharpFilled.tsx new file mode 100644 index 000000000..5a2953af5 --- /dev/null +++ b/src/IconHandheldControllerSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandheldControllerSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHandheldControllerSharpFilled as default } diff --git a/src/IconHandshakeOutlinedFilled.tsx b/src/IconHandshakeOutlinedFilled.tsx new file mode 100644 index 000000000..59d770ee8 --- /dev/null +++ b/src/IconHandshakeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandshakeOutlinedFilled as default } diff --git a/src/IconHandshakeRoundedFilled.tsx b/src/IconHandshakeRoundedFilled.tsx new file mode 100644 index 000000000..596788916 --- /dev/null +++ b/src/IconHandshakeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandshakeRoundedFilled as default } diff --git a/src/IconHandshakeSharpFilled.tsx b/src/IconHandshakeSharpFilled.tsx new file mode 100644 index 000000000..4a94ed52d --- /dev/null +++ b/src/IconHandshakeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandshakeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandshakeSharpFilled as default } diff --git a/src/IconHandymanOutlinedFilled.tsx b/src/IconHandymanOutlinedFilled.tsx new file mode 100644 index 000000000..f870171f3 --- /dev/null +++ b/src/IconHandymanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandymanOutlinedFilled as default } diff --git a/src/IconHandymanRoundedFilled.tsx b/src/IconHandymanRoundedFilled.tsx new file mode 100644 index 000000000..fca2d829e --- /dev/null +++ b/src/IconHandymanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandymanRoundedFilled as default } diff --git a/src/IconHandymanSharpFilled.tsx b/src/IconHandymanSharpFilled.tsx new file mode 100644 index 000000000..3636fd3d2 --- /dev/null +++ b/src/IconHandymanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHandymanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHandymanSharpFilled as default } diff --git a/src/IconHangoutVideoOffOutlinedFilled.tsx b/src/IconHangoutVideoOffOutlinedFilled.tsx new file mode 100644 index 000000000..585bd6a61 --- /dev/null +++ b/src/IconHangoutVideoOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHangoutVideoOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHangoutVideoOffOutlinedFilled as default } diff --git a/src/IconHangoutVideoOffRoundedFilled.tsx b/src/IconHangoutVideoOffRoundedFilled.tsx new file mode 100644 index 000000000..dd07d451d --- /dev/null +++ b/src/IconHangoutVideoOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHangoutVideoOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHangoutVideoOffRoundedFilled as default } diff --git a/src/IconHangoutVideoOffSharpFilled.tsx b/src/IconHangoutVideoOffSharpFilled.tsx new file mode 100644 index 000000000..cac640e1c --- /dev/null +++ b/src/IconHangoutVideoOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHangoutVideoOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHangoutVideoOffSharpFilled as default } diff --git a/src/IconHangoutVideoOutlinedFilled.tsx b/src/IconHangoutVideoOutlinedFilled.tsx new file mode 100644 index 000000000..f0eb96be7 --- /dev/null +++ b/src/IconHangoutVideoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHangoutVideoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHangoutVideoOutlinedFilled as default } diff --git a/src/IconHangoutVideoRoundedFilled.tsx b/src/IconHangoutVideoRoundedFilled.tsx new file mode 100644 index 000000000..5119d565f --- /dev/null +++ b/src/IconHangoutVideoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHangoutVideoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHangoutVideoRoundedFilled as default } diff --git a/src/IconHangoutVideoSharpFilled.tsx b/src/IconHangoutVideoSharpFilled.tsx new file mode 100644 index 000000000..f3d3fd05f --- /dev/null +++ b/src/IconHangoutVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHangoutVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHangoutVideoSharpFilled as default } diff --git a/src/IconHardDrive2OutlinedFilled.tsx b/src/IconHardDrive2OutlinedFilled.tsx new file mode 100644 index 000000000..60f6dede8 --- /dev/null +++ b/src/IconHardDrive2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardDrive2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardDrive2OutlinedFilled as default } diff --git a/src/IconHardDrive2RoundedFilled.tsx b/src/IconHardDrive2RoundedFilled.tsx new file mode 100644 index 000000000..d70210e34 --- /dev/null +++ b/src/IconHardDrive2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardDrive2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardDrive2RoundedFilled as default } diff --git a/src/IconHardDrive2SharpFilled.tsx b/src/IconHardDrive2SharpFilled.tsx new file mode 100644 index 000000000..71358b2af --- /dev/null +++ b/src/IconHardDrive2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardDrive2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardDrive2SharpFilled as default } diff --git a/src/IconHardDriveOutlinedFilled.tsx b/src/IconHardDriveOutlinedFilled.tsx new file mode 100644 index 000000000..307217270 --- /dev/null +++ b/src/IconHardDriveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardDriveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardDriveOutlinedFilled as default } diff --git a/src/IconHardDriveRoundedFilled.tsx b/src/IconHardDriveRoundedFilled.tsx new file mode 100644 index 000000000..6f55cda9e --- /dev/null +++ b/src/IconHardDriveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardDriveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardDriveRoundedFilled as default } diff --git a/src/IconHardDriveSharpFilled.tsx b/src/IconHardDriveSharpFilled.tsx new file mode 100644 index 000000000..998dd8695 --- /dev/null +++ b/src/IconHardDriveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardDriveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardDriveSharpFilled as default } diff --git a/src/IconHardwareOutlinedFilled.tsx b/src/IconHardwareOutlinedFilled.tsx new file mode 100644 index 000000000..4e443a8cc --- /dev/null +++ b/src/IconHardwareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardwareOutlinedFilled as default } diff --git a/src/IconHardwareRoundedFilled.tsx b/src/IconHardwareRoundedFilled.tsx new file mode 100644 index 000000000..4daf1ec64 --- /dev/null +++ b/src/IconHardwareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardwareRoundedFilled as default } diff --git a/src/IconHardwareSharpFilled.tsx b/src/IconHardwareSharpFilled.tsx new file mode 100644 index 000000000..77d7db216 --- /dev/null +++ b/src/IconHardwareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHardwareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHardwareSharpFilled as default } diff --git a/src/IconHdOutlinedFilled.tsx b/src/IconHdOutlinedFilled.tsx new file mode 100644 index 000000000..75ff43498 --- /dev/null +++ b/src/IconHdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdOutlinedFilled as default } diff --git a/src/IconHdRoundedFilled.tsx b/src/IconHdRoundedFilled.tsx new file mode 100644 index 000000000..19dcd2034 --- /dev/null +++ b/src/IconHdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdRoundedFilled as default } diff --git a/src/IconHdSharpFilled.tsx b/src/IconHdSharpFilled.tsx new file mode 100644 index 000000000..271a08ae5 --- /dev/null +++ b/src/IconHdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdSharpFilled as default } diff --git a/src/IconHdrAutoOutlinedFilled.tsx b/src/IconHdrAutoOutlinedFilled.tsx new file mode 100644 index 000000000..1c84aaa0e --- /dev/null +++ b/src/IconHdrAutoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrAutoOutlinedFilled as default } diff --git a/src/IconHdrAutoRoundedFilled.tsx b/src/IconHdrAutoRoundedFilled.tsx new file mode 100644 index 000000000..6b8f255fa --- /dev/null +++ b/src/IconHdrAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrAutoRoundedFilled as default } diff --git a/src/IconHdrAutoSelectOutlinedFilled.tsx b/src/IconHdrAutoSelectOutlinedFilled.tsx new file mode 100644 index 000000000..652484696 --- /dev/null +++ b/src/IconHdrAutoSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrAutoSelectOutlinedFilled as default } diff --git a/src/IconHdrAutoSelectRoundedFilled.tsx b/src/IconHdrAutoSelectRoundedFilled.tsx new file mode 100644 index 000000000..b4e73be64 --- /dev/null +++ b/src/IconHdrAutoSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrAutoSelectRoundedFilled as default } diff --git a/src/IconHdrAutoSelectSharpFilled.tsx b/src/IconHdrAutoSelectSharpFilled.tsx new file mode 100644 index 000000000..5f121db53 --- /dev/null +++ b/src/IconHdrAutoSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrAutoSelectSharpFilled as default } diff --git a/src/IconHdrAutoSharpFilled.tsx b/src/IconHdrAutoSharpFilled.tsx new file mode 100644 index 000000000..592bcbf82 --- /dev/null +++ b/src/IconHdrAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrAutoSharpFilled as default } diff --git a/src/IconHdrEnhancedSelectOutlinedFilled.tsx b/src/IconHdrEnhancedSelectOutlinedFilled.tsx new file mode 100644 index 000000000..349e6b890 --- /dev/null +++ b/src/IconHdrEnhancedSelectOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrEnhancedSelectOutlinedFilled as default } diff --git a/src/IconHdrEnhancedSelectRoundedFilled.tsx b/src/IconHdrEnhancedSelectRoundedFilled.tsx new file mode 100644 index 000000000..e13769ab4 --- /dev/null +++ b/src/IconHdrEnhancedSelectRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrEnhancedSelectRoundedFilled as default } diff --git a/src/IconHdrEnhancedSelectSharpFilled.tsx b/src/IconHdrEnhancedSelectSharpFilled.tsx new file mode 100644 index 000000000..5c5052b72 --- /dev/null +++ b/src/IconHdrEnhancedSelectSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrEnhancedSelectSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrEnhancedSelectSharpFilled as default } diff --git a/src/IconHdrOffOutlinedFilled.tsx b/src/IconHdrOffOutlinedFilled.tsx new file mode 100644 index 000000000..00b7686e5 --- /dev/null +++ b/src/IconHdrOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOffOutlinedFilled as default } diff --git a/src/IconHdrOffRoundedFilled.tsx b/src/IconHdrOffRoundedFilled.tsx new file mode 100644 index 000000000..addeb60ae --- /dev/null +++ b/src/IconHdrOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOffRoundedFilled as default } diff --git a/src/IconHdrOffSelectOutlinedFilled.tsx b/src/IconHdrOffSelectOutlinedFilled.tsx new file mode 100644 index 000000000..b83d02f13 --- /dev/null +++ b/src/IconHdrOffSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOffSelectOutlinedFilled as default } diff --git a/src/IconHdrOffSelectRoundedFilled.tsx b/src/IconHdrOffSelectRoundedFilled.tsx new file mode 100644 index 000000000..830c376ba --- /dev/null +++ b/src/IconHdrOffSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOffSelectRoundedFilled as default } diff --git a/src/IconHdrOffSelectSharpFilled.tsx b/src/IconHdrOffSelectSharpFilled.tsx new file mode 100644 index 000000000..e9c625a58 --- /dev/null +++ b/src/IconHdrOffSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOffSelectSharpFilled as default } diff --git a/src/IconHdrOffSharpFilled.tsx b/src/IconHdrOffSharpFilled.tsx new file mode 100644 index 000000000..a96e6aac3 --- /dev/null +++ b/src/IconHdrOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOffSharpFilled as default } diff --git a/src/IconHdrOnOutlinedFilled.tsx b/src/IconHdrOnOutlinedFilled.tsx new file mode 100644 index 000000000..04959a1e6 --- /dev/null +++ b/src/IconHdrOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOnOutlinedFilled as default } diff --git a/src/IconHdrOnRoundedFilled.tsx b/src/IconHdrOnRoundedFilled.tsx new file mode 100644 index 000000000..d55ef125f --- /dev/null +++ b/src/IconHdrOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOnRoundedFilled as default } diff --git a/src/IconHdrOnSelectOutlinedFilled.tsx b/src/IconHdrOnSelectOutlinedFilled.tsx new file mode 100644 index 000000000..b5d0b64ea --- /dev/null +++ b/src/IconHdrOnSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOnSelectOutlinedFilled as default } diff --git a/src/IconHdrOnSelectRoundedFilled.tsx b/src/IconHdrOnSelectRoundedFilled.tsx new file mode 100644 index 000000000..d09fc08fa --- /dev/null +++ b/src/IconHdrOnSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOnSelectRoundedFilled as default } diff --git a/src/IconHdrOnSelectSharpFilled.tsx b/src/IconHdrOnSelectSharpFilled.tsx new file mode 100644 index 000000000..4c23fd145 --- /dev/null +++ b/src/IconHdrOnSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOnSelectSharpFilled as default } diff --git a/src/IconHdrOnSharpFilled.tsx b/src/IconHdrOnSharpFilled.tsx new file mode 100644 index 000000000..f9c8afacd --- /dev/null +++ b/src/IconHdrOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrOnSharpFilled as default } diff --git a/src/IconHdrPlusOffOutlinedFilled.tsx b/src/IconHdrPlusOffOutlinedFilled.tsx new file mode 100644 index 000000000..67fe72b1f --- /dev/null +++ b/src/IconHdrPlusOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrPlusOffOutlinedFilled as default } diff --git a/src/IconHdrPlusOffRoundedFilled.tsx b/src/IconHdrPlusOffRoundedFilled.tsx new file mode 100644 index 000000000..4c12651c3 --- /dev/null +++ b/src/IconHdrPlusOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrPlusOffRoundedFilled as default } diff --git a/src/IconHdrPlusOffSharpFilled.tsx b/src/IconHdrPlusOffSharpFilled.tsx new file mode 100644 index 000000000..52e7f9642 --- /dev/null +++ b/src/IconHdrPlusOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrPlusOffSharpFilled as default } diff --git a/src/IconHdrPlusOutlinedFilled.tsx b/src/IconHdrPlusOutlinedFilled.tsx new file mode 100644 index 000000000..4e70578ed --- /dev/null +++ b/src/IconHdrPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrPlusOutlinedFilled as default } diff --git a/src/IconHdrPlusRoundedFilled.tsx b/src/IconHdrPlusRoundedFilled.tsx new file mode 100644 index 000000000..e39377241 --- /dev/null +++ b/src/IconHdrPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrPlusRoundedFilled as default } diff --git a/src/IconHdrPlusSharpFilled.tsx b/src/IconHdrPlusSharpFilled.tsx new file mode 100644 index 000000000..43d3357fc --- /dev/null +++ b/src/IconHdrPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrPlusSharpFilled as default } diff --git a/src/IconHdrStrongOutlinedFilled.tsx b/src/IconHdrStrongOutlinedFilled.tsx new file mode 100644 index 000000000..c0e37b334 --- /dev/null +++ b/src/IconHdrStrongOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrStrongOutlinedFilled as default } diff --git a/src/IconHdrStrongRoundedFilled.tsx b/src/IconHdrStrongRoundedFilled.tsx new file mode 100644 index 000000000..ff60a5772 --- /dev/null +++ b/src/IconHdrStrongRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrStrongRoundedFilled as default } diff --git a/src/IconHdrStrongSharpFilled.tsx b/src/IconHdrStrongSharpFilled.tsx new file mode 100644 index 000000000..eb1eecff8 --- /dev/null +++ b/src/IconHdrStrongSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrStrongSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrStrongSharpFilled as default } diff --git a/src/IconHdrWeakOutlinedFilled.tsx b/src/IconHdrWeakOutlinedFilled.tsx new file mode 100644 index 000000000..bb0c8ad0b --- /dev/null +++ b/src/IconHdrWeakOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrWeakOutlinedFilled as default } diff --git a/src/IconHdrWeakRoundedFilled.tsx b/src/IconHdrWeakRoundedFilled.tsx new file mode 100644 index 000000000..2f33b0baa --- /dev/null +++ b/src/IconHdrWeakRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrWeakRoundedFilled as default } diff --git a/src/IconHdrWeakSharpFilled.tsx b/src/IconHdrWeakSharpFilled.tsx new file mode 100644 index 000000000..19336bcab --- /dev/null +++ b/src/IconHdrWeakSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHdrWeakSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHdrWeakSharpFilled as default } diff --git a/src/IconHeadMountedDeviceOutlinedFilled.tsx b/src/IconHeadMountedDeviceOutlinedFilled.tsx new file mode 100644 index 000000000..a945f7717 --- /dev/null +++ b/src/IconHeadMountedDeviceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadMountedDeviceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadMountedDeviceOutlinedFilled as default } diff --git a/src/IconHeadMountedDeviceRoundedFilled.tsx b/src/IconHeadMountedDeviceRoundedFilled.tsx new file mode 100644 index 000000000..e847da8ba --- /dev/null +++ b/src/IconHeadMountedDeviceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadMountedDeviceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadMountedDeviceRoundedFilled as default } diff --git a/src/IconHeadMountedDeviceSharpFilled.tsx b/src/IconHeadMountedDeviceSharpFilled.tsx new file mode 100644 index 000000000..f686476ea --- /dev/null +++ b/src/IconHeadMountedDeviceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadMountedDeviceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadMountedDeviceSharpFilled as default } diff --git a/src/IconHeadphonesBatteryOutlinedFilled.tsx b/src/IconHeadphonesBatteryOutlinedFilled.tsx new file mode 100644 index 000000000..479ba1b62 --- /dev/null +++ b/src/IconHeadphonesBatteryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatteryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadphonesBatteryOutlinedFilled as default } diff --git a/src/IconHeadphonesBatteryRoundedFilled.tsx b/src/IconHeadphonesBatteryRoundedFilled.tsx new file mode 100644 index 000000000..29401cc4d --- /dev/null +++ b/src/IconHeadphonesBatteryRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatteryRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadphonesBatteryRoundedFilled as default } diff --git a/src/IconHeadphonesBatterySharpFilled.tsx b/src/IconHeadphonesBatterySharpFilled.tsx new file mode 100644 index 000000000..1d0b31015 --- /dev/null +++ b/src/IconHeadphonesBatterySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesBatterySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadphonesBatterySharpFilled as default } diff --git a/src/IconHeadphonesOutlinedFilled.tsx b/src/IconHeadphonesOutlinedFilled.tsx new file mode 100644 index 000000000..7ebd9ac08 --- /dev/null +++ b/src/IconHeadphonesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadphonesOutlinedFilled as default } diff --git a/src/IconHeadphonesRoundedFilled.tsx b/src/IconHeadphonesRoundedFilled.tsx new file mode 100644 index 000000000..e82dac5ac --- /dev/null +++ b/src/IconHeadphonesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadphonesRoundedFilled as default } diff --git a/src/IconHeadphonesSharpFilled.tsx b/src/IconHeadphonesSharpFilled.tsx new file mode 100644 index 000000000..9b9d506b6 --- /dev/null +++ b/src/IconHeadphonesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadphonesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadphonesSharpFilled as default } diff --git a/src/IconHeadsetMicOutlinedFilled.tsx b/src/IconHeadsetMicOutlinedFilled.tsx new file mode 100644 index 000000000..a06b4789f --- /dev/null +++ b/src/IconHeadsetMicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetMicOutlinedFilled as default } diff --git a/src/IconHeadsetMicRoundedFilled.tsx b/src/IconHeadsetMicRoundedFilled.tsx new file mode 100644 index 000000000..419b1c683 --- /dev/null +++ b/src/IconHeadsetMicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetMicRoundedFilled as default } diff --git a/src/IconHeadsetMicSharpFilled.tsx b/src/IconHeadsetMicSharpFilled.tsx new file mode 100644 index 000000000..1a17ebadb --- /dev/null +++ b/src/IconHeadsetMicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetMicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetMicSharpFilled as default } diff --git a/src/IconHeadsetOffOutlinedFilled.tsx b/src/IconHeadsetOffOutlinedFilled.tsx new file mode 100644 index 000000000..89a1f2acd --- /dev/null +++ b/src/IconHeadsetOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetOffOutlinedFilled as default } diff --git a/src/IconHeadsetOffRoundedFilled.tsx b/src/IconHeadsetOffRoundedFilled.tsx new file mode 100644 index 000000000..e67b28573 --- /dev/null +++ b/src/IconHeadsetOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetOffRoundedFilled as default } diff --git a/src/IconHeadsetOffSharpFilled.tsx b/src/IconHeadsetOffSharpFilled.tsx new file mode 100644 index 000000000..29d2cd117 --- /dev/null +++ b/src/IconHeadsetOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeadsetOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeadsetOffSharpFilled as default } diff --git a/src/IconHealingOutlinedFilled.tsx b/src/IconHealingOutlinedFilled.tsx new file mode 100644 index 000000000..10ccd5817 --- /dev/null +++ b/src/IconHealingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealingOutlinedFilled as default } diff --git a/src/IconHealingRoundedFilled.tsx b/src/IconHealingRoundedFilled.tsx new file mode 100644 index 000000000..9af571726 --- /dev/null +++ b/src/IconHealingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealingRoundedFilled as default } diff --git a/src/IconHealingSharpFilled.tsx b/src/IconHealingSharpFilled.tsx new file mode 100644 index 000000000..1614215c9 --- /dev/null +++ b/src/IconHealingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealingSharpFilled as default } diff --git a/src/IconHealthAndBeautyOutlinedFilled.tsx b/src/IconHealthAndBeautyOutlinedFilled.tsx new file mode 100644 index 000000000..dcf3b5509 --- /dev/null +++ b/src/IconHealthAndBeautyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndBeautyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthAndBeautyOutlinedFilled as default } diff --git a/src/IconHealthAndBeautyRoundedFilled.tsx b/src/IconHealthAndBeautyRoundedFilled.tsx new file mode 100644 index 000000000..569572591 --- /dev/null +++ b/src/IconHealthAndBeautyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndBeautyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthAndBeautyRoundedFilled as default } diff --git a/src/IconHealthAndBeautySharpFilled.tsx b/src/IconHealthAndBeautySharpFilled.tsx new file mode 100644 index 000000000..6a1b23c97 --- /dev/null +++ b/src/IconHealthAndBeautySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndBeautySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthAndBeautySharpFilled as default } diff --git a/src/IconHealthAndSafetyOutlinedFilled.tsx b/src/IconHealthAndSafetyOutlinedFilled.tsx new file mode 100644 index 000000000..1169c8473 --- /dev/null +++ b/src/IconHealthAndSafetyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthAndSafetyOutlinedFilled as default } diff --git a/src/IconHealthAndSafetyRoundedFilled.tsx b/src/IconHealthAndSafetyRoundedFilled.tsx new file mode 100644 index 000000000..f83089fa5 --- /dev/null +++ b/src/IconHealthAndSafetyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthAndSafetyRoundedFilled as default } diff --git a/src/IconHealthAndSafetySharpFilled.tsx b/src/IconHealthAndSafetySharpFilled.tsx new file mode 100644 index 000000000..7b747686d --- /dev/null +++ b/src/IconHealthAndSafetySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthAndSafetySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthAndSafetySharpFilled as default } diff --git a/src/IconHealthMetricsOutlinedFilled.tsx b/src/IconHealthMetricsOutlinedFilled.tsx new file mode 100644 index 000000000..57ab1e86c --- /dev/null +++ b/src/IconHealthMetricsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthMetricsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthMetricsOutlinedFilled as default } diff --git a/src/IconHealthMetricsRoundedFilled.tsx b/src/IconHealthMetricsRoundedFilled.tsx new file mode 100644 index 000000000..54975d0cc --- /dev/null +++ b/src/IconHealthMetricsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthMetricsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthMetricsRoundedFilled as default } diff --git a/src/IconHealthMetricsSharpFilled.tsx b/src/IconHealthMetricsSharpFilled.tsx new file mode 100644 index 000000000..d9ed3ca29 --- /dev/null +++ b/src/IconHealthMetricsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHealthMetricsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHealthMetricsSharpFilled as default } diff --git a/src/IconHeapSnapshotLargeOutlinedFilled.tsx b/src/IconHeapSnapshotLargeOutlinedFilled.tsx new file mode 100644 index 000000000..709fc22ed --- /dev/null +++ b/src/IconHeapSnapshotLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotLargeOutlinedFilled as default } diff --git a/src/IconHeapSnapshotLargeRoundedFilled.tsx b/src/IconHeapSnapshotLargeRoundedFilled.tsx new file mode 100644 index 000000000..2aa2e0a59 --- /dev/null +++ b/src/IconHeapSnapshotLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotLargeRoundedFilled as default } diff --git a/src/IconHeapSnapshotLargeSharpFilled.tsx b/src/IconHeapSnapshotLargeSharpFilled.tsx new file mode 100644 index 000000000..c5196b7a2 --- /dev/null +++ b/src/IconHeapSnapshotLargeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotLargeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotLargeSharpFilled as default } diff --git a/src/IconHeapSnapshotMultipleOutlinedFilled.tsx b/src/IconHeapSnapshotMultipleOutlinedFilled.tsx new file mode 100644 index 000000000..9e47d3278 --- /dev/null +++ b/src/IconHeapSnapshotMultipleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotMultipleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotMultipleOutlinedFilled as default } diff --git a/src/IconHeapSnapshotMultipleRoundedFilled.tsx b/src/IconHeapSnapshotMultipleRoundedFilled.tsx new file mode 100644 index 000000000..11864bcc1 --- /dev/null +++ b/src/IconHeapSnapshotMultipleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotMultipleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotMultipleRoundedFilled as default } diff --git a/src/IconHeapSnapshotMultipleSharpFilled.tsx b/src/IconHeapSnapshotMultipleSharpFilled.tsx new file mode 100644 index 000000000..a228bd127 --- /dev/null +++ b/src/IconHeapSnapshotMultipleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotMultipleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotMultipleSharpFilled as default } diff --git a/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx b/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx new file mode 100644 index 000000000..6f5aa2809 --- /dev/null +++ b/src/IconHeapSnapshotThumbnailOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotThumbnailOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotThumbnailOutlinedFilled as default } diff --git a/src/IconHeapSnapshotThumbnailRoundedFilled.tsx b/src/IconHeapSnapshotThumbnailRoundedFilled.tsx new file mode 100644 index 000000000..535f70f8b --- /dev/null +++ b/src/IconHeapSnapshotThumbnailRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotThumbnailRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotThumbnailRoundedFilled as default } diff --git a/src/IconHeapSnapshotThumbnailSharpFilled.tsx b/src/IconHeapSnapshotThumbnailSharpFilled.tsx new file mode 100644 index 000000000..bb817bb45 --- /dev/null +++ b/src/IconHeapSnapshotThumbnailSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeapSnapshotThumbnailSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeapSnapshotThumbnailSharpFilled as default } diff --git a/src/IconHearingAidOutlinedFilled.tsx b/src/IconHearingAidOutlinedFilled.tsx new file mode 100644 index 000000000..9ba267d7a --- /dev/null +++ b/src/IconHearingAidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingAidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingAidOutlinedFilled as default } diff --git a/src/IconHearingAidRoundedFilled.tsx b/src/IconHearingAidRoundedFilled.tsx new file mode 100644 index 000000000..f4e9a6bcf --- /dev/null +++ b/src/IconHearingAidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingAidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingAidRoundedFilled as default } diff --git a/src/IconHearingAidSharpFilled.tsx b/src/IconHearingAidSharpFilled.tsx new file mode 100644 index 000000000..59cf14ecc --- /dev/null +++ b/src/IconHearingAidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingAidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingAidSharpFilled as default } diff --git a/src/IconHearingDisabledOutlinedFilled.tsx b/src/IconHearingDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..4dea44dc9 --- /dev/null +++ b/src/IconHearingDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingDisabledOutlinedFilled as default } diff --git a/src/IconHearingDisabledRoundedFilled.tsx b/src/IconHearingDisabledRoundedFilled.tsx new file mode 100644 index 000000000..7cfc5260f --- /dev/null +++ b/src/IconHearingDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingDisabledRoundedFilled as default } diff --git a/src/IconHearingDisabledSharpFilled.tsx b/src/IconHearingDisabledSharpFilled.tsx new file mode 100644 index 000000000..c6de8f8c6 --- /dev/null +++ b/src/IconHearingDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingDisabledSharpFilled as default } diff --git a/src/IconHearingOutlinedFilled.tsx b/src/IconHearingOutlinedFilled.tsx new file mode 100644 index 000000000..73640c84a --- /dev/null +++ b/src/IconHearingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingOutlinedFilled as default } diff --git a/src/IconHearingRoundedFilled.tsx b/src/IconHearingRoundedFilled.tsx new file mode 100644 index 000000000..aec715f84 --- /dev/null +++ b/src/IconHearingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingRoundedFilled as default } diff --git a/src/IconHearingSharpFilled.tsx b/src/IconHearingSharpFilled.tsx new file mode 100644 index 000000000..24b0f45ec --- /dev/null +++ b/src/IconHearingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHearingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHearingSharpFilled as default } diff --git a/src/IconHeartBrokenOutlinedFilled.tsx b/src/IconHeartBrokenOutlinedFilled.tsx new file mode 100644 index 000000000..c8b8287e7 --- /dev/null +++ b/src/IconHeartBrokenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartBrokenOutlinedFilled as default } diff --git a/src/IconHeartBrokenRoundedFilled.tsx b/src/IconHeartBrokenRoundedFilled.tsx new file mode 100644 index 000000000..17d43c5ea --- /dev/null +++ b/src/IconHeartBrokenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartBrokenRoundedFilled as default } diff --git a/src/IconHeartBrokenSharpFilled.tsx b/src/IconHeartBrokenSharpFilled.tsx new file mode 100644 index 000000000..e6aa89122 --- /dev/null +++ b/src/IconHeartBrokenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartBrokenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartBrokenSharpFilled as default } diff --git a/src/IconHeartCheckOutlinedFilled.tsx b/src/IconHeartCheckOutlinedFilled.tsx new file mode 100644 index 000000000..6be526c75 --- /dev/null +++ b/src/IconHeartCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartCheckOutlinedFilled as default } diff --git a/src/IconHeartCheckRoundedFilled.tsx b/src/IconHeartCheckRoundedFilled.tsx new file mode 100644 index 000000000..804671946 --- /dev/null +++ b/src/IconHeartCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartCheckRoundedFilled as default } diff --git a/src/IconHeartCheckSharpFilled.tsx b/src/IconHeartCheckSharpFilled.tsx new file mode 100644 index 000000000..c483ed5a1 --- /dev/null +++ b/src/IconHeartCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartCheckSharpFilled as default } diff --git a/src/IconHeartMinusOutlinedFilled.tsx b/src/IconHeartMinusOutlinedFilled.tsx new file mode 100644 index 000000000..3e57f71ea --- /dev/null +++ b/src/IconHeartMinusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartMinusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartMinusOutlinedFilled as default } diff --git a/src/IconHeartMinusRoundedFilled.tsx b/src/IconHeartMinusRoundedFilled.tsx new file mode 100644 index 000000000..1a3370c67 --- /dev/null +++ b/src/IconHeartMinusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartMinusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartMinusRoundedFilled as default } diff --git a/src/IconHeartMinusSharpFilled.tsx b/src/IconHeartMinusSharpFilled.tsx new file mode 100644 index 000000000..7d0bc18de --- /dev/null +++ b/src/IconHeartMinusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartMinusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartMinusSharpFilled as default } diff --git a/src/IconHeartPlusOutlinedFilled.tsx b/src/IconHeartPlusOutlinedFilled.tsx new file mode 100644 index 000000000..49a2d1e64 --- /dev/null +++ b/src/IconHeartPlusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartPlusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartPlusOutlinedFilled as default } diff --git a/src/IconHeartPlusRoundedFilled.tsx b/src/IconHeartPlusRoundedFilled.tsx new file mode 100644 index 000000000..aa66974d6 --- /dev/null +++ b/src/IconHeartPlusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartPlusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartPlusRoundedFilled as default } diff --git a/src/IconHeartPlusSharpFilled.tsx b/src/IconHeartPlusSharpFilled.tsx new file mode 100644 index 000000000..af8f365b5 --- /dev/null +++ b/src/IconHeartPlusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeartPlusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeartPlusSharpFilled as default } diff --git a/src/IconHeatOutlinedFilled.tsx b/src/IconHeatOutlinedFilled.tsx new file mode 100644 index 000000000..fe60baec1 --- /dev/null +++ b/src/IconHeatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatOutlinedFilled as default } diff --git a/src/IconHeatPumpBalanceOutlinedFilled.tsx b/src/IconHeatPumpBalanceOutlinedFilled.tsx new file mode 100644 index 000000000..d8a86c2fd --- /dev/null +++ b/src/IconHeatPumpBalanceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpBalanceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatPumpBalanceOutlinedFilled as default } diff --git a/src/IconHeatPumpBalanceRoundedFilled.tsx b/src/IconHeatPumpBalanceRoundedFilled.tsx new file mode 100644 index 000000000..55640b896 --- /dev/null +++ b/src/IconHeatPumpBalanceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpBalanceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatPumpBalanceRoundedFilled as default } diff --git a/src/IconHeatPumpBalanceSharpFilled.tsx b/src/IconHeatPumpBalanceSharpFilled.tsx new file mode 100644 index 000000000..a1770456c --- /dev/null +++ b/src/IconHeatPumpBalanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpBalanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatPumpBalanceSharpFilled as default } diff --git a/src/IconHeatPumpOutlinedFilled.tsx b/src/IconHeatPumpOutlinedFilled.tsx new file mode 100644 index 000000000..230662301 --- /dev/null +++ b/src/IconHeatPumpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatPumpOutlinedFilled as default } diff --git a/src/IconHeatPumpRoundedFilled.tsx b/src/IconHeatPumpRoundedFilled.tsx new file mode 100644 index 000000000..38fd0c138 --- /dev/null +++ b/src/IconHeatPumpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatPumpRoundedFilled as default } diff --git a/src/IconHeatPumpSharpFilled.tsx b/src/IconHeatPumpSharpFilled.tsx new file mode 100644 index 000000000..50f13c13b --- /dev/null +++ b/src/IconHeatPumpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatPumpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatPumpSharpFilled as default } diff --git a/src/IconHeatRoundedFilled.tsx b/src/IconHeatRoundedFilled.tsx new file mode 100644 index 000000000..b7dc61cef --- /dev/null +++ b/src/IconHeatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatRoundedFilled as default } diff --git a/src/IconHeatSharpFilled.tsx b/src/IconHeatSharpFilled.tsx new file mode 100644 index 000000000..01a341ad8 --- /dev/null +++ b/src/IconHeatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeatSharpFilled as default } diff --git a/src/IconHeightOutlinedFilled.tsx b/src/IconHeightOutlinedFilled.tsx new file mode 100644 index 000000000..c5d60a27d --- /dev/null +++ b/src/IconHeightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeightOutlinedFilled as default } diff --git a/src/IconHeightRoundedFilled.tsx b/src/IconHeightRoundedFilled.tsx new file mode 100644 index 000000000..433c82896 --- /dev/null +++ b/src/IconHeightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeightRoundedFilled as default } diff --git a/src/IconHeightSharpFilled.tsx b/src/IconHeightSharpFilled.tsx new file mode 100644 index 000000000..b5235028c --- /dev/null +++ b/src/IconHeightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHeightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHeightSharpFilled as default } diff --git a/src/IconHelicopterOutlinedFilled.tsx b/src/IconHelicopterOutlinedFilled.tsx new file mode 100644 index 000000000..bc8f93cc0 --- /dev/null +++ b/src/IconHelicopterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelicopterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelicopterOutlinedFilled as default } diff --git a/src/IconHelicopterRoundedFilled.tsx b/src/IconHelicopterRoundedFilled.tsx new file mode 100644 index 000000000..ba16a9727 --- /dev/null +++ b/src/IconHelicopterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelicopterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelicopterRoundedFilled as default } diff --git a/src/IconHelicopterSharpFilled.tsx b/src/IconHelicopterSharpFilled.tsx new file mode 100644 index 000000000..500cd2024 --- /dev/null +++ b/src/IconHelicopterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelicopterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelicopterSharpFilled as default } diff --git a/src/IconHelpCenterOutlinedFilled.tsx b/src/IconHelpCenterOutlinedFilled.tsx new file mode 100644 index 000000000..fea2af5d8 --- /dev/null +++ b/src/IconHelpCenterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpCenterOutlinedFilled as default } diff --git a/src/IconHelpCenterRoundedFilled.tsx b/src/IconHelpCenterRoundedFilled.tsx new file mode 100644 index 000000000..e3e5e5fac --- /dev/null +++ b/src/IconHelpCenterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpCenterRoundedFilled as default } diff --git a/src/IconHelpCenterSharpFilled.tsx b/src/IconHelpCenterSharpFilled.tsx new file mode 100644 index 000000000..e729eb540 --- /dev/null +++ b/src/IconHelpCenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpCenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpCenterSharpFilled as default } diff --git a/src/IconHelpClinicOutlinedFilled.tsx b/src/IconHelpClinicOutlinedFilled.tsx new file mode 100644 index 000000000..77737da19 --- /dev/null +++ b/src/IconHelpClinicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpClinicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpClinicOutlinedFilled as default } diff --git a/src/IconHelpClinicRoundedFilled.tsx b/src/IconHelpClinicRoundedFilled.tsx new file mode 100644 index 000000000..68f2c4205 --- /dev/null +++ b/src/IconHelpClinicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpClinicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpClinicRoundedFilled as default } diff --git a/src/IconHelpClinicSharpFilled.tsx b/src/IconHelpClinicSharpFilled.tsx new file mode 100644 index 000000000..6811598ac --- /dev/null +++ b/src/IconHelpClinicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpClinicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpClinicSharpFilled as default } diff --git a/src/IconHelpOutlinedFilled.tsx b/src/IconHelpOutlinedFilled.tsx new file mode 100644 index 000000000..58adb3970 --- /dev/null +++ b/src/IconHelpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpOutlinedFilled as default } diff --git a/src/IconHelpRoundedFilled.tsx b/src/IconHelpRoundedFilled.tsx new file mode 100644 index 000000000..f3b5a71e2 --- /dev/null +++ b/src/IconHelpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpRoundedFilled as default } diff --git a/src/IconHelpSharpFilled.tsx b/src/IconHelpSharpFilled.tsx new file mode 100644 index 000000000..30e7c3032 --- /dev/null +++ b/src/IconHelpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHelpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHelpSharpFilled as default } diff --git a/src/IconHematologyOutlinedFilled.tsx b/src/IconHematologyOutlinedFilled.tsx new file mode 100644 index 000000000..eac913dcb --- /dev/null +++ b/src/IconHematologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHematologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHematologyOutlinedFilled as default } diff --git a/src/IconHematologyRoundedFilled.tsx b/src/IconHematologyRoundedFilled.tsx new file mode 100644 index 000000000..8a77b2889 --- /dev/null +++ b/src/IconHematologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHematologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHematologyRoundedFilled as default } diff --git a/src/IconHematologySharpFilled.tsx b/src/IconHematologySharpFilled.tsx new file mode 100644 index 000000000..8ac19d86c --- /dev/null +++ b/src/IconHematologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHematologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHematologySharpFilled as default } diff --git a/src/IconHevcOutlinedFilled.tsx b/src/IconHevcOutlinedFilled.tsx new file mode 100644 index 000000000..2f79c3d33 --- /dev/null +++ b/src/IconHevcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHevcOutlinedFilled as default } diff --git a/src/IconHevcRoundedFilled.tsx b/src/IconHevcRoundedFilled.tsx new file mode 100644 index 000000000..ea09e3536 --- /dev/null +++ b/src/IconHevcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHevcRoundedFilled as default } diff --git a/src/IconHevcSharpFilled.tsx b/src/IconHevcSharpFilled.tsx new file mode 100644 index 000000000..0638b5c08 --- /dev/null +++ b/src/IconHevcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHevcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHevcSharpFilled as default } diff --git a/src/IconHexagonOutlinedFilled.tsx b/src/IconHexagonOutlinedFilled.tsx new file mode 100644 index 000000000..29412f0df --- /dev/null +++ b/src/IconHexagonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHexagonOutlinedFilled as default } diff --git a/src/IconHexagonRoundedFilled.tsx b/src/IconHexagonRoundedFilled.tsx new file mode 100644 index 000000000..697cfef0e --- /dev/null +++ b/src/IconHexagonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHexagonRoundedFilled as default } diff --git a/src/IconHexagonSharpFilled.tsx b/src/IconHexagonSharpFilled.tsx new file mode 100644 index 000000000..7b26e4d62 --- /dev/null +++ b/src/IconHexagonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHexagonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHexagonSharpFilled as default } diff --git a/src/IconHideImageOutlinedFilled.tsx b/src/IconHideImageOutlinedFilled.tsx new file mode 100644 index 000000000..339722460 --- /dev/null +++ b/src/IconHideImageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideImageOutlinedFilled as default } diff --git a/src/IconHideImageRoundedFilled.tsx b/src/IconHideImageRoundedFilled.tsx new file mode 100644 index 000000000..634afa08c --- /dev/null +++ b/src/IconHideImageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideImageRoundedFilled as default } diff --git a/src/IconHideImageSharpFilled.tsx b/src/IconHideImageSharpFilled.tsx new file mode 100644 index 000000000..a1cd33923 --- /dev/null +++ b/src/IconHideImageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideImageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideImageSharpFilled as default } diff --git a/src/IconHideOutlinedFilled.tsx b/src/IconHideOutlinedFilled.tsx new file mode 100644 index 000000000..be65b074c --- /dev/null +++ b/src/IconHideOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideOutlinedFilled as default } diff --git a/src/IconHideRoundedFilled.tsx b/src/IconHideRoundedFilled.tsx new file mode 100644 index 000000000..19a166247 --- /dev/null +++ b/src/IconHideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideRoundedFilled as default } diff --git a/src/IconHideSharpFilled.tsx b/src/IconHideSharpFilled.tsx new file mode 100644 index 000000000..054dbfb51 --- /dev/null +++ b/src/IconHideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideSharpFilled as default } diff --git a/src/IconHideSourceOutlinedFilled.tsx b/src/IconHideSourceOutlinedFilled.tsx new file mode 100644 index 000000000..57320a4d7 --- /dev/null +++ b/src/IconHideSourceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideSourceOutlinedFilled as default } diff --git a/src/IconHideSourceRoundedFilled.tsx b/src/IconHideSourceRoundedFilled.tsx new file mode 100644 index 000000000..d57d174ec --- /dev/null +++ b/src/IconHideSourceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideSourceRoundedFilled as default } diff --git a/src/IconHideSourceSharpFilled.tsx b/src/IconHideSourceSharpFilled.tsx new file mode 100644 index 000000000..5890c30b5 --- /dev/null +++ b/src/IconHideSourceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHideSourceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHideSourceSharpFilled as default } diff --git a/src/IconHighDensityOutlinedFilled.tsx b/src/IconHighDensityOutlinedFilled.tsx new file mode 100644 index 000000000..2169e27d8 --- /dev/null +++ b/src/IconHighDensityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighDensityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighDensityOutlinedFilled as default } diff --git a/src/IconHighDensityRoundedFilled.tsx b/src/IconHighDensityRoundedFilled.tsx new file mode 100644 index 000000000..3d9765d37 --- /dev/null +++ b/src/IconHighDensityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighDensityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighDensityRoundedFilled as default } diff --git a/src/IconHighDensitySharpFilled.tsx b/src/IconHighDensitySharpFilled.tsx new file mode 100644 index 000000000..5ee79648b --- /dev/null +++ b/src/IconHighDensitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighDensitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighDensitySharpFilled as default } diff --git a/src/IconHighQualityOutlinedFilled.tsx b/src/IconHighQualityOutlinedFilled.tsx new file mode 100644 index 000000000..7c687dfaf --- /dev/null +++ b/src/IconHighQualityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighQualityOutlinedFilled as default } diff --git a/src/IconHighQualityRoundedFilled.tsx b/src/IconHighQualityRoundedFilled.tsx new file mode 100644 index 000000000..94d8c9e25 --- /dev/null +++ b/src/IconHighQualityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighQualityRoundedFilled as default } diff --git a/src/IconHighQualitySharpFilled.tsx b/src/IconHighQualitySharpFilled.tsx new file mode 100644 index 000000000..47697681d --- /dev/null +++ b/src/IconHighQualitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighQualitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighQualitySharpFilled as default } diff --git a/src/IconHighResOutlinedFilled.tsx b/src/IconHighResOutlinedFilled.tsx new file mode 100644 index 000000000..8aa912e52 --- /dev/null +++ b/src/IconHighResOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighResOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighResOutlinedFilled as default } diff --git a/src/IconHighResRoundedFilled.tsx b/src/IconHighResRoundedFilled.tsx new file mode 100644 index 000000000..6d264fc9f --- /dev/null +++ b/src/IconHighResRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighResRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighResRoundedFilled as default } diff --git a/src/IconHighResSharpFilled.tsx b/src/IconHighResSharpFilled.tsx new file mode 100644 index 000000000..f97752434 --- /dev/null +++ b/src/IconHighResSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighResSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighResSharpFilled as default } diff --git a/src/IconHighlightKeyboardFocusOutlinedFilled.tsx b/src/IconHighlightKeyboardFocusOutlinedFilled.tsx new file mode 100644 index 000000000..36bd87620 --- /dev/null +++ b/src/IconHighlightKeyboardFocusOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightKeyboardFocusOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightKeyboardFocusOutlinedFilled as default } diff --git a/src/IconHighlightKeyboardFocusRoundedFilled.tsx b/src/IconHighlightKeyboardFocusRoundedFilled.tsx new file mode 100644 index 000000000..3dbe58ac7 --- /dev/null +++ b/src/IconHighlightKeyboardFocusRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightKeyboardFocusRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightKeyboardFocusRoundedFilled as default } diff --git a/src/IconHighlightKeyboardFocusSharpFilled.tsx b/src/IconHighlightKeyboardFocusSharpFilled.tsx new file mode 100644 index 000000000..07eef18ca --- /dev/null +++ b/src/IconHighlightKeyboardFocusSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightKeyboardFocusSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightKeyboardFocusSharpFilled as default } diff --git a/src/IconHighlightMouseCursorOutlinedFilled.tsx b/src/IconHighlightMouseCursorOutlinedFilled.tsx new file mode 100644 index 000000000..1e8673260 --- /dev/null +++ b/src/IconHighlightMouseCursorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightMouseCursorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightMouseCursorOutlinedFilled as default } diff --git a/src/IconHighlightMouseCursorRoundedFilled.tsx b/src/IconHighlightMouseCursorRoundedFilled.tsx new file mode 100644 index 000000000..8e403531d --- /dev/null +++ b/src/IconHighlightMouseCursorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightMouseCursorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightMouseCursorRoundedFilled as default } diff --git a/src/IconHighlightMouseCursorSharpFilled.tsx b/src/IconHighlightMouseCursorSharpFilled.tsx new file mode 100644 index 000000000..e24482501 --- /dev/null +++ b/src/IconHighlightMouseCursorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightMouseCursorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightMouseCursorSharpFilled as default } diff --git a/src/IconHighlightOutlinedFilled.tsx b/src/IconHighlightOutlinedFilled.tsx new file mode 100644 index 000000000..689d610d3 --- /dev/null +++ b/src/IconHighlightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightOutlinedFilled as default } diff --git a/src/IconHighlightRoundedFilled.tsx b/src/IconHighlightRoundedFilled.tsx new file mode 100644 index 000000000..593f032e6 --- /dev/null +++ b/src/IconHighlightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightRoundedFilled as default } diff --git a/src/IconHighlightSharpFilled.tsx b/src/IconHighlightSharpFilled.tsx new file mode 100644 index 000000000..a265e9cb5 --- /dev/null +++ b/src/IconHighlightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightSharpFilled as default } diff --git a/src/IconHighlightTextCursorOutlinedFilled.tsx b/src/IconHighlightTextCursorOutlinedFilled.tsx new file mode 100644 index 000000000..355eecbf7 --- /dev/null +++ b/src/IconHighlightTextCursorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightTextCursorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightTextCursorOutlinedFilled as default } diff --git a/src/IconHighlightTextCursorRoundedFilled.tsx b/src/IconHighlightTextCursorRoundedFilled.tsx new file mode 100644 index 000000000..31ccb4274 --- /dev/null +++ b/src/IconHighlightTextCursorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightTextCursorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightTextCursorRoundedFilled as default } diff --git a/src/IconHighlightTextCursorSharpFilled.tsx b/src/IconHighlightTextCursorSharpFilled.tsx new file mode 100644 index 000000000..5f5c093ca --- /dev/null +++ b/src/IconHighlightTextCursorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlightTextCursorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlightTextCursorSharpFilled as default } diff --git a/src/IconHighlighterSize1OutlinedFilled.tsx b/src/IconHighlighterSize1OutlinedFilled.tsx new file mode 100644 index 000000000..4271e9d38 --- /dev/null +++ b/src/IconHighlighterSize1OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize1OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize1OutlinedFilled as default } diff --git a/src/IconHighlighterSize1RoundedFilled.tsx b/src/IconHighlighterSize1RoundedFilled.tsx new file mode 100644 index 000000000..3c2ed6200 --- /dev/null +++ b/src/IconHighlighterSize1RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize1RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize1RoundedFilled as default } diff --git a/src/IconHighlighterSize1SharpFilled.tsx b/src/IconHighlighterSize1SharpFilled.tsx new file mode 100644 index 000000000..6f9f00c18 --- /dev/null +++ b/src/IconHighlighterSize1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize1SharpFilled as default } diff --git a/src/IconHighlighterSize2OutlinedFilled.tsx b/src/IconHighlighterSize2OutlinedFilled.tsx new file mode 100644 index 000000000..fe9de5137 --- /dev/null +++ b/src/IconHighlighterSize2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize2OutlinedFilled as default } diff --git a/src/IconHighlighterSize2RoundedFilled.tsx b/src/IconHighlighterSize2RoundedFilled.tsx new file mode 100644 index 000000000..328712cd4 --- /dev/null +++ b/src/IconHighlighterSize2RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize2RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize2RoundedFilled as default } diff --git a/src/IconHighlighterSize2SharpFilled.tsx b/src/IconHighlighterSize2SharpFilled.tsx new file mode 100644 index 000000000..bae1be24c --- /dev/null +++ b/src/IconHighlighterSize2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize2SharpFilled as default } diff --git a/src/IconHighlighterSize3OutlinedFilled.tsx b/src/IconHighlighterSize3OutlinedFilled.tsx new file mode 100644 index 000000000..45b946b3e --- /dev/null +++ b/src/IconHighlighterSize3OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize3OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize3OutlinedFilled as default } diff --git a/src/IconHighlighterSize3RoundedFilled.tsx b/src/IconHighlighterSize3RoundedFilled.tsx new file mode 100644 index 000000000..056416204 --- /dev/null +++ b/src/IconHighlighterSize3RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize3RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize3RoundedFilled as default } diff --git a/src/IconHighlighterSize3SharpFilled.tsx b/src/IconHighlighterSize3SharpFilled.tsx new file mode 100644 index 000000000..a036763a7 --- /dev/null +++ b/src/IconHighlighterSize3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize3SharpFilled as default } diff --git a/src/IconHighlighterSize4OutlinedFilled.tsx b/src/IconHighlighterSize4OutlinedFilled.tsx new file mode 100644 index 000000000..28f48243c --- /dev/null +++ b/src/IconHighlighterSize4OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize4OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize4OutlinedFilled as default } diff --git a/src/IconHighlighterSize4RoundedFilled.tsx b/src/IconHighlighterSize4RoundedFilled.tsx new file mode 100644 index 000000000..6b2815b92 --- /dev/null +++ b/src/IconHighlighterSize4RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize4RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize4RoundedFilled as default } diff --git a/src/IconHighlighterSize4SharpFilled.tsx b/src/IconHighlighterSize4SharpFilled.tsx new file mode 100644 index 000000000..87bf5eefb --- /dev/null +++ b/src/IconHighlighterSize4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize4SharpFilled as default } diff --git a/src/IconHighlighterSize5OutlinedFilled.tsx b/src/IconHighlighterSize5OutlinedFilled.tsx new file mode 100644 index 000000000..44c129366 --- /dev/null +++ b/src/IconHighlighterSize5OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize5OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize5OutlinedFilled as default } diff --git a/src/IconHighlighterSize5RoundedFilled.tsx b/src/IconHighlighterSize5RoundedFilled.tsx new file mode 100644 index 000000000..9eb232263 --- /dev/null +++ b/src/IconHighlighterSize5RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize5RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize5RoundedFilled as default } diff --git a/src/IconHighlighterSize5SharpFilled.tsx b/src/IconHighlighterSize5SharpFilled.tsx new file mode 100644 index 000000000..0b04deb62 --- /dev/null +++ b/src/IconHighlighterSize5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHighlighterSize5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHighlighterSize5SharpFilled as default } diff --git a/src/IconHikingOutlinedFilled.tsx b/src/IconHikingOutlinedFilled.tsx new file mode 100644 index 000000000..ed3b82c22 --- /dev/null +++ b/src/IconHikingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHikingOutlinedFilled as default } diff --git a/src/IconHikingRoundedFilled.tsx b/src/IconHikingRoundedFilled.tsx new file mode 100644 index 000000000..c8f9f057e --- /dev/null +++ b/src/IconHikingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHikingRoundedFilled as default } diff --git a/src/IconHikingSharpFilled.tsx b/src/IconHikingSharpFilled.tsx new file mode 100644 index 000000000..f42faa0d8 --- /dev/null +++ b/src/IconHikingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHikingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHikingSharpFilled as default } diff --git a/src/IconHistoryEduOutlinedFilled.tsx b/src/IconHistoryEduOutlinedFilled.tsx new file mode 100644 index 000000000..b3b6e05b2 --- /dev/null +++ b/src/IconHistoryEduOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryEduOutlinedFilled as default } diff --git a/src/IconHistoryEduRoundedFilled.tsx b/src/IconHistoryEduRoundedFilled.tsx new file mode 100644 index 000000000..79726a8bb --- /dev/null +++ b/src/IconHistoryEduRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryEduRoundedFilled as default } diff --git a/src/IconHistoryEduSharpFilled.tsx b/src/IconHistoryEduSharpFilled.tsx new file mode 100644 index 000000000..3c136bc23 --- /dev/null +++ b/src/IconHistoryEduSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryEduSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryEduSharpFilled as default } diff --git a/src/IconHistoryOffOutlinedFilled.tsx b/src/IconHistoryOffOutlinedFilled.tsx new file mode 100644 index 000000000..327dd4f1b --- /dev/null +++ b/src/IconHistoryOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryOffOutlinedFilled as default } diff --git a/src/IconHistoryOffRoundedFilled.tsx b/src/IconHistoryOffRoundedFilled.tsx new file mode 100644 index 000000000..38759b9ae --- /dev/null +++ b/src/IconHistoryOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryOffRoundedFilled as default } diff --git a/src/IconHistoryOffSharpFilled.tsx b/src/IconHistoryOffSharpFilled.tsx new file mode 100644 index 000000000..80fc3c79d --- /dev/null +++ b/src/IconHistoryOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryOffSharpFilled as default } diff --git a/src/IconHistoryOutlinedFilled.tsx b/src/IconHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..8cc4d8405 --- /dev/null +++ b/src/IconHistoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryOutlinedFilled as default } diff --git a/src/IconHistoryRoundedFilled.tsx b/src/IconHistoryRoundedFilled.tsx new file mode 100644 index 000000000..7597bd28f --- /dev/null +++ b/src/IconHistoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryRoundedFilled as default } diff --git a/src/IconHistorySharpFilled.tsx b/src/IconHistorySharpFilled.tsx new file mode 100644 index 000000000..8f41c75bd --- /dev/null +++ b/src/IconHistorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistorySharpFilled as default } diff --git a/src/IconHistoryToggleOffOutlinedFilled.tsx b/src/IconHistoryToggleOffOutlinedFilled.tsx new file mode 100644 index 000000000..568bc3d40 --- /dev/null +++ b/src/IconHistoryToggleOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryToggleOffOutlinedFilled as default } diff --git a/src/IconHistoryToggleOffRoundedFilled.tsx b/src/IconHistoryToggleOffRoundedFilled.tsx new file mode 100644 index 000000000..a5182f249 --- /dev/null +++ b/src/IconHistoryToggleOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryToggleOffRoundedFilled as default } diff --git a/src/IconHistoryToggleOffSharpFilled.tsx b/src/IconHistoryToggleOffSharpFilled.tsx new file mode 100644 index 000000000..2ed5edb88 --- /dev/null +++ b/src/IconHistoryToggleOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHistoryToggleOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHistoryToggleOffSharpFilled as default } diff --git a/src/IconHiveOutlinedFilled.tsx b/src/IconHiveOutlinedFilled.tsx new file mode 100644 index 000000000..a1c4daca4 --- /dev/null +++ b/src/IconHiveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHiveOutlinedFilled as default } diff --git a/src/IconHiveRoundedFilled.tsx b/src/IconHiveRoundedFilled.tsx new file mode 100644 index 000000000..991e14d1c --- /dev/null +++ b/src/IconHiveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHiveRoundedFilled as default } diff --git a/src/IconHiveSharpFilled.tsx b/src/IconHiveSharpFilled.tsx new file mode 100644 index 000000000..0f459b73b --- /dev/null +++ b/src/IconHiveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHiveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHiveSharpFilled as default } diff --git a/src/IconHlsOffOutlinedFilled.tsx b/src/IconHlsOffOutlinedFilled.tsx new file mode 100644 index 000000000..ff52c307f --- /dev/null +++ b/src/IconHlsOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHlsOffOutlinedFilled as default } diff --git a/src/IconHlsOffRoundedFilled.tsx b/src/IconHlsOffRoundedFilled.tsx new file mode 100644 index 000000000..dfc9c77fa --- /dev/null +++ b/src/IconHlsOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHlsOffRoundedFilled as default } diff --git a/src/IconHlsOffSharpFilled.tsx b/src/IconHlsOffSharpFilled.tsx new file mode 100644 index 000000000..2b574734d --- /dev/null +++ b/src/IconHlsOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHlsOffSharpFilled as default } diff --git a/src/IconHlsOutlinedFilled.tsx b/src/IconHlsOutlinedFilled.tsx new file mode 100644 index 000000000..c115d5fcf --- /dev/null +++ b/src/IconHlsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHlsOutlinedFilled as default } diff --git a/src/IconHlsRoundedFilled.tsx b/src/IconHlsRoundedFilled.tsx new file mode 100644 index 000000000..85949c027 --- /dev/null +++ b/src/IconHlsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHlsRoundedFilled as default } diff --git a/src/IconHlsSharpFilled.tsx b/src/IconHlsSharpFilled.tsx new file mode 100644 index 000000000..1825bc567 --- /dev/null +++ b/src/IconHlsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHlsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHlsSharpFilled as default } diff --git a/src/IconHolidayVillageOutlinedFilled.tsx b/src/IconHolidayVillageOutlinedFilled.tsx new file mode 100644 index 000000000..e6d062b62 --- /dev/null +++ b/src/IconHolidayVillageOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHolidayVillageOutlinedFilled as default } diff --git a/src/IconHolidayVillageRoundedFilled.tsx b/src/IconHolidayVillageRoundedFilled.tsx new file mode 100644 index 000000000..11056d1e5 --- /dev/null +++ b/src/IconHolidayVillageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHolidayVillageRoundedFilled as default } diff --git a/src/IconHolidayVillageSharpFilled.tsx b/src/IconHolidayVillageSharpFilled.tsx new file mode 100644 index 000000000..6cf567b21 --- /dev/null +++ b/src/IconHolidayVillageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHolidayVillageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHolidayVillageSharpFilled as default } diff --git a/src/IconHomeAndGardenOutlinedFilled.tsx b/src/IconHomeAndGardenOutlinedFilled.tsx new file mode 100644 index 000000000..b2bc8edb7 --- /dev/null +++ b/src/IconHomeAndGardenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeAndGardenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeAndGardenOutlinedFilled as default } diff --git a/src/IconHomeAndGardenRoundedFilled.tsx b/src/IconHomeAndGardenRoundedFilled.tsx new file mode 100644 index 000000000..74d00a1a3 --- /dev/null +++ b/src/IconHomeAndGardenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeAndGardenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeAndGardenRoundedFilled as default } diff --git a/src/IconHomeAndGardenSharpFilled.tsx b/src/IconHomeAndGardenSharpFilled.tsx new file mode 100644 index 000000000..8062e384c --- /dev/null +++ b/src/IconHomeAndGardenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeAndGardenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeAndGardenSharpFilled as default } diff --git a/src/IconHomeAppLogoOutlinedFilled.tsx b/src/IconHomeAppLogoOutlinedFilled.tsx new file mode 100644 index 000000000..0138bdf4a --- /dev/null +++ b/src/IconHomeAppLogoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeAppLogoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeAppLogoOutlinedFilled as default } diff --git a/src/IconHomeAppLogoRoundedFilled.tsx b/src/IconHomeAppLogoRoundedFilled.tsx new file mode 100644 index 000000000..6b97453e2 --- /dev/null +++ b/src/IconHomeAppLogoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeAppLogoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeAppLogoRoundedFilled as default } diff --git a/src/IconHomeAppLogoSharpFilled.tsx b/src/IconHomeAppLogoSharpFilled.tsx new file mode 100644 index 000000000..3b7fbceaa --- /dev/null +++ b/src/IconHomeAppLogoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeAppLogoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeAppLogoSharpFilled as default } diff --git a/src/IconHomeHealthOutlinedFilled.tsx b/src/IconHomeHealthOutlinedFilled.tsx new file mode 100644 index 000000000..1b8c9e860 --- /dev/null +++ b/src/IconHomeHealthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeHealthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeHealthOutlinedFilled as default } diff --git a/src/IconHomeHealthRoundedFilled.tsx b/src/IconHomeHealthRoundedFilled.tsx new file mode 100644 index 000000000..fb0647a89 --- /dev/null +++ b/src/IconHomeHealthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeHealthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeHealthRoundedFilled as default } diff --git a/src/IconHomeHealthSharpFilled.tsx b/src/IconHomeHealthSharpFilled.tsx new file mode 100644 index 000000000..40fec8eef --- /dev/null +++ b/src/IconHomeHealthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeHealthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeHealthSharpFilled as default } diff --git a/src/IconHomeImprovementAndToolsOutlinedFilled.tsx b/src/IconHomeImprovementAndToolsOutlinedFilled.tsx new file mode 100644 index 000000000..fbcc7cb71 --- /dev/null +++ b/src/IconHomeImprovementAndToolsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeImprovementAndToolsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeImprovementAndToolsOutlinedFilled as default } diff --git a/src/IconHomeImprovementAndToolsRoundedFilled.tsx b/src/IconHomeImprovementAndToolsRoundedFilled.tsx new file mode 100644 index 000000000..f395f0cd2 --- /dev/null +++ b/src/IconHomeImprovementAndToolsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeImprovementAndToolsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeImprovementAndToolsRoundedFilled as default } diff --git a/src/IconHomeImprovementAndToolsSharpFilled.tsx b/src/IconHomeImprovementAndToolsSharpFilled.tsx new file mode 100644 index 000000000..7955eb68d --- /dev/null +++ b/src/IconHomeImprovementAndToolsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeImprovementAndToolsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeImprovementAndToolsSharpFilled as default } diff --git a/src/IconHomeIotDeviceOutlinedFilled.tsx b/src/IconHomeIotDeviceOutlinedFilled.tsx new file mode 100644 index 000000000..3e6839671 --- /dev/null +++ b/src/IconHomeIotDeviceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeIotDeviceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeIotDeviceOutlinedFilled as default } diff --git a/src/IconHomeIotDeviceRoundedFilled.tsx b/src/IconHomeIotDeviceRoundedFilled.tsx new file mode 100644 index 000000000..48368f72e --- /dev/null +++ b/src/IconHomeIotDeviceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeIotDeviceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeIotDeviceRoundedFilled as default } diff --git a/src/IconHomeIotDeviceSharpFilled.tsx b/src/IconHomeIotDeviceSharpFilled.tsx new file mode 100644 index 000000000..12c4a4699 --- /dev/null +++ b/src/IconHomeIotDeviceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeIotDeviceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeIotDeviceSharpFilled as default } diff --git a/src/IconHomeMaxDotsOutlinedFilled.tsx b/src/IconHomeMaxDotsOutlinedFilled.tsx new file mode 100644 index 000000000..d122c4e89 --- /dev/null +++ b/src/IconHomeMaxDotsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxDotsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMaxDotsOutlinedFilled as default } diff --git a/src/IconHomeMaxDotsRoundedFilled.tsx b/src/IconHomeMaxDotsRoundedFilled.tsx new file mode 100644 index 000000000..797653414 --- /dev/null +++ b/src/IconHomeMaxDotsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxDotsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMaxDotsRoundedFilled as default } diff --git a/src/IconHomeMaxDotsSharpFilled.tsx b/src/IconHomeMaxDotsSharpFilled.tsx new file mode 100644 index 000000000..e8092b81d --- /dev/null +++ b/src/IconHomeMaxDotsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxDotsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMaxDotsSharpFilled as default } diff --git a/src/IconHomeMaxOutlinedFilled.tsx b/src/IconHomeMaxOutlinedFilled.tsx new file mode 100644 index 000000000..848565597 --- /dev/null +++ b/src/IconHomeMaxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMaxOutlinedFilled as default } diff --git a/src/IconHomeMaxRoundedFilled.tsx b/src/IconHomeMaxRoundedFilled.tsx new file mode 100644 index 000000000..4160edb99 --- /dev/null +++ b/src/IconHomeMaxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMaxRoundedFilled as default } diff --git a/src/IconHomeMaxSharpFilled.tsx b/src/IconHomeMaxSharpFilled.tsx new file mode 100644 index 000000000..ddc4c3ea3 --- /dev/null +++ b/src/IconHomeMaxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMaxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMaxSharpFilled as default } diff --git a/src/IconHomeMiniOutlinedFilled.tsx b/src/IconHomeMiniOutlinedFilled.tsx new file mode 100644 index 000000000..72681092d --- /dev/null +++ b/src/IconHomeMiniOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMiniOutlinedFilled as default } diff --git a/src/IconHomeMiniRoundedFilled.tsx b/src/IconHomeMiniRoundedFilled.tsx new file mode 100644 index 000000000..a2ac5ce26 --- /dev/null +++ b/src/IconHomeMiniRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMiniRoundedFilled as default } diff --git a/src/IconHomeMiniSharpFilled.tsx b/src/IconHomeMiniSharpFilled.tsx new file mode 100644 index 000000000..e83ef52d8 --- /dev/null +++ b/src/IconHomeMiniSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeMiniSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeMiniSharpFilled as default } diff --git a/src/IconHomeOutlinedFilled.tsx b/src/IconHomeOutlinedFilled.tsx new file mode 100644 index 000000000..9b31e90df --- /dev/null +++ b/src/IconHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeOutlinedFilled as default } diff --git a/src/IconHomePinOutlinedFilled.tsx b/src/IconHomePinOutlinedFilled.tsx new file mode 100644 index 000000000..caa800a07 --- /dev/null +++ b/src/IconHomePinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomePinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomePinOutlinedFilled as default } diff --git a/src/IconHomePinRoundedFilled.tsx b/src/IconHomePinRoundedFilled.tsx new file mode 100644 index 000000000..396c3e4cb --- /dev/null +++ b/src/IconHomePinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomePinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomePinRoundedFilled as default } diff --git a/src/IconHomePinSharpFilled.tsx b/src/IconHomePinSharpFilled.tsx new file mode 100644 index 000000000..1ccbfb502 --- /dev/null +++ b/src/IconHomePinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomePinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomePinSharpFilled as default } diff --git a/src/IconHomeRepairServiceOutlinedFilled.tsx b/src/IconHomeRepairServiceOutlinedFilled.tsx new file mode 100644 index 000000000..72a74a2af --- /dev/null +++ b/src/IconHomeRepairServiceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeRepairServiceOutlinedFilled as default } diff --git a/src/IconHomeRepairServiceRoundedFilled.tsx b/src/IconHomeRepairServiceRoundedFilled.tsx new file mode 100644 index 000000000..d0747fbb1 --- /dev/null +++ b/src/IconHomeRepairServiceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeRepairServiceRoundedFilled as default } diff --git a/src/IconHomeRepairServiceSharpFilled.tsx b/src/IconHomeRepairServiceSharpFilled.tsx new file mode 100644 index 000000000..57ca0bfd4 --- /dev/null +++ b/src/IconHomeRepairServiceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRepairServiceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeRepairServiceSharpFilled as default } diff --git a/src/IconHomeRoundedFilled.tsx b/src/IconHomeRoundedFilled.tsx new file mode 100644 index 000000000..17e9bef01 --- /dev/null +++ b/src/IconHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeRoundedFilled as default } diff --git a/src/IconHomeSharpFilled.tsx b/src/IconHomeSharpFilled.tsx new file mode 100644 index 000000000..03b3b2831 --- /dev/null +++ b/src/IconHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeSharpFilled as default } diff --git a/src/IconHomeSpeakerOutlinedFilled.tsx b/src/IconHomeSpeakerOutlinedFilled.tsx new file mode 100644 index 000000000..b6c5603f9 --- /dev/null +++ b/src/IconHomeSpeakerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeSpeakerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeSpeakerOutlinedFilled as default } diff --git a/src/IconHomeSpeakerRoundedFilled.tsx b/src/IconHomeSpeakerRoundedFilled.tsx new file mode 100644 index 000000000..71044f25e --- /dev/null +++ b/src/IconHomeSpeakerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeSpeakerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeSpeakerRoundedFilled as default } diff --git a/src/IconHomeSpeakerSharpFilled.tsx b/src/IconHomeSpeakerSharpFilled.tsx new file mode 100644 index 000000000..8f733e6be --- /dev/null +++ b/src/IconHomeSpeakerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeSpeakerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeSpeakerSharpFilled as default } diff --git a/src/IconHomeStorageOutlinedFilled.tsx b/src/IconHomeStorageOutlinedFilled.tsx new file mode 100644 index 000000000..6c110de84 --- /dev/null +++ b/src/IconHomeStorageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeStorageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeStorageOutlinedFilled as default } diff --git a/src/IconHomeStorageRoundedFilled.tsx b/src/IconHomeStorageRoundedFilled.tsx new file mode 100644 index 000000000..46ae3327e --- /dev/null +++ b/src/IconHomeStorageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeStorageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeStorageRoundedFilled as default } diff --git a/src/IconHomeStorageSharpFilled.tsx b/src/IconHomeStorageSharpFilled.tsx new file mode 100644 index 000000000..1eb6ae77d --- /dev/null +++ b/src/IconHomeStorageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeStorageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeStorageSharpFilled as default } diff --git a/src/IconHomeWorkOutlinedFilled.tsx b/src/IconHomeWorkOutlinedFilled.tsx new file mode 100644 index 000000000..9a73f7625 --- /dev/null +++ b/src/IconHomeWorkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeWorkOutlinedFilled as default } diff --git a/src/IconHomeWorkRoundedFilled.tsx b/src/IconHomeWorkRoundedFilled.tsx new file mode 100644 index 000000000..c8cf4f734 --- /dev/null +++ b/src/IconHomeWorkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeWorkRoundedFilled as default } diff --git a/src/IconHomeWorkSharpFilled.tsx b/src/IconHomeWorkSharpFilled.tsx new file mode 100644 index 000000000..368cefb42 --- /dev/null +++ b/src/IconHomeWorkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHomeWorkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHomeWorkSharpFilled as default } diff --git a/src/IconHorizontalDistributeOutlinedFilled.tsx b/src/IconHorizontalDistributeOutlinedFilled.tsx new file mode 100644 index 000000000..25baef8f4 --- /dev/null +++ b/src/IconHorizontalDistributeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalDistributeOutlinedFilled as default } diff --git a/src/IconHorizontalDistributeRoundedFilled.tsx b/src/IconHorizontalDistributeRoundedFilled.tsx new file mode 100644 index 000000000..9eba278d0 --- /dev/null +++ b/src/IconHorizontalDistributeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalDistributeRoundedFilled as default } diff --git a/src/IconHorizontalDistributeSharpFilled.tsx b/src/IconHorizontalDistributeSharpFilled.tsx new file mode 100644 index 000000000..965eef550 --- /dev/null +++ b/src/IconHorizontalDistributeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalDistributeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalDistributeSharpFilled as default } diff --git a/src/IconHorizontalRuleOutlinedFilled.tsx b/src/IconHorizontalRuleOutlinedFilled.tsx new file mode 100644 index 000000000..106296134 --- /dev/null +++ b/src/IconHorizontalRuleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalRuleOutlinedFilled as default } diff --git a/src/IconHorizontalRuleRoundedFilled.tsx b/src/IconHorizontalRuleRoundedFilled.tsx new file mode 100644 index 000000000..a4e5ef335 --- /dev/null +++ b/src/IconHorizontalRuleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalRuleRoundedFilled as default } diff --git a/src/IconHorizontalRuleSharpFilled.tsx b/src/IconHorizontalRuleSharpFilled.tsx new file mode 100644 index 000000000..89456675c --- /dev/null +++ b/src/IconHorizontalRuleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalRuleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalRuleSharpFilled as default } diff --git a/src/IconHorizontalSplitOutlinedFilled.tsx b/src/IconHorizontalSplitOutlinedFilled.tsx new file mode 100644 index 000000000..68da89fd8 --- /dev/null +++ b/src/IconHorizontalSplitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalSplitOutlinedFilled as default } diff --git a/src/IconHorizontalSplitRoundedFilled.tsx b/src/IconHorizontalSplitRoundedFilled.tsx new file mode 100644 index 000000000..d5df26fd9 --- /dev/null +++ b/src/IconHorizontalSplitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalSplitRoundedFilled as default } diff --git a/src/IconHorizontalSplitSharpFilled.tsx b/src/IconHorizontalSplitSharpFilled.tsx new file mode 100644 index 000000000..5a5f143d9 --- /dev/null +++ b/src/IconHorizontalSplitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHorizontalSplitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHorizontalSplitSharpFilled as default } diff --git a/src/IconHotTubOutlinedFilled.tsx b/src/IconHotTubOutlinedFilled.tsx new file mode 100644 index 000000000..354b20163 --- /dev/null +++ b/src/IconHotTubOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotTubOutlinedFilled as default } diff --git a/src/IconHotTubRoundedFilled.tsx b/src/IconHotTubRoundedFilled.tsx new file mode 100644 index 000000000..27a943a77 --- /dev/null +++ b/src/IconHotTubRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotTubRoundedFilled as default } diff --git a/src/IconHotTubSharpFilled.tsx b/src/IconHotTubSharpFilled.tsx new file mode 100644 index 000000000..e231ea9ae --- /dev/null +++ b/src/IconHotTubSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotTubSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotTubSharpFilled as default } diff --git a/src/IconHotelClassOutlinedFilled.tsx b/src/IconHotelClassOutlinedFilled.tsx new file mode 100644 index 000000000..4d47d9f28 --- /dev/null +++ b/src/IconHotelClassOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotelClassOutlinedFilled as default } diff --git a/src/IconHotelClassRoundedFilled.tsx b/src/IconHotelClassRoundedFilled.tsx new file mode 100644 index 000000000..95a5c42fb --- /dev/null +++ b/src/IconHotelClassRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotelClassRoundedFilled as default } diff --git a/src/IconHotelClassSharpFilled.tsx b/src/IconHotelClassSharpFilled.tsx new file mode 100644 index 000000000..6a7bb5855 --- /dev/null +++ b/src/IconHotelClassSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelClassSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotelClassSharpFilled as default } diff --git a/src/IconHotelOutlinedFilled.tsx b/src/IconHotelOutlinedFilled.tsx new file mode 100644 index 000000000..f6a7eb504 --- /dev/null +++ b/src/IconHotelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotelOutlinedFilled as default } diff --git a/src/IconHotelRoundedFilled.tsx b/src/IconHotelRoundedFilled.tsx new file mode 100644 index 000000000..f56cb1762 --- /dev/null +++ b/src/IconHotelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotelRoundedFilled as default } diff --git a/src/IconHotelSharpFilled.tsx b/src/IconHotelSharpFilled.tsx new file mode 100644 index 000000000..84c5c69eb --- /dev/null +++ b/src/IconHotelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHotelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHotelSharpFilled as default } diff --git a/src/IconHourglassBottomOutlinedFilled.tsx b/src/IconHourglassBottomOutlinedFilled.tsx new file mode 100644 index 000000000..c932b63e2 --- /dev/null +++ b/src/IconHourglassBottomOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassBottomOutlinedFilled as default } diff --git a/src/IconHourglassBottomRoundedFilled.tsx b/src/IconHourglassBottomRoundedFilled.tsx new file mode 100644 index 000000000..f7a353f78 --- /dev/null +++ b/src/IconHourglassBottomRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassBottomRoundedFilled as default } diff --git a/src/IconHourglassBottomSharpFilled.tsx b/src/IconHourglassBottomSharpFilled.tsx new file mode 100644 index 000000000..2f8d412f9 --- /dev/null +++ b/src/IconHourglassBottomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassBottomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassBottomSharpFilled as default } diff --git a/src/IconHourglassDisabledOutlinedFilled.tsx b/src/IconHourglassDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..336673c6c --- /dev/null +++ b/src/IconHourglassDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassDisabledOutlinedFilled as default } diff --git a/src/IconHourglassDisabledRoundedFilled.tsx b/src/IconHourglassDisabledRoundedFilled.tsx new file mode 100644 index 000000000..40280b641 --- /dev/null +++ b/src/IconHourglassDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassDisabledRoundedFilled as default } diff --git a/src/IconHourglassDisabledSharpFilled.tsx b/src/IconHourglassDisabledSharpFilled.tsx new file mode 100644 index 000000000..01cab324a --- /dev/null +++ b/src/IconHourglassDisabledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassDisabledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassDisabledSharpFilled as default } diff --git a/src/IconHourglassEmptyOutlinedFilled.tsx b/src/IconHourglassEmptyOutlinedFilled.tsx new file mode 100644 index 000000000..3cc31bda1 --- /dev/null +++ b/src/IconHourglassEmptyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassEmptyOutlinedFilled as default } diff --git a/src/IconHourglassEmptyRoundedFilled.tsx b/src/IconHourglassEmptyRoundedFilled.tsx new file mode 100644 index 000000000..187d58141 --- /dev/null +++ b/src/IconHourglassEmptyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassEmptyRoundedFilled as default } diff --git a/src/IconHourglassEmptySharpFilled.tsx b/src/IconHourglassEmptySharpFilled.tsx new file mode 100644 index 000000000..2779c2ac8 --- /dev/null +++ b/src/IconHourglassEmptySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassEmptySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassEmptySharpFilled as default } diff --git a/src/IconHourglassOutlinedFilled.tsx b/src/IconHourglassOutlinedFilled.tsx new file mode 100644 index 000000000..fb0efec85 --- /dev/null +++ b/src/IconHourglassOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassOutlinedFilled as default } diff --git a/src/IconHourglassRoundedFilled.tsx b/src/IconHourglassRoundedFilled.tsx new file mode 100644 index 000000000..ed83ce9a8 --- /dev/null +++ b/src/IconHourglassRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassRoundedFilled as default } diff --git a/src/IconHourglassSharpFilled.tsx b/src/IconHourglassSharpFilled.tsx new file mode 100644 index 000000000..7c42a4d50 --- /dev/null +++ b/src/IconHourglassSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassSharpFilled as default } diff --git a/src/IconHourglassTopOutlinedFilled.tsx b/src/IconHourglassTopOutlinedFilled.tsx new file mode 100644 index 000000000..f673ff965 --- /dev/null +++ b/src/IconHourglassTopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassTopOutlinedFilled as default } diff --git a/src/IconHourglassTopRoundedFilled.tsx b/src/IconHourglassTopRoundedFilled.tsx new file mode 100644 index 000000000..b4485228e --- /dev/null +++ b/src/IconHourglassTopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassTopRoundedFilled as default } diff --git a/src/IconHourglassTopSharpFilled.tsx b/src/IconHourglassTopSharpFilled.tsx new file mode 100644 index 000000000..f619174eb --- /dev/null +++ b/src/IconHourglassTopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHourglassTopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHourglassTopSharpFilled as default } diff --git a/src/IconHouseOutlinedFilled.tsx b/src/IconHouseOutlinedFilled.tsx new file mode 100644 index 000000000..52305e561 --- /dev/null +++ b/src/IconHouseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseOutlinedFilled as default } diff --git a/src/IconHouseRoundedFilled.tsx b/src/IconHouseRoundedFilled.tsx new file mode 100644 index 000000000..08fb06806 --- /dev/null +++ b/src/IconHouseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseRoundedFilled as default } diff --git a/src/IconHouseSharpFilled.tsx b/src/IconHouseSharpFilled.tsx new file mode 100644 index 000000000..78914c788 --- /dev/null +++ b/src/IconHouseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseSharpFilled as default } diff --git a/src/IconHouseSidingOutlinedFilled.tsx b/src/IconHouseSidingOutlinedFilled.tsx new file mode 100644 index 000000000..a7440fcfa --- /dev/null +++ b/src/IconHouseSidingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseSidingOutlinedFilled as default } diff --git a/src/IconHouseSidingRoundedFilled.tsx b/src/IconHouseSidingRoundedFilled.tsx new file mode 100644 index 000000000..c3b2a5124 --- /dev/null +++ b/src/IconHouseSidingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseSidingRoundedFilled as default } diff --git a/src/IconHouseSidingSharpFilled.tsx b/src/IconHouseSidingSharpFilled.tsx new file mode 100644 index 000000000..bd1730dab --- /dev/null +++ b/src/IconHouseSidingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseSidingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseSidingSharpFilled as default } diff --git a/src/IconHouseWithShieldOutlinedFilled.tsx b/src/IconHouseWithShieldOutlinedFilled.tsx new file mode 100644 index 000000000..15f4aff8f --- /dev/null +++ b/src/IconHouseWithShieldOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseWithShieldOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseWithShieldOutlinedFilled as default } diff --git a/src/IconHouseWithShieldRoundedFilled.tsx b/src/IconHouseWithShieldRoundedFilled.tsx new file mode 100644 index 000000000..f948584c4 --- /dev/null +++ b/src/IconHouseWithShieldRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseWithShieldRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseWithShieldRoundedFilled as default } diff --git a/src/IconHouseWithShieldSharpFilled.tsx b/src/IconHouseWithShieldSharpFilled.tsx new file mode 100644 index 000000000..aae78c7e8 --- /dev/null +++ b/src/IconHouseWithShieldSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseWithShieldSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseWithShieldSharpFilled as default } diff --git a/src/IconHouseboatOutlinedFilled.tsx b/src/IconHouseboatOutlinedFilled.tsx new file mode 100644 index 000000000..472c41b20 --- /dev/null +++ b/src/IconHouseboatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseboatOutlinedFilled as default } diff --git a/src/IconHouseboatRoundedFilled.tsx b/src/IconHouseboatRoundedFilled.tsx new file mode 100644 index 000000000..12b2ab886 --- /dev/null +++ b/src/IconHouseboatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseboatRoundedFilled as default } diff --git a/src/IconHouseboatSharpFilled.tsx b/src/IconHouseboatSharpFilled.tsx new file mode 100644 index 000000000..9cf569854 --- /dev/null +++ b/src/IconHouseboatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseboatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseboatSharpFilled as default } diff --git a/src/IconHouseholdSuppliesOutlinedFilled.tsx b/src/IconHouseholdSuppliesOutlinedFilled.tsx new file mode 100644 index 000000000..191eff52e --- /dev/null +++ b/src/IconHouseholdSuppliesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseholdSuppliesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseholdSuppliesOutlinedFilled as default } diff --git a/src/IconHouseholdSuppliesRoundedFilled.tsx b/src/IconHouseholdSuppliesRoundedFilled.tsx new file mode 100644 index 000000000..be02abace --- /dev/null +++ b/src/IconHouseholdSuppliesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseholdSuppliesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseholdSuppliesRoundedFilled as default } diff --git a/src/IconHouseholdSuppliesSharpFilled.tsx b/src/IconHouseholdSuppliesSharpFilled.tsx new file mode 100644 index 000000000..b7cb93746 --- /dev/null +++ b/src/IconHouseholdSuppliesSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHouseholdSuppliesSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHouseholdSuppliesSharpFilled as default } diff --git a/src/IconHovOutlinedFilled.tsx b/src/IconHovOutlinedFilled.tsx new file mode 100644 index 000000000..2ba32d0fc --- /dev/null +++ b/src/IconHovOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHovOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHovOutlinedFilled as default } diff --git a/src/IconHovRoundedFilled.tsx b/src/IconHovRoundedFilled.tsx new file mode 100644 index 000000000..6500730d6 --- /dev/null +++ b/src/IconHovRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHovRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHovRoundedFilled as default } diff --git a/src/IconHovSharpFilled.tsx b/src/IconHovSharpFilled.tsx new file mode 100644 index 000000000..83675a1f5 --- /dev/null +++ b/src/IconHovSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHovSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHovSharpFilled as default } diff --git a/src/IconHowToRegOutlinedFilled.tsx b/src/IconHowToRegOutlinedFilled.tsx new file mode 100644 index 000000000..58f79c620 --- /dev/null +++ b/src/IconHowToRegOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHowToRegOutlinedFilled as default } diff --git a/src/IconHowToRegRoundedFilled.tsx b/src/IconHowToRegRoundedFilled.tsx new file mode 100644 index 000000000..03b30efe4 --- /dev/null +++ b/src/IconHowToRegRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHowToRegRoundedFilled as default } diff --git a/src/IconHowToRegSharpFilled.tsx b/src/IconHowToRegSharpFilled.tsx new file mode 100644 index 000000000..ee9e422e2 --- /dev/null +++ b/src/IconHowToRegSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToRegSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHowToRegSharpFilled as default } diff --git a/src/IconHowToVoteOutlinedFilled.tsx b/src/IconHowToVoteOutlinedFilled.tsx new file mode 100644 index 000000000..279ade57e --- /dev/null +++ b/src/IconHowToVoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHowToVoteOutlinedFilled as default } diff --git a/src/IconHowToVoteRoundedFilled.tsx b/src/IconHowToVoteRoundedFilled.tsx new file mode 100644 index 000000000..878dc97dc --- /dev/null +++ b/src/IconHowToVoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHowToVoteRoundedFilled as default } diff --git a/src/IconHowToVoteSharpFilled.tsx b/src/IconHowToVoteSharpFilled.tsx new file mode 100644 index 000000000..dbea76abd --- /dev/null +++ b/src/IconHowToVoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHowToVoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHowToVoteSharpFilled as default } diff --git a/src/IconHrRestingOutlinedFilled.tsx b/src/IconHrRestingOutlinedFilled.tsx new file mode 100644 index 000000000..c2e23cdf8 --- /dev/null +++ b/src/IconHrRestingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHrRestingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHrRestingOutlinedFilled as default } diff --git a/src/IconHrRestingRoundedFilled.tsx b/src/IconHrRestingRoundedFilled.tsx new file mode 100644 index 000000000..4cd41b2a1 --- /dev/null +++ b/src/IconHrRestingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHrRestingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHrRestingRoundedFilled as default } diff --git a/src/IconHrRestingSharpFilled.tsx b/src/IconHrRestingSharpFilled.tsx new file mode 100644 index 000000000..0d8e44d75 --- /dev/null +++ b/src/IconHrRestingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHrRestingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHrRestingSharpFilled as default } diff --git a/src/IconHtmlOutlinedFilled.tsx b/src/IconHtmlOutlinedFilled.tsx new file mode 100644 index 000000000..9966c8be3 --- /dev/null +++ b/src/IconHtmlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHtmlOutlinedFilled as default } diff --git a/src/IconHtmlRoundedFilled.tsx b/src/IconHtmlRoundedFilled.tsx new file mode 100644 index 000000000..4f9a31248 --- /dev/null +++ b/src/IconHtmlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHtmlRoundedFilled as default } diff --git a/src/IconHtmlSharpFilled.tsx b/src/IconHtmlSharpFilled.tsx new file mode 100644 index 000000000..17eb906b7 --- /dev/null +++ b/src/IconHtmlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHtmlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHtmlSharpFilled as default } diff --git a/src/IconHttpOutlinedFilled.tsx b/src/IconHttpOutlinedFilled.tsx new file mode 100644 index 000000000..3fdd688d5 --- /dev/null +++ b/src/IconHttpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHttpOutlinedFilled as default } diff --git a/src/IconHttpRoundedFilled.tsx b/src/IconHttpRoundedFilled.tsx new file mode 100644 index 000000000..ac7537679 --- /dev/null +++ b/src/IconHttpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHttpRoundedFilled as default } diff --git a/src/IconHttpSharpFilled.tsx b/src/IconHttpSharpFilled.tsx new file mode 100644 index 000000000..8c00f3a9e --- /dev/null +++ b/src/IconHttpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHttpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHttpSharpFilled as default } diff --git a/src/IconHubOutlinedFilled.tsx b/src/IconHubOutlinedFilled.tsx new file mode 100644 index 000000000..301d08a8b --- /dev/null +++ b/src/IconHubOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHubOutlinedFilled as default } diff --git a/src/IconHubRoundedFilled.tsx b/src/IconHubRoundedFilled.tsx new file mode 100644 index 000000000..e11a0ff7e --- /dev/null +++ b/src/IconHubRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHubRoundedFilled as default } diff --git a/src/IconHubSharpFilled.tsx b/src/IconHubSharpFilled.tsx new file mode 100644 index 000000000..d41eef32b --- /dev/null +++ b/src/IconHubSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHubSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHubSharpFilled as default } diff --git a/src/IconHumerusAltOutlinedFilled.tsx b/src/IconHumerusAltOutlinedFilled.tsx new file mode 100644 index 000000000..9a06c17ce --- /dev/null +++ b/src/IconHumerusAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumerusAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumerusAltOutlinedFilled as default } diff --git a/src/IconHumerusAltRoundedFilled.tsx b/src/IconHumerusAltRoundedFilled.tsx new file mode 100644 index 000000000..a9af0e92d --- /dev/null +++ b/src/IconHumerusAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumerusAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumerusAltRoundedFilled as default } diff --git a/src/IconHumerusAltSharpFilled.tsx b/src/IconHumerusAltSharpFilled.tsx new file mode 100644 index 000000000..85115ff68 --- /dev/null +++ b/src/IconHumerusAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumerusAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumerusAltSharpFilled as default } diff --git a/src/IconHumerusOutlinedFilled.tsx b/src/IconHumerusOutlinedFilled.tsx new file mode 100644 index 000000000..e830eb822 --- /dev/null +++ b/src/IconHumerusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumerusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumerusOutlinedFilled as default } diff --git a/src/IconHumerusRoundedFilled.tsx b/src/IconHumerusRoundedFilled.tsx new file mode 100644 index 000000000..815a967fd --- /dev/null +++ b/src/IconHumerusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumerusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumerusRoundedFilled as default } diff --git a/src/IconHumerusSharpFilled.tsx b/src/IconHumerusSharpFilled.tsx new file mode 100644 index 000000000..af9ccb867 --- /dev/null +++ b/src/IconHumerusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumerusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumerusSharpFilled as default } diff --git a/src/IconHumidityHighOutlinedFilled.tsx b/src/IconHumidityHighOutlinedFilled.tsx new file mode 100644 index 000000000..76014c136 --- /dev/null +++ b/src/IconHumidityHighOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityHighOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityHighOutlinedFilled as default } diff --git a/src/IconHumidityHighRoundedFilled.tsx b/src/IconHumidityHighRoundedFilled.tsx new file mode 100644 index 000000000..1aca65114 --- /dev/null +++ b/src/IconHumidityHighRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityHighRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityHighRoundedFilled as default } diff --git a/src/IconHumidityHighSharpFilled.tsx b/src/IconHumidityHighSharpFilled.tsx new file mode 100644 index 000000000..95a4614b0 --- /dev/null +++ b/src/IconHumidityHighSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityHighSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityHighSharpFilled as default } diff --git a/src/IconHumidityIndoorOutlinedFilled.tsx b/src/IconHumidityIndoorOutlinedFilled.tsx new file mode 100644 index 000000000..7bde90c42 --- /dev/null +++ b/src/IconHumidityIndoorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityIndoorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityIndoorOutlinedFilled as default } diff --git a/src/IconHumidityIndoorRoundedFilled.tsx b/src/IconHumidityIndoorRoundedFilled.tsx new file mode 100644 index 000000000..d0aecfbb3 --- /dev/null +++ b/src/IconHumidityIndoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityIndoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityIndoorRoundedFilled as default } diff --git a/src/IconHumidityIndoorSharpFilled.tsx b/src/IconHumidityIndoorSharpFilled.tsx new file mode 100644 index 000000000..6941f8846 --- /dev/null +++ b/src/IconHumidityIndoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityIndoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityIndoorSharpFilled as default } diff --git a/src/IconHumidityLowOutlinedFilled.tsx b/src/IconHumidityLowOutlinedFilled.tsx new file mode 100644 index 000000000..486eb4455 --- /dev/null +++ b/src/IconHumidityLowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityLowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityLowOutlinedFilled as default } diff --git a/src/IconHumidityLowRoundedFilled.tsx b/src/IconHumidityLowRoundedFilled.tsx new file mode 100644 index 000000000..c396f76c5 --- /dev/null +++ b/src/IconHumidityLowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityLowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityLowRoundedFilled as default } diff --git a/src/IconHumidityLowSharpFilled.tsx b/src/IconHumidityLowSharpFilled.tsx new file mode 100644 index 000000000..371cdf705 --- /dev/null +++ b/src/IconHumidityLowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityLowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityLowSharpFilled as default } diff --git a/src/IconHumidityMidOutlinedFilled.tsx b/src/IconHumidityMidOutlinedFilled.tsx new file mode 100644 index 000000000..34c274263 --- /dev/null +++ b/src/IconHumidityMidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityMidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityMidOutlinedFilled as default } diff --git a/src/IconHumidityMidRoundedFilled.tsx b/src/IconHumidityMidRoundedFilled.tsx new file mode 100644 index 000000000..07a4870ce --- /dev/null +++ b/src/IconHumidityMidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityMidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityMidRoundedFilled as default } diff --git a/src/IconHumidityMidSharpFilled.tsx b/src/IconHumidityMidSharpFilled.tsx new file mode 100644 index 000000000..654f7ddf1 --- /dev/null +++ b/src/IconHumidityMidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityMidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityMidSharpFilled as default } diff --git a/src/IconHumidityPercentageOutlinedFilled.tsx b/src/IconHumidityPercentageOutlinedFilled.tsx new file mode 100644 index 000000000..e501b7f16 --- /dev/null +++ b/src/IconHumidityPercentageOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityPercentageOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityPercentageOutlinedFilled as default } diff --git a/src/IconHumidityPercentageRoundedFilled.tsx b/src/IconHumidityPercentageRoundedFilled.tsx new file mode 100644 index 000000000..e50f222de --- /dev/null +++ b/src/IconHumidityPercentageRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityPercentageRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityPercentageRoundedFilled as default } diff --git a/src/IconHumidityPercentageSharpFilled.tsx b/src/IconHumidityPercentageSharpFilled.tsx new file mode 100644 index 000000000..ffdec55dc --- /dev/null +++ b/src/IconHumidityPercentageSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHumidityPercentageSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconHumidityPercentageSharpFilled as default } diff --git a/src/IconHvacOutlinedFilled.tsx b/src/IconHvacOutlinedFilled.tsx new file mode 100644 index 000000000..66714f5f0 --- /dev/null +++ b/src/IconHvacOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHvacOutlinedFilled as default } diff --git a/src/IconHvacRoundedFilled.tsx b/src/IconHvacRoundedFilled.tsx new file mode 100644 index 000000000..5a37da901 --- /dev/null +++ b/src/IconHvacRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHvacRoundedFilled as default } diff --git a/src/IconHvacSharpFilled.tsx b/src/IconHvacSharpFilled.tsx new file mode 100644 index 000000000..7ac3d5f55 --- /dev/null +++ b/src/IconHvacSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconHvacSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconHvacSharpFilled as default } diff --git a/src/IconIceSkatingOutlinedFilled.tsx b/src/IconIceSkatingOutlinedFilled.tsx new file mode 100644 index 000000000..b4ecbde31 --- /dev/null +++ b/src/IconIceSkatingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIceSkatingOutlinedFilled as default } diff --git a/src/IconIceSkatingRoundedFilled.tsx b/src/IconIceSkatingRoundedFilled.tsx new file mode 100644 index 000000000..1b5c4eac5 --- /dev/null +++ b/src/IconIceSkatingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIceSkatingRoundedFilled as default } diff --git a/src/IconIceSkatingSharpFilled.tsx b/src/IconIceSkatingSharpFilled.tsx new file mode 100644 index 000000000..3fab9bbfa --- /dev/null +++ b/src/IconIceSkatingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIceSkatingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIceSkatingSharpFilled as default } diff --git a/src/IconIcecreamOutlinedFilled.tsx b/src/IconIcecreamOutlinedFilled.tsx new file mode 100644 index 000000000..7d4933b6c --- /dev/null +++ b/src/IconIcecreamOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIcecreamOutlinedFilled as default } diff --git a/src/IconIcecreamRoundedFilled.tsx b/src/IconIcecreamRoundedFilled.tsx new file mode 100644 index 000000000..0d9ee4732 --- /dev/null +++ b/src/IconIcecreamRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIcecreamRoundedFilled as default } diff --git a/src/IconIcecreamSharpFilled.tsx b/src/IconIcecreamSharpFilled.tsx new file mode 100644 index 000000000..3cc74f72e --- /dev/null +++ b/src/IconIcecreamSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIcecreamSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIcecreamSharpFilled as default } diff --git a/src/IconIdCardOutlinedFilled.tsx b/src/IconIdCardOutlinedFilled.tsx new file mode 100644 index 000000000..70b6458e6 --- /dev/null +++ b/src/IconIdCardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIdCardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIdCardOutlinedFilled as default } diff --git a/src/IconIdCardRoundedFilled.tsx b/src/IconIdCardRoundedFilled.tsx new file mode 100644 index 000000000..2bda16c20 --- /dev/null +++ b/src/IconIdCardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIdCardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIdCardRoundedFilled as default } diff --git a/src/IconIdCardSharpFilled.tsx b/src/IconIdCardSharpFilled.tsx new file mode 100644 index 000000000..69f004ef1 --- /dev/null +++ b/src/IconIdCardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIdCardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIdCardSharpFilled as default } diff --git a/src/IconIflOutlinedFilled.tsx b/src/IconIflOutlinedFilled.tsx new file mode 100644 index 000000000..1f89697d4 --- /dev/null +++ b/src/IconIflOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIflOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIflOutlinedFilled as default } diff --git a/src/IconIflRoundedFilled.tsx b/src/IconIflRoundedFilled.tsx new file mode 100644 index 000000000..6443df0e8 --- /dev/null +++ b/src/IconIflRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIflRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIflRoundedFilled as default } diff --git a/src/IconIflSharpFilled.tsx b/src/IconIflSharpFilled.tsx new file mode 100644 index 000000000..de22f3a3a --- /dev/null +++ b/src/IconIflSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIflSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIflSharpFilled as default } diff --git a/src/IconIframeOffOutlinedFilled.tsx b/src/IconIframeOffOutlinedFilled.tsx new file mode 100644 index 000000000..bd819c3f1 --- /dev/null +++ b/src/IconIframeOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIframeOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIframeOffOutlinedFilled as default } diff --git a/src/IconIframeOffRoundedFilled.tsx b/src/IconIframeOffRoundedFilled.tsx new file mode 100644 index 000000000..439e229c8 --- /dev/null +++ b/src/IconIframeOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIframeOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIframeOffRoundedFilled as default } diff --git a/src/IconIframeOffSharpFilled.tsx b/src/IconIframeOffSharpFilled.tsx new file mode 100644 index 000000000..50eaeed6d --- /dev/null +++ b/src/IconIframeOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIframeOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIframeOffSharpFilled as default } diff --git a/src/IconIframeOutlinedFilled.tsx b/src/IconIframeOutlinedFilled.tsx new file mode 100644 index 000000000..f50943747 --- /dev/null +++ b/src/IconIframeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIframeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIframeOutlinedFilled as default } diff --git a/src/IconIframeRoundedFilled.tsx b/src/IconIframeRoundedFilled.tsx new file mode 100644 index 000000000..a8c69884a --- /dev/null +++ b/src/IconIframeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIframeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIframeRoundedFilled as default } diff --git a/src/IconIframeSharpFilled.tsx b/src/IconIframeSharpFilled.tsx new file mode 100644 index 000000000..8b1cfc51a --- /dev/null +++ b/src/IconIframeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIframeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIframeSharpFilled as default } diff --git a/src/IconImageAspectRatioOutlinedFilled.tsx b/src/IconImageAspectRatioOutlinedFilled.tsx new file mode 100644 index 000000000..8ba60c95b --- /dev/null +++ b/src/IconImageAspectRatioOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImageAspectRatioOutlinedFilled as default } diff --git a/src/IconImageAspectRatioRoundedFilled.tsx b/src/IconImageAspectRatioRoundedFilled.tsx new file mode 100644 index 000000000..0a4f71abe --- /dev/null +++ b/src/IconImageAspectRatioRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImageAspectRatioRoundedFilled as default } diff --git a/src/IconImageAspectRatioSharpFilled.tsx b/src/IconImageAspectRatioSharpFilled.tsx new file mode 100644 index 000000000..865d03f3b --- /dev/null +++ b/src/IconImageAspectRatioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageAspectRatioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageAspectRatioSharpFilled as default } diff --git a/src/IconImageOutlinedFilled.tsx b/src/IconImageOutlinedFilled.tsx new file mode 100644 index 000000000..b0e1a6cf7 --- /dev/null +++ b/src/IconImageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageOutlinedFilled as default } diff --git a/src/IconImageRoundedFilled.tsx b/src/IconImageRoundedFilled.tsx new file mode 100644 index 000000000..9fee828b3 --- /dev/null +++ b/src/IconImageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageRoundedFilled as default } diff --git a/src/IconImageSearchOutlinedFilled.tsx b/src/IconImageSearchOutlinedFilled.tsx new file mode 100644 index 000000000..ae3ff6121 --- /dev/null +++ b/src/IconImageSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageSearchOutlinedFilled as default } diff --git a/src/IconImageSearchRoundedFilled.tsx b/src/IconImageSearchRoundedFilled.tsx new file mode 100644 index 000000000..6d6b18629 --- /dev/null +++ b/src/IconImageSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageSearchRoundedFilled as default } diff --git a/src/IconImageSearchSharpFilled.tsx b/src/IconImageSearchSharpFilled.tsx new file mode 100644 index 000000000..615912d7d --- /dev/null +++ b/src/IconImageSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageSearchSharpFilled as default } diff --git a/src/IconImageSharpFilled.tsx b/src/IconImageSharpFilled.tsx new file mode 100644 index 000000000..5c3f19429 --- /dev/null +++ b/src/IconImageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImageSharpFilled as default } diff --git a/src/IconImagesearchRollerOutlinedFilled.tsx b/src/IconImagesearchRollerOutlinedFilled.tsx new file mode 100644 index 000000000..f55e47b75 --- /dev/null +++ b/src/IconImagesearchRollerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImagesearchRollerOutlinedFilled as default } diff --git a/src/IconImagesearchRollerRoundedFilled.tsx b/src/IconImagesearchRollerRoundedFilled.tsx new file mode 100644 index 000000000..4e01eec14 --- /dev/null +++ b/src/IconImagesearchRollerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImagesearchRollerRoundedFilled as default } diff --git a/src/IconImagesearchRollerSharpFilled.tsx b/src/IconImagesearchRollerSharpFilled.tsx new file mode 100644 index 000000000..3cbfef713 --- /dev/null +++ b/src/IconImagesearchRollerSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesearchRollerSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImagesearchRollerSharpFilled as default } diff --git a/src/IconImagesmodeOutlinedFilled.tsx b/src/IconImagesmodeOutlinedFilled.tsx new file mode 100644 index 000000000..0338a992d --- /dev/null +++ b/src/IconImagesmodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesmodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImagesmodeOutlinedFilled as default } diff --git a/src/IconImagesmodeRoundedFilled.tsx b/src/IconImagesmodeRoundedFilled.tsx new file mode 100644 index 000000000..f08ba52ad --- /dev/null +++ b/src/IconImagesmodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesmodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImagesmodeRoundedFilled as default } diff --git a/src/IconImagesmodeSharpFilled.tsx b/src/IconImagesmodeSharpFilled.tsx new file mode 100644 index 000000000..4c1f5eaa5 --- /dev/null +++ b/src/IconImagesmodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImagesmodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImagesmodeSharpFilled as default } diff --git a/src/IconImmunologyOutlinedFilled.tsx b/src/IconImmunologyOutlinedFilled.tsx new file mode 100644 index 000000000..581564d5f --- /dev/null +++ b/src/IconImmunologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImmunologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImmunologyOutlinedFilled as default } diff --git a/src/IconImmunologyRoundedFilled.tsx b/src/IconImmunologyRoundedFilled.tsx new file mode 100644 index 000000000..da620d869 --- /dev/null +++ b/src/IconImmunologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImmunologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImmunologyRoundedFilled as default } diff --git a/src/IconImmunologySharpFilled.tsx b/src/IconImmunologySharpFilled.tsx new file mode 100644 index 000000000..9335f7033 --- /dev/null +++ b/src/IconImmunologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImmunologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImmunologySharpFilled as default } diff --git a/src/IconImportContactsOutlinedFilled.tsx b/src/IconImportContactsOutlinedFilled.tsx new file mode 100644 index 000000000..2d90779e0 --- /dev/null +++ b/src/IconImportContactsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImportContactsOutlinedFilled as default } diff --git a/src/IconImportContactsRoundedFilled.tsx b/src/IconImportContactsRoundedFilled.tsx new file mode 100644 index 000000000..e14d0a9fe --- /dev/null +++ b/src/IconImportContactsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImportContactsRoundedFilled as default } diff --git a/src/IconImportContactsSharpFilled.tsx b/src/IconImportContactsSharpFilled.tsx new file mode 100644 index 000000000..ba43e526c --- /dev/null +++ b/src/IconImportContactsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportContactsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImportContactsSharpFilled as default } diff --git a/src/IconImportantDevicesOutlinedFilled.tsx b/src/IconImportantDevicesOutlinedFilled.tsx new file mode 100644 index 000000000..dca88edfc --- /dev/null +++ b/src/IconImportantDevicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImportantDevicesOutlinedFilled as default } diff --git a/src/IconImportantDevicesRoundedFilled.tsx b/src/IconImportantDevicesRoundedFilled.tsx new file mode 100644 index 000000000..f8622eb14 --- /dev/null +++ b/src/IconImportantDevicesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconImportantDevicesRoundedFilled as default } diff --git a/src/IconImportantDevicesSharpFilled.tsx b/src/IconImportantDevicesSharpFilled.tsx new file mode 100644 index 000000000..0284f8e11 --- /dev/null +++ b/src/IconImportantDevicesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconImportantDevicesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconImportantDevicesSharpFilled as default } diff --git a/src/IconInHomeModeOutlinedFilled.tsx b/src/IconInHomeModeOutlinedFilled.tsx new file mode 100644 index 000000000..ab68083e1 --- /dev/null +++ b/src/IconInHomeModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInHomeModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInHomeModeOutlinedFilled as default } diff --git a/src/IconInHomeModeRoundedFilled.tsx b/src/IconInHomeModeRoundedFilled.tsx new file mode 100644 index 000000000..70d02369b --- /dev/null +++ b/src/IconInHomeModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInHomeModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInHomeModeRoundedFilled as default } diff --git a/src/IconInHomeModeSharpFilled.tsx b/src/IconInHomeModeSharpFilled.tsx new file mode 100644 index 000000000..5ad21f432 --- /dev/null +++ b/src/IconInHomeModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInHomeModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInHomeModeSharpFilled as default } diff --git a/src/IconInactiveOrderOutlinedFilled.tsx b/src/IconInactiveOrderOutlinedFilled.tsx new file mode 100644 index 000000000..cb47589bf --- /dev/null +++ b/src/IconInactiveOrderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInactiveOrderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInactiveOrderOutlinedFilled as default } diff --git a/src/IconInactiveOrderRoundedFilled.tsx b/src/IconInactiveOrderRoundedFilled.tsx new file mode 100644 index 000000000..11e18ea80 --- /dev/null +++ b/src/IconInactiveOrderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInactiveOrderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInactiveOrderRoundedFilled as default } diff --git a/src/IconInactiveOrderSharpFilled.tsx b/src/IconInactiveOrderSharpFilled.tsx new file mode 100644 index 000000000..f551a0823 --- /dev/null +++ b/src/IconInactiveOrderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInactiveOrderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInactiveOrderSharpFilled as default } diff --git a/src/IconInboxCustomizeOutlinedFilled.tsx b/src/IconInboxCustomizeOutlinedFilled.tsx new file mode 100644 index 000000000..11f02e5ee --- /dev/null +++ b/src/IconInboxCustomizeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxCustomizeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInboxCustomizeOutlinedFilled as default } diff --git a/src/IconInboxCustomizeRoundedFilled.tsx b/src/IconInboxCustomizeRoundedFilled.tsx new file mode 100644 index 000000000..c075e6891 --- /dev/null +++ b/src/IconInboxCustomizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxCustomizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInboxCustomizeRoundedFilled as default } diff --git a/src/IconInboxCustomizeSharpFilled.tsx b/src/IconInboxCustomizeSharpFilled.tsx new file mode 100644 index 000000000..12e76da38 --- /dev/null +++ b/src/IconInboxCustomizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxCustomizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInboxCustomizeSharpFilled as default } diff --git a/src/IconInboxOutlinedFilled.tsx b/src/IconInboxOutlinedFilled.tsx new file mode 100644 index 000000000..6c81605f6 --- /dev/null +++ b/src/IconInboxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInboxOutlinedFilled as default } diff --git a/src/IconInboxRoundedFilled.tsx b/src/IconInboxRoundedFilled.tsx new file mode 100644 index 000000000..a667781ed --- /dev/null +++ b/src/IconInboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInboxRoundedFilled as default } diff --git a/src/IconInboxSharpFilled.tsx b/src/IconInboxSharpFilled.tsx new file mode 100644 index 000000000..0e816ec7f --- /dev/null +++ b/src/IconInboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInboxSharpFilled as default } diff --git a/src/IconIncompleteCircleOutlinedFilled.tsx b/src/IconIncompleteCircleOutlinedFilled.tsx new file mode 100644 index 000000000..dd12aa171 --- /dev/null +++ b/src/IconIncompleteCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIncompleteCircleOutlinedFilled as default } diff --git a/src/IconIncompleteCircleRoundedFilled.tsx b/src/IconIncompleteCircleRoundedFilled.tsx new file mode 100644 index 000000000..165981ef6 --- /dev/null +++ b/src/IconIncompleteCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIncompleteCircleRoundedFilled as default } diff --git a/src/IconIncompleteCircleSharpFilled.tsx b/src/IconIncompleteCircleSharpFilled.tsx new file mode 100644 index 000000000..c5ba8e074 --- /dev/null +++ b/src/IconIncompleteCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIncompleteCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIncompleteCircleSharpFilled as default } diff --git a/src/IconIndeterminateCheckBoxOutlinedFilled.tsx b/src/IconIndeterminateCheckBoxOutlinedFilled.tsx new file mode 100644 index 000000000..bc3dc8c3a --- /dev/null +++ b/src/IconIndeterminateCheckBoxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIndeterminateCheckBoxOutlinedFilled as default } diff --git a/src/IconIndeterminateCheckBoxRoundedFilled.tsx b/src/IconIndeterminateCheckBoxRoundedFilled.tsx new file mode 100644 index 000000000..c891f5af3 --- /dev/null +++ b/src/IconIndeterminateCheckBoxRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIndeterminateCheckBoxRoundedFilled as default } diff --git a/src/IconIndeterminateCheckBoxSharpFilled.tsx b/src/IconIndeterminateCheckBoxSharpFilled.tsx new file mode 100644 index 000000000..a2a3ff690 --- /dev/null +++ b/src/IconIndeterminateCheckBoxSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateCheckBoxSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIndeterminateCheckBoxSharpFilled as default } diff --git a/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx b/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx new file mode 100644 index 000000000..544d8135e --- /dev/null +++ b/src/IconIndeterminateQuestionBoxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateQuestionBoxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIndeterminateQuestionBoxOutlinedFilled as default } diff --git a/src/IconIndeterminateQuestionBoxRoundedFilled.tsx b/src/IconIndeterminateQuestionBoxRoundedFilled.tsx new file mode 100644 index 000000000..e61bbe5bd --- /dev/null +++ b/src/IconIndeterminateQuestionBoxRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateQuestionBoxRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIndeterminateQuestionBoxRoundedFilled as default } diff --git a/src/IconIndeterminateQuestionBoxSharpFilled.tsx b/src/IconIndeterminateQuestionBoxSharpFilled.tsx new file mode 100644 index 000000000..14ecdac70 --- /dev/null +++ b/src/IconIndeterminateQuestionBoxSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIndeterminateQuestionBoxSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIndeterminateQuestionBoxSharpFilled as default } diff --git a/src/IconInfoIOutlinedFilled.tsx b/src/IconInfoIOutlinedFilled.tsx new file mode 100644 index 000000000..1760959e5 --- /dev/null +++ b/src/IconInfoIOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoIOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfoIOutlinedFilled as default } diff --git a/src/IconInfoIRoundedFilled.tsx b/src/IconInfoIRoundedFilled.tsx new file mode 100644 index 000000000..a3d550aee --- /dev/null +++ b/src/IconInfoIRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoIRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfoIRoundedFilled as default } diff --git a/src/IconInfoISharpFilled.tsx b/src/IconInfoISharpFilled.tsx new file mode 100644 index 000000000..f94154b8e --- /dev/null +++ b/src/IconInfoISharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoISharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfoISharpFilled as default } diff --git a/src/IconInfoOutlinedFilled.tsx b/src/IconInfoOutlinedFilled.tsx new file mode 100644 index 000000000..e0e948498 --- /dev/null +++ b/src/IconInfoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfoOutlinedFilled as default } diff --git a/src/IconInfoRoundedFilled.tsx b/src/IconInfoRoundedFilled.tsx new file mode 100644 index 000000000..f31c5ccdc --- /dev/null +++ b/src/IconInfoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfoRoundedFilled as default } diff --git a/src/IconInfoSharpFilled.tsx b/src/IconInfoSharpFilled.tsx new file mode 100644 index 000000000..7407ebc35 --- /dev/null +++ b/src/IconInfoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfoSharpFilled as default } diff --git a/src/IconInfraredOutlinedFilled.tsx b/src/IconInfraredOutlinedFilled.tsx new file mode 100644 index 000000000..54af210ed --- /dev/null +++ b/src/IconInfraredOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfraredOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfraredOutlinedFilled as default } diff --git a/src/IconInfraredRoundedFilled.tsx b/src/IconInfraredRoundedFilled.tsx new file mode 100644 index 000000000..0152453f7 --- /dev/null +++ b/src/IconInfraredRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfraredRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfraredRoundedFilled as default } diff --git a/src/IconInfraredSharpFilled.tsx b/src/IconInfraredSharpFilled.tsx new file mode 100644 index 000000000..6e8eb7802 --- /dev/null +++ b/src/IconInfraredSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInfraredSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInfraredSharpFilled as default } diff --git a/src/IconInkEraserOffOutlinedFilled.tsx b/src/IconInkEraserOffOutlinedFilled.tsx new file mode 100644 index 000000000..66910fbc9 --- /dev/null +++ b/src/IconInkEraserOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkEraserOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkEraserOffOutlinedFilled as default } diff --git a/src/IconInkEraserOffRoundedFilled.tsx b/src/IconInkEraserOffRoundedFilled.tsx new file mode 100644 index 000000000..cd06e4895 --- /dev/null +++ b/src/IconInkEraserOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkEraserOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkEraserOffRoundedFilled as default } diff --git a/src/IconInkEraserOffSharpFilled.tsx b/src/IconInkEraserOffSharpFilled.tsx new file mode 100644 index 000000000..b87865024 --- /dev/null +++ b/src/IconInkEraserOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkEraserOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkEraserOffSharpFilled as default } diff --git a/src/IconInkEraserOutlinedFilled.tsx b/src/IconInkEraserOutlinedFilled.tsx new file mode 100644 index 000000000..629746bcf --- /dev/null +++ b/src/IconInkEraserOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkEraserOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkEraserOutlinedFilled as default } diff --git a/src/IconInkEraserRoundedFilled.tsx b/src/IconInkEraserRoundedFilled.tsx new file mode 100644 index 000000000..356b0f0b4 --- /dev/null +++ b/src/IconInkEraserRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkEraserRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkEraserRoundedFilled as default } diff --git a/src/IconInkEraserSharpFilled.tsx b/src/IconInkEraserSharpFilled.tsx new file mode 100644 index 000000000..2eec30a34 --- /dev/null +++ b/src/IconInkEraserSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkEraserSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkEraserSharpFilled as default } diff --git a/src/IconInkHighlighterMoveOutlinedFilled.tsx b/src/IconInkHighlighterMoveOutlinedFilled.tsx new file mode 100644 index 000000000..b1a47974d --- /dev/null +++ b/src/IconInkHighlighterMoveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkHighlighterMoveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInkHighlighterMoveOutlinedFilled as default } diff --git a/src/IconInkHighlighterMoveRoundedFilled.tsx b/src/IconInkHighlighterMoveRoundedFilled.tsx new file mode 100644 index 000000000..33d4531b1 --- /dev/null +++ b/src/IconInkHighlighterMoveRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkHighlighterMoveRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInkHighlighterMoveRoundedFilled as default } diff --git a/src/IconInkHighlighterMoveSharpFilled.tsx b/src/IconInkHighlighterMoveSharpFilled.tsx new file mode 100644 index 000000000..3ba29f1ed --- /dev/null +++ b/src/IconInkHighlighterMoveSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkHighlighterMoveSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInkHighlighterMoveSharpFilled as default } diff --git a/src/IconInkHighlighterOutlinedFilled.tsx b/src/IconInkHighlighterOutlinedFilled.tsx new file mode 100644 index 000000000..c6aedc47e --- /dev/null +++ b/src/IconInkHighlighterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkHighlighterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInkHighlighterOutlinedFilled as default } diff --git a/src/IconInkHighlighterRoundedFilled.tsx b/src/IconInkHighlighterRoundedFilled.tsx new file mode 100644 index 000000000..c298446af --- /dev/null +++ b/src/IconInkHighlighterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkHighlighterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkHighlighterRoundedFilled as default } diff --git a/src/IconInkHighlighterSharpFilled.tsx b/src/IconInkHighlighterSharpFilled.tsx new file mode 100644 index 000000000..b48b6d3d9 --- /dev/null +++ b/src/IconInkHighlighterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkHighlighterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkHighlighterSharpFilled as default } diff --git a/src/IconInkMarkerOutlinedFilled.tsx b/src/IconInkMarkerOutlinedFilled.tsx new file mode 100644 index 000000000..24d0bde6c --- /dev/null +++ b/src/IconInkMarkerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkMarkerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkMarkerOutlinedFilled as default } diff --git a/src/IconInkMarkerRoundedFilled.tsx b/src/IconInkMarkerRoundedFilled.tsx new file mode 100644 index 000000000..c75ad95c4 --- /dev/null +++ b/src/IconInkMarkerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkMarkerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkMarkerRoundedFilled as default } diff --git a/src/IconInkMarkerSharpFilled.tsx b/src/IconInkMarkerSharpFilled.tsx new file mode 100644 index 000000000..b9031a747 --- /dev/null +++ b/src/IconInkMarkerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkMarkerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkMarkerSharpFilled as default } diff --git a/src/IconInkPenOutlinedFilled.tsx b/src/IconInkPenOutlinedFilled.tsx new file mode 100644 index 000000000..08c193b2e --- /dev/null +++ b/src/IconInkPenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkPenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkPenOutlinedFilled as default } diff --git a/src/IconInkPenRoundedFilled.tsx b/src/IconInkPenRoundedFilled.tsx new file mode 100644 index 000000000..efc3b02f1 --- /dev/null +++ b/src/IconInkPenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkPenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkPenRoundedFilled as default } diff --git a/src/IconInkPenSharpFilled.tsx b/src/IconInkPenSharpFilled.tsx new file mode 100644 index 000000000..63bcdb943 --- /dev/null +++ b/src/IconInkPenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInkPenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInkPenSharpFilled as default } diff --git a/src/IconInpatientOutlinedFilled.tsx b/src/IconInpatientOutlinedFilled.tsx new file mode 100644 index 000000000..c77afe883 --- /dev/null +++ b/src/IconInpatientOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInpatientOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInpatientOutlinedFilled as default } diff --git a/src/IconInpatientRoundedFilled.tsx b/src/IconInpatientRoundedFilled.tsx new file mode 100644 index 000000000..e3d56f80c --- /dev/null +++ b/src/IconInpatientRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInpatientRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInpatientRoundedFilled as default } diff --git a/src/IconInpatientSharpFilled.tsx b/src/IconInpatientSharpFilled.tsx new file mode 100644 index 000000000..56aca6e1d --- /dev/null +++ b/src/IconInpatientSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInpatientSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInpatientSharpFilled as default } diff --git a/src/IconInputCircleOutlinedFilled.tsx b/src/IconInputCircleOutlinedFilled.tsx new file mode 100644 index 000000000..15012fb0a --- /dev/null +++ b/src/IconInputCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInputCircleOutlinedFilled as default } diff --git a/src/IconInputCircleRoundedFilled.tsx b/src/IconInputCircleRoundedFilled.tsx new file mode 100644 index 000000000..ea28c1c21 --- /dev/null +++ b/src/IconInputCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInputCircleRoundedFilled as default } diff --git a/src/IconInputCircleSharpFilled.tsx b/src/IconInputCircleSharpFilled.tsx new file mode 100644 index 000000000..5f332c08b --- /dev/null +++ b/src/IconInputCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInputCircleSharpFilled as default } diff --git a/src/IconInputOutlinedFilled.tsx b/src/IconInputOutlinedFilled.tsx new file mode 100644 index 000000000..22b701013 --- /dev/null +++ b/src/IconInputOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInputOutlinedFilled as default } diff --git a/src/IconInputRoundedFilled.tsx b/src/IconInputRoundedFilled.tsx new file mode 100644 index 000000000..4e8b2fa90 --- /dev/null +++ b/src/IconInputRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInputRoundedFilled as default } diff --git a/src/IconInputSharpFilled.tsx b/src/IconInputSharpFilled.tsx new file mode 100644 index 000000000..97a4a2e77 --- /dev/null +++ b/src/IconInputSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInputSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInputSharpFilled as default } diff --git a/src/IconInsertChartOutlinedFilled.tsx b/src/IconInsertChartOutlinedFilled.tsx new file mode 100644 index 000000000..9d13cf57d --- /dev/null +++ b/src/IconInsertChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertChartOutlinedFilled as default } diff --git a/src/IconInsertChartRoundedFilled.tsx b/src/IconInsertChartRoundedFilled.tsx new file mode 100644 index 000000000..e96cc451e --- /dev/null +++ b/src/IconInsertChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertChartRoundedFilled as default } diff --git a/src/IconInsertChartSharpFilled.tsx b/src/IconInsertChartSharpFilled.tsx new file mode 100644 index 000000000..fa2d51d39 --- /dev/null +++ b/src/IconInsertChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertChartSharpFilled as default } diff --git a/src/IconInsertPageBreakOutlinedFilled.tsx b/src/IconInsertPageBreakOutlinedFilled.tsx new file mode 100644 index 000000000..af881b6ab --- /dev/null +++ b/src/IconInsertPageBreakOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertPageBreakOutlinedFilled as default } diff --git a/src/IconInsertPageBreakRoundedFilled.tsx b/src/IconInsertPageBreakRoundedFilled.tsx new file mode 100644 index 000000000..82291a9ee --- /dev/null +++ b/src/IconInsertPageBreakRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertPageBreakRoundedFilled as default } diff --git a/src/IconInsertPageBreakSharpFilled.tsx b/src/IconInsertPageBreakSharpFilled.tsx new file mode 100644 index 000000000..aa932256c --- /dev/null +++ b/src/IconInsertPageBreakSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertPageBreakSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertPageBreakSharpFilled as default } diff --git a/src/IconInsertTextOutlinedFilled.tsx b/src/IconInsertTextOutlinedFilled.tsx new file mode 100644 index 000000000..0c1bafec6 --- /dev/null +++ b/src/IconInsertTextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertTextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertTextOutlinedFilled as default } diff --git a/src/IconInsertTextRoundedFilled.tsx b/src/IconInsertTextRoundedFilled.tsx new file mode 100644 index 000000000..9e89b414d --- /dev/null +++ b/src/IconInsertTextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertTextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertTextRoundedFilled as default } diff --git a/src/IconInsertTextSharpFilled.tsx b/src/IconInsertTextSharpFilled.tsx new file mode 100644 index 000000000..1029adde4 --- /dev/null +++ b/src/IconInsertTextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInsertTextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInsertTextSharpFilled as default } diff --git a/src/IconInstallDesktopOutlinedFilled.tsx b/src/IconInstallDesktopOutlinedFilled.tsx new file mode 100644 index 000000000..863f055dd --- /dev/null +++ b/src/IconInstallDesktopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInstallDesktopOutlinedFilled as default } diff --git a/src/IconInstallDesktopRoundedFilled.tsx b/src/IconInstallDesktopRoundedFilled.tsx new file mode 100644 index 000000000..505c9cd54 --- /dev/null +++ b/src/IconInstallDesktopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstallDesktopRoundedFilled as default } diff --git a/src/IconInstallDesktopSharpFilled.tsx b/src/IconInstallDesktopSharpFilled.tsx new file mode 100644 index 000000000..b4d9b1235 --- /dev/null +++ b/src/IconInstallDesktopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallDesktopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstallDesktopSharpFilled as default } diff --git a/src/IconInstallMobileOutlinedFilled.tsx b/src/IconInstallMobileOutlinedFilled.tsx new file mode 100644 index 000000000..f2bcc6978 --- /dev/null +++ b/src/IconInstallMobileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstallMobileOutlinedFilled as default } diff --git a/src/IconInstallMobileRoundedFilled.tsx b/src/IconInstallMobileRoundedFilled.tsx new file mode 100644 index 000000000..72c52d72b --- /dev/null +++ b/src/IconInstallMobileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstallMobileRoundedFilled as default } diff --git a/src/IconInstallMobileSharpFilled.tsx b/src/IconInstallMobileSharpFilled.tsx new file mode 100644 index 000000000..d2e1226a6 --- /dev/null +++ b/src/IconInstallMobileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstallMobileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstallMobileSharpFilled as default } diff --git a/src/IconInstantMixOutlinedFilled.tsx b/src/IconInstantMixOutlinedFilled.tsx new file mode 100644 index 000000000..ca6f84a35 --- /dev/null +++ b/src/IconInstantMixOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstantMixOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstantMixOutlinedFilled as default } diff --git a/src/IconInstantMixRoundedFilled.tsx b/src/IconInstantMixRoundedFilled.tsx new file mode 100644 index 000000000..ab2aa3c2d --- /dev/null +++ b/src/IconInstantMixRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstantMixRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstantMixRoundedFilled as default } diff --git a/src/IconInstantMixSharpFilled.tsx b/src/IconInstantMixSharpFilled.tsx new file mode 100644 index 000000000..2466db5b8 --- /dev/null +++ b/src/IconInstantMixSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInstantMixSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInstantMixSharpFilled as default } diff --git a/src/IconIntegrationInstructionsOutlinedFilled.tsx b/src/IconIntegrationInstructionsOutlinedFilled.tsx new file mode 100644 index 000000000..4b7f946a9 --- /dev/null +++ b/src/IconIntegrationInstructionsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIntegrationInstructionsOutlinedFilled as default } diff --git a/src/IconIntegrationInstructionsRoundedFilled.tsx b/src/IconIntegrationInstructionsRoundedFilled.tsx new file mode 100644 index 000000000..0c91350cb --- /dev/null +++ b/src/IconIntegrationInstructionsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIntegrationInstructionsRoundedFilled as default } diff --git a/src/IconIntegrationInstructionsSharpFilled.tsx b/src/IconIntegrationInstructionsSharpFilled.tsx new file mode 100644 index 000000000..fe1f91fca --- /dev/null +++ b/src/IconIntegrationInstructionsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIntegrationInstructionsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconIntegrationInstructionsSharpFilled as default } diff --git a/src/IconInteractiveSpaceOutlinedFilled.tsx b/src/IconInteractiveSpaceOutlinedFilled.tsx new file mode 100644 index 000000000..1c2f71846 --- /dev/null +++ b/src/IconInteractiveSpaceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInteractiveSpaceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInteractiveSpaceOutlinedFilled as default } diff --git a/src/IconInteractiveSpaceRoundedFilled.tsx b/src/IconInteractiveSpaceRoundedFilled.tsx new file mode 100644 index 000000000..9ee3dba8b --- /dev/null +++ b/src/IconInteractiveSpaceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInteractiveSpaceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInteractiveSpaceRoundedFilled as default } diff --git a/src/IconInteractiveSpaceSharpFilled.tsx b/src/IconInteractiveSpaceSharpFilled.tsx new file mode 100644 index 000000000..4e48a36a9 --- /dev/null +++ b/src/IconInteractiveSpaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInteractiveSpaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInteractiveSpaceSharpFilled as default } diff --git a/src/IconInterestsOutlinedFilled.tsx b/src/IconInterestsOutlinedFilled.tsx new file mode 100644 index 000000000..47af41a20 --- /dev/null +++ b/src/IconInterestsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInterestsOutlinedFilled as default } diff --git a/src/IconInterestsRoundedFilled.tsx b/src/IconInterestsRoundedFilled.tsx new file mode 100644 index 000000000..bb17f925d --- /dev/null +++ b/src/IconInterestsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInterestsRoundedFilled as default } diff --git a/src/IconInterestsSharpFilled.tsx b/src/IconInterestsSharpFilled.tsx new file mode 100644 index 000000000..b0ab8950b --- /dev/null +++ b/src/IconInterestsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterestsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInterestsSharpFilled as default } diff --git a/src/IconInterpreterModeOutlinedFilled.tsx b/src/IconInterpreterModeOutlinedFilled.tsx new file mode 100644 index 000000000..80764ffbb --- /dev/null +++ b/src/IconInterpreterModeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInterpreterModeOutlinedFilled as default } diff --git a/src/IconInterpreterModeRoundedFilled.tsx b/src/IconInterpreterModeRoundedFilled.tsx new file mode 100644 index 000000000..c4f8fcb6d --- /dev/null +++ b/src/IconInterpreterModeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInterpreterModeRoundedFilled as default } diff --git a/src/IconInterpreterModeSharpFilled.tsx b/src/IconInterpreterModeSharpFilled.tsx new file mode 100644 index 000000000..13ed72e29 --- /dev/null +++ b/src/IconInterpreterModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInterpreterModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInterpreterModeSharpFilled as default } diff --git a/src/IconInventory2OutlinedFilled.tsx b/src/IconInventory2OutlinedFilled.tsx new file mode 100644 index 000000000..06e4cef05 --- /dev/null +++ b/src/IconInventory2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInventory2OutlinedFilled as default } diff --git a/src/IconInventory2RoundedFilled.tsx b/src/IconInventory2RoundedFilled.tsx new file mode 100644 index 000000000..48f08e15f --- /dev/null +++ b/src/IconInventory2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInventory2RoundedFilled as default } diff --git a/src/IconInventory2SharpFilled.tsx b/src/IconInventory2SharpFilled.tsx new file mode 100644 index 000000000..a9d144a53 --- /dev/null +++ b/src/IconInventory2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventory2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInventory2SharpFilled as default } diff --git a/src/IconInventoryOutlinedFilled.tsx b/src/IconInventoryOutlinedFilled.tsx new file mode 100644 index 000000000..d940bf337 --- /dev/null +++ b/src/IconInventoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInventoryOutlinedFilled as default } diff --git a/src/IconInventoryRoundedFilled.tsx b/src/IconInventoryRoundedFilled.tsx new file mode 100644 index 000000000..d6fc2006e --- /dev/null +++ b/src/IconInventoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInventoryRoundedFilled as default } diff --git a/src/IconInventorySharpFilled.tsx b/src/IconInventorySharpFilled.tsx new file mode 100644 index 000000000..813c0fdcd --- /dev/null +++ b/src/IconInventorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInventorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInventorySharpFilled as default } diff --git a/src/IconInvertColorsOffOutlinedFilled.tsx b/src/IconInvertColorsOffOutlinedFilled.tsx new file mode 100644 index 000000000..45ce0954a --- /dev/null +++ b/src/IconInvertColorsOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInvertColorsOffOutlinedFilled as default } diff --git a/src/IconInvertColorsOffRoundedFilled.tsx b/src/IconInvertColorsOffRoundedFilled.tsx new file mode 100644 index 000000000..c97fee019 --- /dev/null +++ b/src/IconInvertColorsOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconInvertColorsOffRoundedFilled as default } diff --git a/src/IconInvertColorsOffSharpFilled.tsx b/src/IconInvertColorsOffSharpFilled.tsx new file mode 100644 index 000000000..de363e31d --- /dev/null +++ b/src/IconInvertColorsOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInvertColorsOffSharpFilled as default } diff --git a/src/IconInvertColorsOutlinedFilled.tsx b/src/IconInvertColorsOutlinedFilled.tsx new file mode 100644 index 000000000..e7cae6a67 --- /dev/null +++ b/src/IconInvertColorsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInvertColorsOutlinedFilled as default } diff --git a/src/IconInvertColorsRoundedFilled.tsx b/src/IconInvertColorsRoundedFilled.tsx new file mode 100644 index 000000000..0e45e7fe5 --- /dev/null +++ b/src/IconInvertColorsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInvertColorsRoundedFilled as default } diff --git a/src/IconInvertColorsSharpFilled.tsx b/src/IconInvertColorsSharpFilled.tsx new file mode 100644 index 000000000..e04777cec --- /dev/null +++ b/src/IconInvertColorsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconInvertColorsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconInvertColorsSharpFilled as default } diff --git a/src/IconIosOutlinedFilled.tsx b/src/IconIosOutlinedFilled.tsx new file mode 100644 index 000000000..cc30944c3 --- /dev/null +++ b/src/IconIosOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIosOutlinedFilled as default } diff --git a/src/IconIosRoundedFilled.tsx b/src/IconIosRoundedFilled.tsx new file mode 100644 index 000000000..5e0e20f1c --- /dev/null +++ b/src/IconIosRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIosRoundedFilled as default } diff --git a/src/IconIosShareOutlinedFilled.tsx b/src/IconIosShareOutlinedFilled.tsx new file mode 100644 index 000000000..458c28641 --- /dev/null +++ b/src/IconIosShareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIosShareOutlinedFilled as default } diff --git a/src/IconIosShareRoundedFilled.tsx b/src/IconIosShareRoundedFilled.tsx new file mode 100644 index 000000000..0aa8dba44 --- /dev/null +++ b/src/IconIosShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIosShareRoundedFilled as default } diff --git a/src/IconIosShareSharpFilled.tsx b/src/IconIosShareSharpFilled.tsx new file mode 100644 index 000000000..f0ac145a7 --- /dev/null +++ b/src/IconIosShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIosShareSharpFilled as default } diff --git a/src/IconIosSharpFilled.tsx b/src/IconIosSharpFilled.tsx new file mode 100644 index 000000000..ee9cb80c7 --- /dev/null +++ b/src/IconIosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIosSharpFilled as default } diff --git a/src/IconIronOutlinedFilled.tsx b/src/IconIronOutlinedFilled.tsx new file mode 100644 index 000000000..2c36c5f73 --- /dev/null +++ b/src/IconIronOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIronOutlinedFilled as default } diff --git a/src/IconIronRoundedFilled.tsx b/src/IconIronRoundedFilled.tsx new file mode 100644 index 000000000..fd219c1a6 --- /dev/null +++ b/src/IconIronRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIronRoundedFilled as default } diff --git a/src/IconIronSharpFilled.tsx b/src/IconIronSharpFilled.tsx new file mode 100644 index 000000000..0f5037156 --- /dev/null +++ b/src/IconIronSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconIronSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconIronSharpFilled as default } diff --git a/src/IconJamboardKioskOutlinedFilled.tsx b/src/IconJamboardKioskOutlinedFilled.tsx new file mode 100644 index 000000000..d32c7101e --- /dev/null +++ b/src/IconJamboardKioskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJamboardKioskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJamboardKioskOutlinedFilled as default } diff --git a/src/IconJamboardKioskRoundedFilled.tsx b/src/IconJamboardKioskRoundedFilled.tsx new file mode 100644 index 000000000..94dfee42c --- /dev/null +++ b/src/IconJamboardKioskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJamboardKioskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJamboardKioskRoundedFilled as default } diff --git a/src/IconJamboardKioskSharpFilled.tsx b/src/IconJamboardKioskSharpFilled.tsx new file mode 100644 index 000000000..669f0e83f --- /dev/null +++ b/src/IconJamboardKioskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJamboardKioskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJamboardKioskSharpFilled as default } diff --git a/src/IconJavascriptOutlinedFilled.tsx b/src/IconJavascriptOutlinedFilled.tsx new file mode 100644 index 000000000..f9b82563e --- /dev/null +++ b/src/IconJavascriptOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJavascriptOutlinedFilled as default } diff --git a/src/IconJavascriptRoundedFilled.tsx b/src/IconJavascriptRoundedFilled.tsx new file mode 100644 index 000000000..b47df9562 --- /dev/null +++ b/src/IconJavascriptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJavascriptRoundedFilled as default } diff --git a/src/IconJavascriptSharpFilled.tsx b/src/IconJavascriptSharpFilled.tsx new file mode 100644 index 000000000..32c577502 --- /dev/null +++ b/src/IconJavascriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJavascriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJavascriptSharpFilled as default } diff --git a/src/IconJoinInnerOutlinedFilled.tsx b/src/IconJoinInnerOutlinedFilled.tsx new file mode 100644 index 000000000..4c7bc3ccc --- /dev/null +++ b/src/IconJoinInnerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinInnerOutlinedFilled as default } diff --git a/src/IconJoinInnerRoundedFilled.tsx b/src/IconJoinInnerRoundedFilled.tsx new file mode 100644 index 000000000..9b26374b9 --- /dev/null +++ b/src/IconJoinInnerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinInnerRoundedFilled as default } diff --git a/src/IconJoinInnerSharpFilled.tsx b/src/IconJoinInnerSharpFilled.tsx new file mode 100644 index 000000000..c1d1acbf2 --- /dev/null +++ b/src/IconJoinInnerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinInnerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinInnerSharpFilled as default } diff --git a/src/IconJoinLeftOutlinedFilled.tsx b/src/IconJoinLeftOutlinedFilled.tsx new file mode 100644 index 000000000..17a5c7417 --- /dev/null +++ b/src/IconJoinLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinLeftOutlinedFilled as default } diff --git a/src/IconJoinLeftRoundedFilled.tsx b/src/IconJoinLeftRoundedFilled.tsx new file mode 100644 index 000000000..f65061524 --- /dev/null +++ b/src/IconJoinLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinLeftRoundedFilled as default } diff --git a/src/IconJoinLeftSharpFilled.tsx b/src/IconJoinLeftSharpFilled.tsx new file mode 100644 index 000000000..3b798392b --- /dev/null +++ b/src/IconJoinLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinLeftSharpFilled as default } diff --git a/src/IconJoinOutlinedFilled.tsx b/src/IconJoinOutlinedFilled.tsx new file mode 100644 index 000000000..935552390 --- /dev/null +++ b/src/IconJoinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinOutlinedFilled as default } diff --git a/src/IconJoinRightOutlinedFilled.tsx b/src/IconJoinRightOutlinedFilled.tsx new file mode 100644 index 000000000..70711ca66 --- /dev/null +++ b/src/IconJoinRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinRightOutlinedFilled as default } diff --git a/src/IconJoinRightRoundedFilled.tsx b/src/IconJoinRightRoundedFilled.tsx new file mode 100644 index 000000000..37f186ab8 --- /dev/null +++ b/src/IconJoinRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinRightRoundedFilled as default } diff --git a/src/IconJoinRightSharpFilled.tsx b/src/IconJoinRightSharpFilled.tsx new file mode 100644 index 000000000..c2b7a7ae2 --- /dev/null +++ b/src/IconJoinRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinRightSharpFilled as default } diff --git a/src/IconJoinRoundedFilled.tsx b/src/IconJoinRoundedFilled.tsx new file mode 100644 index 000000000..a6c5544bb --- /dev/null +++ b/src/IconJoinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinRoundedFilled as default } diff --git a/src/IconJoinSharpFilled.tsx b/src/IconJoinSharpFilled.tsx new file mode 100644 index 000000000..aac98757a --- /dev/null +++ b/src/IconJoinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoinSharpFilled as default } diff --git a/src/IconJoystickOutlinedFilled.tsx b/src/IconJoystickOutlinedFilled.tsx new file mode 100644 index 000000000..6a71a5840 --- /dev/null +++ b/src/IconJoystickOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoystickOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoystickOutlinedFilled as default } diff --git a/src/IconJoystickRoundedFilled.tsx b/src/IconJoystickRoundedFilled.tsx new file mode 100644 index 000000000..cefb4c6c1 --- /dev/null +++ b/src/IconJoystickRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoystickRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoystickRoundedFilled as default } diff --git a/src/IconJoystickSharpFilled.tsx b/src/IconJoystickSharpFilled.tsx new file mode 100644 index 000000000..ed0f5a9a8 --- /dev/null +++ b/src/IconJoystickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJoystickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJoystickSharpFilled as default } diff --git a/src/IconJumpToElementOutlinedFilled.tsx b/src/IconJumpToElementOutlinedFilled.tsx new file mode 100644 index 000000000..531b0aace --- /dev/null +++ b/src/IconJumpToElementOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJumpToElementOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJumpToElementOutlinedFilled as default } diff --git a/src/IconJumpToElementRoundedFilled.tsx b/src/IconJumpToElementRoundedFilled.tsx new file mode 100644 index 000000000..76a5723cd --- /dev/null +++ b/src/IconJumpToElementRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJumpToElementRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJumpToElementRoundedFilled as default } diff --git a/src/IconJumpToElementSharpFilled.tsx b/src/IconJumpToElementSharpFilled.tsx new file mode 100644 index 000000000..8b4557090 --- /dev/null +++ b/src/IconJumpToElementSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconJumpToElementSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconJumpToElementSharpFilled as default } diff --git a/src/IconKayakingOutlinedFilled.tsx b/src/IconKayakingOutlinedFilled.tsx new file mode 100644 index 000000000..b4dbbfd39 --- /dev/null +++ b/src/IconKayakingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKayakingOutlinedFilled as default } diff --git a/src/IconKayakingRoundedFilled.tsx b/src/IconKayakingRoundedFilled.tsx new file mode 100644 index 000000000..730705fe7 --- /dev/null +++ b/src/IconKayakingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKayakingRoundedFilled as default } diff --git a/src/IconKayakingSharpFilled.tsx b/src/IconKayakingSharpFilled.tsx new file mode 100644 index 000000000..849f3da95 --- /dev/null +++ b/src/IconKayakingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKayakingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKayakingSharpFilled as default } diff --git a/src/IconKebabDiningOutlinedFilled.tsx b/src/IconKebabDiningOutlinedFilled.tsx new file mode 100644 index 000000000..25946d0f6 --- /dev/null +++ b/src/IconKebabDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKebabDiningOutlinedFilled as default } diff --git a/src/IconKebabDiningRoundedFilled.tsx b/src/IconKebabDiningRoundedFilled.tsx new file mode 100644 index 000000000..c2528d6a6 --- /dev/null +++ b/src/IconKebabDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKebabDiningRoundedFilled as default } diff --git a/src/IconKebabDiningSharpFilled.tsx b/src/IconKebabDiningSharpFilled.tsx new file mode 100644 index 000000000..6dbec0587 --- /dev/null +++ b/src/IconKebabDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKebabDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKebabDiningSharpFilled as default } diff --git a/src/IconKeepOffOutlinedFilled.tsx b/src/IconKeepOffOutlinedFilled.tsx new file mode 100644 index 000000000..9ad6738b7 --- /dev/null +++ b/src/IconKeepOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepOffOutlinedFilled as default } diff --git a/src/IconKeepOffRoundedFilled.tsx b/src/IconKeepOffRoundedFilled.tsx new file mode 100644 index 000000000..020801833 --- /dev/null +++ b/src/IconKeepOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepOffRoundedFilled as default } diff --git a/src/IconKeepOffSharpFilled.tsx b/src/IconKeepOffSharpFilled.tsx new file mode 100644 index 000000000..3f962d473 --- /dev/null +++ b/src/IconKeepOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepOffSharpFilled as default } diff --git a/src/IconKeepOutlinedFilled.tsx b/src/IconKeepOutlinedFilled.tsx new file mode 100644 index 000000000..568deba1d --- /dev/null +++ b/src/IconKeepOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepOutlinedFilled as default } diff --git a/src/IconKeepPublicOutlinedFilled.tsx b/src/IconKeepPublicOutlinedFilled.tsx new file mode 100644 index 000000000..911f3ee20 --- /dev/null +++ b/src/IconKeepPublicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepPublicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepPublicOutlinedFilled as default } diff --git a/src/IconKeepPublicRoundedFilled.tsx b/src/IconKeepPublicRoundedFilled.tsx new file mode 100644 index 000000000..e2dc84911 --- /dev/null +++ b/src/IconKeepPublicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepPublicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepPublicRoundedFilled as default } diff --git a/src/IconKeepPublicSharpFilled.tsx b/src/IconKeepPublicSharpFilled.tsx new file mode 100644 index 000000000..d65a6c4e4 --- /dev/null +++ b/src/IconKeepPublicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepPublicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepPublicSharpFilled as default } diff --git a/src/IconKeepRoundedFilled.tsx b/src/IconKeepRoundedFilled.tsx new file mode 100644 index 000000000..051e6d767 --- /dev/null +++ b/src/IconKeepRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepRoundedFilled as default } diff --git a/src/IconKeepSharpFilled.tsx b/src/IconKeepSharpFilled.tsx new file mode 100644 index 000000000..5d6a9c9cb --- /dev/null +++ b/src/IconKeepSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeepSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeepSharpFilled as default } diff --git a/src/IconKettleOutlinedFilled.tsx b/src/IconKettleOutlinedFilled.tsx new file mode 100644 index 000000000..ed88bdead --- /dev/null +++ b/src/IconKettleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKettleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKettleOutlinedFilled as default } diff --git a/src/IconKettleRoundedFilled.tsx b/src/IconKettleRoundedFilled.tsx new file mode 100644 index 000000000..38d7e6dcd --- /dev/null +++ b/src/IconKettleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKettleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKettleRoundedFilled as default } diff --git a/src/IconKettleSharpFilled.tsx b/src/IconKettleSharpFilled.tsx new file mode 100644 index 000000000..9f8d771e7 --- /dev/null +++ b/src/IconKettleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKettleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKettleSharpFilled as default } diff --git a/src/IconKeyOffOutlinedFilled.tsx b/src/IconKeyOffOutlinedFilled.tsx new file mode 100644 index 000000000..b2bcc46c4 --- /dev/null +++ b/src/IconKeyOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyOffOutlinedFilled as default } diff --git a/src/IconKeyOffRoundedFilled.tsx b/src/IconKeyOffRoundedFilled.tsx new file mode 100644 index 000000000..d34494df1 --- /dev/null +++ b/src/IconKeyOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyOffRoundedFilled as default } diff --git a/src/IconKeyOffSharpFilled.tsx b/src/IconKeyOffSharpFilled.tsx new file mode 100644 index 000000000..4246290f8 --- /dev/null +++ b/src/IconKeyOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyOffSharpFilled as default } diff --git a/src/IconKeyOutlinedFilled.tsx b/src/IconKeyOutlinedFilled.tsx new file mode 100644 index 000000000..2e974348a --- /dev/null +++ b/src/IconKeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyOutlinedFilled as default } diff --git a/src/IconKeyRoundedFilled.tsx b/src/IconKeyRoundedFilled.tsx new file mode 100644 index 000000000..2924cf1bf --- /dev/null +++ b/src/IconKeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyRoundedFilled as default } diff --git a/src/IconKeySharpFilled.tsx b/src/IconKeySharpFilled.tsx new file mode 100644 index 000000000..6840cc0c5 --- /dev/null +++ b/src/IconKeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeySharpFilled as default } diff --git a/src/IconKeyVerticalOutlinedFilled.tsx b/src/IconKeyVerticalOutlinedFilled.tsx new file mode 100644 index 000000000..1bc5adf5e --- /dev/null +++ b/src/IconKeyVerticalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyVerticalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyVerticalOutlinedFilled as default } diff --git a/src/IconKeyVerticalRoundedFilled.tsx b/src/IconKeyVerticalRoundedFilled.tsx new file mode 100644 index 000000000..a2a7f7c60 --- /dev/null +++ b/src/IconKeyVerticalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyVerticalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyVerticalRoundedFilled as default } diff --git a/src/IconKeyVerticalSharpFilled.tsx b/src/IconKeyVerticalSharpFilled.tsx new file mode 100644 index 000000000..522d6fbf1 --- /dev/null +++ b/src/IconKeyVerticalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyVerticalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyVerticalSharpFilled as default } diff --git a/src/IconKeyVisualizerOutlinedFilled.tsx b/src/IconKeyVisualizerOutlinedFilled.tsx new file mode 100644 index 000000000..170b97c27 --- /dev/null +++ b/src/IconKeyVisualizerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyVisualizerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyVisualizerOutlinedFilled as default } diff --git a/src/IconKeyVisualizerRoundedFilled.tsx b/src/IconKeyVisualizerRoundedFilled.tsx new file mode 100644 index 000000000..de34439ac --- /dev/null +++ b/src/IconKeyVisualizerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyVisualizerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyVisualizerRoundedFilled as default } diff --git a/src/IconKeyVisualizerSharpFilled.tsx b/src/IconKeyVisualizerSharpFilled.tsx new file mode 100644 index 000000000..9396ad68f --- /dev/null +++ b/src/IconKeyVisualizerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyVisualizerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyVisualizerSharpFilled as default } diff --git a/src/IconKeyboardAltOutlinedFilled.tsx b/src/IconKeyboardAltOutlinedFilled.tsx new file mode 100644 index 000000000..79c6afc2c --- /dev/null +++ b/src/IconKeyboardAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardAltOutlinedFilled as default } diff --git a/src/IconKeyboardAltRoundedFilled.tsx b/src/IconKeyboardAltRoundedFilled.tsx new file mode 100644 index 000000000..956dc14d0 --- /dev/null +++ b/src/IconKeyboardAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardAltRoundedFilled as default } diff --git a/src/IconKeyboardAltSharpFilled.tsx b/src/IconKeyboardAltSharpFilled.tsx new file mode 100644 index 000000000..eff2c71f9 --- /dev/null +++ b/src/IconKeyboardAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardAltSharpFilled as default } diff --git a/src/IconKeyboardArrowDownOutlinedFilled.tsx b/src/IconKeyboardArrowDownOutlinedFilled.tsx new file mode 100644 index 000000000..0e134a7bd --- /dev/null +++ b/src/IconKeyboardArrowDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowDownOutlinedFilled as default } diff --git a/src/IconKeyboardArrowDownRoundedFilled.tsx b/src/IconKeyboardArrowDownRoundedFilled.tsx new file mode 100644 index 000000000..4468093ab --- /dev/null +++ b/src/IconKeyboardArrowDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowDownRoundedFilled as default } diff --git a/src/IconKeyboardArrowDownSharpFilled.tsx b/src/IconKeyboardArrowDownSharpFilled.tsx new file mode 100644 index 000000000..7c4c9a7bd --- /dev/null +++ b/src/IconKeyboardArrowDownSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowDownSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowDownSharpFilled as default } diff --git a/src/IconKeyboardArrowLeftOutlinedFilled.tsx b/src/IconKeyboardArrowLeftOutlinedFilled.tsx new file mode 100644 index 000000000..679d4f911 --- /dev/null +++ b/src/IconKeyboardArrowLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowLeftOutlinedFilled as default } diff --git a/src/IconKeyboardArrowLeftRoundedFilled.tsx b/src/IconKeyboardArrowLeftRoundedFilled.tsx new file mode 100644 index 000000000..5a9a4674c --- /dev/null +++ b/src/IconKeyboardArrowLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowLeftRoundedFilled as default } diff --git a/src/IconKeyboardArrowLeftSharpFilled.tsx b/src/IconKeyboardArrowLeftSharpFilled.tsx new file mode 100644 index 000000000..445a8230c --- /dev/null +++ b/src/IconKeyboardArrowLeftSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowLeftSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowLeftSharpFilled as default } diff --git a/src/IconKeyboardArrowRightOutlinedFilled.tsx b/src/IconKeyboardArrowRightOutlinedFilled.tsx new file mode 100644 index 000000000..9af0a0663 --- /dev/null +++ b/src/IconKeyboardArrowRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowRightOutlinedFilled as default } diff --git a/src/IconKeyboardArrowRightRoundedFilled.tsx b/src/IconKeyboardArrowRightRoundedFilled.tsx new file mode 100644 index 000000000..1b0f47775 --- /dev/null +++ b/src/IconKeyboardArrowRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowRightRoundedFilled as default } diff --git a/src/IconKeyboardArrowRightSharpFilled.tsx b/src/IconKeyboardArrowRightSharpFilled.tsx new file mode 100644 index 000000000..888509d63 --- /dev/null +++ b/src/IconKeyboardArrowRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowRightSharpFilled as default } diff --git a/src/IconKeyboardArrowUpOutlinedFilled.tsx b/src/IconKeyboardArrowUpOutlinedFilled.tsx new file mode 100644 index 000000000..48c20949b --- /dev/null +++ b/src/IconKeyboardArrowUpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowUpOutlinedFilled as default } diff --git a/src/IconKeyboardArrowUpRoundedFilled.tsx b/src/IconKeyboardArrowUpRoundedFilled.tsx new file mode 100644 index 000000000..28aeb2ab5 --- /dev/null +++ b/src/IconKeyboardArrowUpRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowUpRoundedFilled as default } diff --git a/src/IconKeyboardArrowUpSharpFilled.tsx b/src/IconKeyboardArrowUpSharpFilled.tsx new file mode 100644 index 000000000..447b0946b --- /dev/null +++ b/src/IconKeyboardArrowUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardArrowUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardArrowUpSharpFilled as default } diff --git a/src/IconKeyboardBackspaceOutlinedFilled.tsx b/src/IconKeyboardBackspaceOutlinedFilled.tsx new file mode 100644 index 000000000..4aaf737e5 --- /dev/null +++ b/src/IconKeyboardBackspaceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardBackspaceOutlinedFilled as default } diff --git a/src/IconKeyboardBackspaceRoundedFilled.tsx b/src/IconKeyboardBackspaceRoundedFilled.tsx new file mode 100644 index 000000000..d1a61aeb1 --- /dev/null +++ b/src/IconKeyboardBackspaceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardBackspaceRoundedFilled as default } diff --git a/src/IconKeyboardBackspaceSharpFilled.tsx b/src/IconKeyboardBackspaceSharpFilled.tsx new file mode 100644 index 000000000..e64af44ee --- /dev/null +++ b/src/IconKeyboardBackspaceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardBackspaceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardBackspaceSharpFilled as default } diff --git a/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx b/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..7bac3c604 --- /dev/null +++ b/src/IconKeyboardCapslockBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockBadgeOutlinedFilled as default } diff --git a/src/IconKeyboardCapslockBadgeRoundedFilled.tsx b/src/IconKeyboardCapslockBadgeRoundedFilled.tsx new file mode 100644 index 000000000..fd1264379 --- /dev/null +++ b/src/IconKeyboardCapslockBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockBadgeRoundedFilled as default } diff --git a/src/IconKeyboardCapslockBadgeSharpFilled.tsx b/src/IconKeyboardCapslockBadgeSharpFilled.tsx new file mode 100644 index 000000000..52cc345a8 --- /dev/null +++ b/src/IconKeyboardCapslockBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockBadgeSharpFilled as default } diff --git a/src/IconKeyboardCapslockOutlinedFilled.tsx b/src/IconKeyboardCapslockOutlinedFilled.tsx new file mode 100644 index 000000000..90881b740 --- /dev/null +++ b/src/IconKeyboardCapslockOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockOutlinedFilled as default } diff --git a/src/IconKeyboardCapslockRoundedFilled.tsx b/src/IconKeyboardCapslockRoundedFilled.tsx new file mode 100644 index 000000000..fd0fe6695 --- /dev/null +++ b/src/IconKeyboardCapslockRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockRoundedFilled as default } diff --git a/src/IconKeyboardCapslockSharpFilled.tsx b/src/IconKeyboardCapslockSharpFilled.tsx new file mode 100644 index 000000000..827dbd287 --- /dev/null +++ b/src/IconKeyboardCapslockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCapslockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCapslockSharpFilled as default } diff --git a/src/IconKeyboardCommandKeyOutlinedFilled.tsx b/src/IconKeyboardCommandKeyOutlinedFilled.tsx new file mode 100644 index 000000000..26c8488d0 --- /dev/null +++ b/src/IconKeyboardCommandKeyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCommandKeyOutlinedFilled as default } diff --git a/src/IconKeyboardCommandKeyRoundedFilled.tsx b/src/IconKeyboardCommandKeyRoundedFilled.tsx new file mode 100644 index 000000000..ea1dd28b7 --- /dev/null +++ b/src/IconKeyboardCommandKeyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCommandKeyRoundedFilled as default } diff --git a/src/IconKeyboardCommandKeySharpFilled.tsx b/src/IconKeyboardCommandKeySharpFilled.tsx new file mode 100644 index 000000000..ab10320e3 --- /dev/null +++ b/src/IconKeyboardCommandKeySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardCommandKeySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardCommandKeySharpFilled as default } diff --git a/src/IconKeyboardControlKeyOutlinedFilled.tsx b/src/IconKeyboardControlKeyOutlinedFilled.tsx new file mode 100644 index 000000000..ac7ece6c6 --- /dev/null +++ b/src/IconKeyboardControlKeyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardControlKeyOutlinedFilled as default } diff --git a/src/IconKeyboardControlKeyRoundedFilled.tsx b/src/IconKeyboardControlKeyRoundedFilled.tsx new file mode 100644 index 000000000..e4ded0a7b --- /dev/null +++ b/src/IconKeyboardControlKeyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardControlKeyRoundedFilled as default } diff --git a/src/IconKeyboardControlKeySharpFilled.tsx b/src/IconKeyboardControlKeySharpFilled.tsx new file mode 100644 index 000000000..3746a5aaa --- /dev/null +++ b/src/IconKeyboardControlKeySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardControlKeySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardControlKeySharpFilled as default } diff --git a/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx new file mode 100644 index 000000000..424cfadaf --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowDownOutlinedFilled as default } diff --git a/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx b/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx new file mode 100644 index 000000000..099035822 --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowDownRoundedFilled as default } diff --git a/src/IconKeyboardDoubleArrowDownSharpFilled.tsx b/src/IconKeyboardDoubleArrowDownSharpFilled.tsx new file mode 100644 index 000000000..6f403972f --- /dev/null +++ b/src/IconKeyboardDoubleArrowDownSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowDownSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowDownSharpFilled as default } diff --git a/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx new file mode 100644 index 000000000..3a5361f90 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowLeftOutlinedFilled as default } diff --git a/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx b/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx new file mode 100644 index 000000000..24d61bbe4 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowLeftRoundedFilled as default } diff --git a/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx b/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx new file mode 100644 index 000000000..093200bb8 --- /dev/null +++ b/src/IconKeyboardDoubleArrowLeftSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowLeftSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowLeftSharpFilled as default } diff --git a/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx new file mode 100644 index 000000000..05910844e --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowRightOutlinedFilled as default } diff --git a/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx b/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx new file mode 100644 index 000000000..c6a239bcf --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowRightRoundedFilled as default } diff --git a/src/IconKeyboardDoubleArrowRightSharpFilled.tsx b/src/IconKeyboardDoubleArrowRightSharpFilled.tsx new file mode 100644 index 000000000..fa021e077 --- /dev/null +++ b/src/IconKeyboardDoubleArrowRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowRightSharpFilled as default } diff --git a/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx b/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx new file mode 100644 index 000000000..bff107992 --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowUpOutlinedFilled as default } diff --git a/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx b/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx new file mode 100644 index 000000000..3a62d3a5d --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowUpRoundedFilled as default } diff --git a/src/IconKeyboardDoubleArrowUpSharpFilled.tsx b/src/IconKeyboardDoubleArrowUpSharpFilled.tsx new file mode 100644 index 000000000..5c87a828f --- /dev/null +++ b/src/IconKeyboardDoubleArrowUpSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardDoubleArrowUpSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardDoubleArrowUpSharpFilled as default } diff --git a/src/IconKeyboardExternalInputOutlinedFilled.tsx b/src/IconKeyboardExternalInputOutlinedFilled.tsx new file mode 100644 index 000000000..7a134d582 --- /dev/null +++ b/src/IconKeyboardExternalInputOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardExternalInputOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardExternalInputOutlinedFilled as default } diff --git a/src/IconKeyboardExternalInputRoundedFilled.tsx b/src/IconKeyboardExternalInputRoundedFilled.tsx new file mode 100644 index 000000000..b28944fe1 --- /dev/null +++ b/src/IconKeyboardExternalInputRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardExternalInputRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardExternalInputRoundedFilled as default } diff --git a/src/IconKeyboardExternalInputSharpFilled.tsx b/src/IconKeyboardExternalInputSharpFilled.tsx new file mode 100644 index 000000000..2ffd2f5b0 --- /dev/null +++ b/src/IconKeyboardExternalInputSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardExternalInputSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardExternalInputSharpFilled as default } diff --git a/src/IconKeyboardFullOutlinedFilled.tsx b/src/IconKeyboardFullOutlinedFilled.tsx new file mode 100644 index 000000000..b624d6808 --- /dev/null +++ b/src/IconKeyboardFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardFullOutlinedFilled as default } diff --git a/src/IconKeyboardFullRoundedFilled.tsx b/src/IconKeyboardFullRoundedFilled.tsx new file mode 100644 index 000000000..978c85708 --- /dev/null +++ b/src/IconKeyboardFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardFullRoundedFilled as default } diff --git a/src/IconKeyboardFullSharpFilled.tsx b/src/IconKeyboardFullSharpFilled.tsx new file mode 100644 index 000000000..1b7d4bbb4 --- /dev/null +++ b/src/IconKeyboardFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardFullSharpFilled as default } diff --git a/src/IconKeyboardHideOutlinedFilled.tsx b/src/IconKeyboardHideOutlinedFilled.tsx new file mode 100644 index 000000000..5e11e1009 --- /dev/null +++ b/src/IconKeyboardHideOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardHideOutlinedFilled as default } diff --git a/src/IconKeyboardHideRoundedFilled.tsx b/src/IconKeyboardHideRoundedFilled.tsx new file mode 100644 index 000000000..d9578c4cd --- /dev/null +++ b/src/IconKeyboardHideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardHideRoundedFilled as default } diff --git a/src/IconKeyboardHideSharpFilled.tsx b/src/IconKeyboardHideSharpFilled.tsx new file mode 100644 index 000000000..a36b69864 --- /dev/null +++ b/src/IconKeyboardHideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardHideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardHideSharpFilled as default } diff --git a/src/IconKeyboardKeysOutlinedFilled.tsx b/src/IconKeyboardKeysOutlinedFilled.tsx new file mode 100644 index 000000000..5718887b8 --- /dev/null +++ b/src/IconKeyboardKeysOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardKeysOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardKeysOutlinedFilled as default } diff --git a/src/IconKeyboardKeysRoundedFilled.tsx b/src/IconKeyboardKeysRoundedFilled.tsx new file mode 100644 index 000000000..a15b9ba8f --- /dev/null +++ b/src/IconKeyboardKeysRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardKeysRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardKeysRoundedFilled as default } diff --git a/src/IconKeyboardKeysSharpFilled.tsx b/src/IconKeyboardKeysSharpFilled.tsx new file mode 100644 index 000000000..9550af3e7 --- /dev/null +++ b/src/IconKeyboardKeysSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardKeysSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardKeysSharpFilled as default } diff --git a/src/IconKeyboardLockOffOutlinedFilled.tsx b/src/IconKeyboardLockOffOutlinedFilled.tsx new file mode 100644 index 000000000..38d38b44f --- /dev/null +++ b/src/IconKeyboardLockOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardLockOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardLockOffOutlinedFilled as default } diff --git a/src/IconKeyboardLockOffRoundedFilled.tsx b/src/IconKeyboardLockOffRoundedFilled.tsx new file mode 100644 index 000000000..277e6a6b1 --- /dev/null +++ b/src/IconKeyboardLockOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardLockOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardLockOffRoundedFilled as default } diff --git a/src/IconKeyboardLockOffSharpFilled.tsx b/src/IconKeyboardLockOffSharpFilled.tsx new file mode 100644 index 000000000..c55398de7 --- /dev/null +++ b/src/IconKeyboardLockOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardLockOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardLockOffSharpFilled as default } diff --git a/src/IconKeyboardLockOutlinedFilled.tsx b/src/IconKeyboardLockOutlinedFilled.tsx new file mode 100644 index 000000000..6520bac69 --- /dev/null +++ b/src/IconKeyboardLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardLockOutlinedFilled as default } diff --git a/src/IconKeyboardLockRoundedFilled.tsx b/src/IconKeyboardLockRoundedFilled.tsx new file mode 100644 index 000000000..c5d15f841 --- /dev/null +++ b/src/IconKeyboardLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardLockRoundedFilled as default } diff --git a/src/IconKeyboardLockSharpFilled.tsx b/src/IconKeyboardLockSharpFilled.tsx new file mode 100644 index 000000000..7ef398c51 --- /dev/null +++ b/src/IconKeyboardLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardLockSharpFilled as default } diff --git a/src/IconKeyboardOffOutlinedFilled.tsx b/src/IconKeyboardOffOutlinedFilled.tsx new file mode 100644 index 000000000..14097cabb --- /dev/null +++ b/src/IconKeyboardOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOffOutlinedFilled as default } diff --git a/src/IconKeyboardOffRoundedFilled.tsx b/src/IconKeyboardOffRoundedFilled.tsx new file mode 100644 index 000000000..46d023d18 --- /dev/null +++ b/src/IconKeyboardOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOffRoundedFilled as default } diff --git a/src/IconKeyboardOffSharpFilled.tsx b/src/IconKeyboardOffSharpFilled.tsx new file mode 100644 index 000000000..b1f153677 --- /dev/null +++ b/src/IconKeyboardOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOffSharpFilled as default } diff --git a/src/IconKeyboardOnscreenOutlinedFilled.tsx b/src/IconKeyboardOnscreenOutlinedFilled.tsx new file mode 100644 index 000000000..611ba4bf6 --- /dev/null +++ b/src/IconKeyboardOnscreenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOnscreenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOnscreenOutlinedFilled as default } diff --git a/src/IconKeyboardOnscreenRoundedFilled.tsx b/src/IconKeyboardOnscreenRoundedFilled.tsx new file mode 100644 index 000000000..7c2e8d917 --- /dev/null +++ b/src/IconKeyboardOnscreenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOnscreenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOnscreenRoundedFilled as default } diff --git a/src/IconKeyboardOnscreenSharpFilled.tsx b/src/IconKeyboardOnscreenSharpFilled.tsx new file mode 100644 index 000000000..95be4abb8 --- /dev/null +++ b/src/IconKeyboardOnscreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOnscreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOnscreenSharpFilled as default } diff --git a/src/IconKeyboardOptionKeyOutlinedFilled.tsx b/src/IconKeyboardOptionKeyOutlinedFilled.tsx new file mode 100644 index 000000000..f0b8cfd89 --- /dev/null +++ b/src/IconKeyboardOptionKeyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOptionKeyOutlinedFilled as default } diff --git a/src/IconKeyboardOptionKeyRoundedFilled.tsx b/src/IconKeyboardOptionKeyRoundedFilled.tsx new file mode 100644 index 000000000..604f4f363 --- /dev/null +++ b/src/IconKeyboardOptionKeyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOptionKeyRoundedFilled as default } diff --git a/src/IconKeyboardOptionKeySharpFilled.tsx b/src/IconKeyboardOptionKeySharpFilled.tsx new file mode 100644 index 000000000..9a820f2dc --- /dev/null +++ b/src/IconKeyboardOptionKeySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOptionKeySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOptionKeySharpFilled as default } diff --git a/src/IconKeyboardOutlinedFilled.tsx b/src/IconKeyboardOutlinedFilled.tsx new file mode 100644 index 000000000..136318852 --- /dev/null +++ b/src/IconKeyboardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardOutlinedFilled as default } diff --git a/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx b/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx new file mode 100644 index 000000000..6b3abd13f --- /dev/null +++ b/src/IconKeyboardPreviousLanguageOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardPreviousLanguageOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardPreviousLanguageOutlinedFilled as default } diff --git a/src/IconKeyboardPreviousLanguageRoundedFilled.tsx b/src/IconKeyboardPreviousLanguageRoundedFilled.tsx new file mode 100644 index 000000000..e1f2ab4ba --- /dev/null +++ b/src/IconKeyboardPreviousLanguageRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardPreviousLanguageRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardPreviousLanguageRoundedFilled as default } diff --git a/src/IconKeyboardPreviousLanguageSharpFilled.tsx b/src/IconKeyboardPreviousLanguageSharpFilled.tsx new file mode 100644 index 000000000..6fbbf26c9 --- /dev/null +++ b/src/IconKeyboardPreviousLanguageSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardPreviousLanguageSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardPreviousLanguageSharpFilled as default } diff --git a/src/IconKeyboardReturnOutlinedFilled.tsx b/src/IconKeyboardReturnOutlinedFilled.tsx new file mode 100644 index 000000000..0f1d2a75f --- /dev/null +++ b/src/IconKeyboardReturnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardReturnOutlinedFilled as default } diff --git a/src/IconKeyboardReturnRoundedFilled.tsx b/src/IconKeyboardReturnRoundedFilled.tsx new file mode 100644 index 000000000..8e3cb7f75 --- /dev/null +++ b/src/IconKeyboardReturnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardReturnRoundedFilled as default } diff --git a/src/IconKeyboardReturnSharpFilled.tsx b/src/IconKeyboardReturnSharpFilled.tsx new file mode 100644 index 000000000..2fd2cb555 --- /dev/null +++ b/src/IconKeyboardReturnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardReturnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardReturnSharpFilled as default } diff --git a/src/IconKeyboardRoundedFilled.tsx b/src/IconKeyboardRoundedFilled.tsx new file mode 100644 index 000000000..35b9a1cfb --- /dev/null +++ b/src/IconKeyboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardRoundedFilled as default } diff --git a/src/IconKeyboardSharpFilled.tsx b/src/IconKeyboardSharpFilled.tsx new file mode 100644 index 000000000..a894cee60 --- /dev/null +++ b/src/IconKeyboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardSharpFilled as default } diff --git a/src/IconKeyboardTabOutlinedFilled.tsx b/src/IconKeyboardTabOutlinedFilled.tsx new file mode 100644 index 000000000..fc00e68d4 --- /dev/null +++ b/src/IconKeyboardTabOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabOutlinedFilled as default } diff --git a/src/IconKeyboardTabRoundedFilled.tsx b/src/IconKeyboardTabRoundedFilled.tsx new file mode 100644 index 000000000..ec8b6f0d4 --- /dev/null +++ b/src/IconKeyboardTabRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabRoundedFilled as default } diff --git a/src/IconKeyboardTabRtlOutlinedFilled.tsx b/src/IconKeyboardTabRtlOutlinedFilled.tsx new file mode 100644 index 000000000..05d74c5b4 --- /dev/null +++ b/src/IconKeyboardTabRtlOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabRtlOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabRtlOutlinedFilled as default } diff --git a/src/IconKeyboardTabRtlRoundedFilled.tsx b/src/IconKeyboardTabRtlRoundedFilled.tsx new file mode 100644 index 000000000..d0a8fbaa5 --- /dev/null +++ b/src/IconKeyboardTabRtlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabRtlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabRtlRoundedFilled as default } diff --git a/src/IconKeyboardTabRtlSharpFilled.tsx b/src/IconKeyboardTabRtlSharpFilled.tsx new file mode 100644 index 000000000..9baad261d --- /dev/null +++ b/src/IconKeyboardTabRtlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabRtlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabRtlSharpFilled as default } diff --git a/src/IconKeyboardTabSharpFilled.tsx b/src/IconKeyboardTabSharpFilled.tsx new file mode 100644 index 000000000..301599391 --- /dev/null +++ b/src/IconKeyboardTabSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKeyboardTabSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKeyboardTabSharpFilled as default } diff --git a/src/IconKidStarOutlinedFilled.tsx b/src/IconKidStarOutlinedFilled.tsx new file mode 100644 index 000000000..18293db90 --- /dev/null +++ b/src/IconKidStarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKidStarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKidStarOutlinedFilled as default } diff --git a/src/IconKidStarRoundedFilled.tsx b/src/IconKidStarRoundedFilled.tsx new file mode 100644 index 000000000..69cfb3449 --- /dev/null +++ b/src/IconKidStarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKidStarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKidStarRoundedFilled as default } diff --git a/src/IconKidStarSharpFilled.tsx b/src/IconKidStarSharpFilled.tsx new file mode 100644 index 000000000..d5e7c8cc2 --- /dev/null +++ b/src/IconKidStarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKidStarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKidStarSharpFilled as default } diff --git a/src/IconKingBedOutlinedFilled.tsx b/src/IconKingBedOutlinedFilled.tsx new file mode 100644 index 000000000..e55194a10 --- /dev/null +++ b/src/IconKingBedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKingBedOutlinedFilled as default } diff --git a/src/IconKingBedRoundedFilled.tsx b/src/IconKingBedRoundedFilled.tsx new file mode 100644 index 000000000..07849ee9c --- /dev/null +++ b/src/IconKingBedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKingBedRoundedFilled as default } diff --git a/src/IconKingBedSharpFilled.tsx b/src/IconKingBedSharpFilled.tsx new file mode 100644 index 000000000..6f15cbf01 --- /dev/null +++ b/src/IconKingBedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKingBedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKingBedSharpFilled as default } diff --git a/src/IconKitchenOutlinedFilled.tsx b/src/IconKitchenOutlinedFilled.tsx new file mode 100644 index 000000000..7e6544550 --- /dev/null +++ b/src/IconKitchenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKitchenOutlinedFilled as default } diff --git a/src/IconKitchenRoundedFilled.tsx b/src/IconKitchenRoundedFilled.tsx new file mode 100644 index 000000000..1bcef51af --- /dev/null +++ b/src/IconKitchenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKitchenRoundedFilled as default } diff --git a/src/IconKitchenSharpFilled.tsx b/src/IconKitchenSharpFilled.tsx new file mode 100644 index 000000000..4bed532ad --- /dev/null +++ b/src/IconKitchenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitchenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKitchenSharpFilled as default } diff --git a/src/IconKitesurfingOutlinedFilled.tsx b/src/IconKitesurfingOutlinedFilled.tsx new file mode 100644 index 000000000..5258f33ea --- /dev/null +++ b/src/IconKitesurfingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKitesurfingOutlinedFilled as default } diff --git a/src/IconKitesurfingRoundedFilled.tsx b/src/IconKitesurfingRoundedFilled.tsx new file mode 100644 index 000000000..06fb8d41b --- /dev/null +++ b/src/IconKitesurfingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKitesurfingRoundedFilled as default } diff --git a/src/IconKitesurfingSharpFilled.tsx b/src/IconKitesurfingSharpFilled.tsx new file mode 100644 index 000000000..526411fe0 --- /dev/null +++ b/src/IconKitesurfingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconKitesurfingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconKitesurfingSharpFilled as default } diff --git a/src/IconLabPanelOutlinedFilled.tsx b/src/IconLabPanelOutlinedFilled.tsx new file mode 100644 index 000000000..ae24948bf --- /dev/null +++ b/src/IconLabPanelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabPanelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabPanelOutlinedFilled as default } diff --git a/src/IconLabPanelRoundedFilled.tsx b/src/IconLabPanelRoundedFilled.tsx new file mode 100644 index 000000000..9ddc4abac --- /dev/null +++ b/src/IconLabPanelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabPanelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabPanelRoundedFilled as default } diff --git a/src/IconLabPanelSharpFilled.tsx b/src/IconLabPanelSharpFilled.tsx new file mode 100644 index 000000000..cb97913dd --- /dev/null +++ b/src/IconLabPanelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabPanelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabPanelSharpFilled as default } diff --git a/src/IconLabProfileOutlinedFilled.tsx b/src/IconLabProfileOutlinedFilled.tsx new file mode 100644 index 000000000..744cea08f --- /dev/null +++ b/src/IconLabProfileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabProfileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabProfileOutlinedFilled as default } diff --git a/src/IconLabProfileRoundedFilled.tsx b/src/IconLabProfileRoundedFilled.tsx new file mode 100644 index 000000000..36a6f9b88 --- /dev/null +++ b/src/IconLabProfileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabProfileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabProfileRoundedFilled as default } diff --git a/src/IconLabProfileSharpFilled.tsx b/src/IconLabProfileSharpFilled.tsx new file mode 100644 index 000000000..f5d89a63f --- /dev/null +++ b/src/IconLabProfileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabProfileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabProfileSharpFilled as default } diff --git a/src/IconLabResearchOutlinedFilled.tsx b/src/IconLabResearchOutlinedFilled.tsx new file mode 100644 index 000000000..24d3f8fc6 --- /dev/null +++ b/src/IconLabResearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabResearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabResearchOutlinedFilled as default } diff --git a/src/IconLabResearchRoundedFilled.tsx b/src/IconLabResearchRoundedFilled.tsx new file mode 100644 index 000000000..fcd760ab5 --- /dev/null +++ b/src/IconLabResearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabResearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabResearchRoundedFilled as default } diff --git a/src/IconLabResearchSharpFilled.tsx b/src/IconLabResearchSharpFilled.tsx new file mode 100644 index 000000000..a73b31ebf --- /dev/null +++ b/src/IconLabResearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabResearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabResearchSharpFilled as default } diff --git a/src/IconLabelImportantOutlinedFilled.tsx b/src/IconLabelImportantOutlinedFilled.tsx new file mode 100644 index 000000000..bd6250221 --- /dev/null +++ b/src/IconLabelImportantOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelImportantOutlinedFilled as default } diff --git a/src/IconLabelImportantRoundedFilled.tsx b/src/IconLabelImportantRoundedFilled.tsx new file mode 100644 index 000000000..0ca18ac46 --- /dev/null +++ b/src/IconLabelImportantRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelImportantRoundedFilled as default } diff --git a/src/IconLabelImportantSharpFilled.tsx b/src/IconLabelImportantSharpFilled.tsx new file mode 100644 index 000000000..cbdd6fa8a --- /dev/null +++ b/src/IconLabelImportantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelImportantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelImportantSharpFilled as default } diff --git a/src/IconLabelOffOutlinedFilled.tsx b/src/IconLabelOffOutlinedFilled.tsx new file mode 100644 index 000000000..851b7624b --- /dev/null +++ b/src/IconLabelOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelOffOutlinedFilled as default } diff --git a/src/IconLabelOffRoundedFilled.tsx b/src/IconLabelOffRoundedFilled.tsx new file mode 100644 index 000000000..ae745870e --- /dev/null +++ b/src/IconLabelOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelOffRoundedFilled as default } diff --git a/src/IconLabelOffSharpFilled.tsx b/src/IconLabelOffSharpFilled.tsx new file mode 100644 index 000000000..b4c4003be --- /dev/null +++ b/src/IconLabelOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelOffSharpFilled as default } diff --git a/src/IconLabelOutlinedFilled.tsx b/src/IconLabelOutlinedFilled.tsx new file mode 100644 index 000000000..641694fb2 --- /dev/null +++ b/src/IconLabelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelOutlinedFilled as default } diff --git a/src/IconLabelRoundedFilled.tsx b/src/IconLabelRoundedFilled.tsx new file mode 100644 index 000000000..762e47229 --- /dev/null +++ b/src/IconLabelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelRoundedFilled as default } diff --git a/src/IconLabelSharpFilled.tsx b/src/IconLabelSharpFilled.tsx new file mode 100644 index 000000000..45752814c --- /dev/null +++ b/src/IconLabelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabelSharpFilled as default } diff --git a/src/IconLabsOutlinedFilled.tsx b/src/IconLabsOutlinedFilled.tsx new file mode 100644 index 000000000..9e858149b --- /dev/null +++ b/src/IconLabsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabsOutlinedFilled as default } diff --git a/src/IconLabsRoundedFilled.tsx b/src/IconLabsRoundedFilled.tsx new file mode 100644 index 000000000..f2937ec8b --- /dev/null +++ b/src/IconLabsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabsRoundedFilled as default } diff --git a/src/IconLabsSharpFilled.tsx b/src/IconLabsSharpFilled.tsx new file mode 100644 index 000000000..627bbd387 --- /dev/null +++ b/src/IconLabsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLabsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLabsSharpFilled as default } diff --git a/src/IconLanOutlinedFilled.tsx b/src/IconLanOutlinedFilled.tsx new file mode 100644 index 000000000..045768db3 --- /dev/null +++ b/src/IconLanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanOutlinedFilled as default } diff --git a/src/IconLanRoundedFilled.tsx b/src/IconLanRoundedFilled.tsx new file mode 100644 index 000000000..4dadfadf9 --- /dev/null +++ b/src/IconLanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanRoundedFilled as default } diff --git a/src/IconLanSharpFilled.tsx b/src/IconLanSharpFilled.tsx new file mode 100644 index 000000000..eab50d3ca --- /dev/null +++ b/src/IconLanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanSharpFilled as default } diff --git a/src/IconLandscape2OffOutlinedFilled.tsx b/src/IconLandscape2OffOutlinedFilled.tsx new file mode 100644 index 000000000..b63c33b11 --- /dev/null +++ b/src/IconLandscape2OffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscape2OffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscape2OffOutlinedFilled as default } diff --git a/src/IconLandscape2OffRoundedFilled.tsx b/src/IconLandscape2OffRoundedFilled.tsx new file mode 100644 index 000000000..7b2e5fff6 --- /dev/null +++ b/src/IconLandscape2OffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscape2OffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscape2OffRoundedFilled as default } diff --git a/src/IconLandscape2OffSharpFilled.tsx b/src/IconLandscape2OffSharpFilled.tsx new file mode 100644 index 000000000..a7c9477a4 --- /dev/null +++ b/src/IconLandscape2OffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscape2OffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscape2OffSharpFilled as default } diff --git a/src/IconLandscape2OutlinedFilled.tsx b/src/IconLandscape2OutlinedFilled.tsx new file mode 100644 index 000000000..c8293784b --- /dev/null +++ b/src/IconLandscape2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscape2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscape2OutlinedFilled as default } diff --git a/src/IconLandscape2RoundedFilled.tsx b/src/IconLandscape2RoundedFilled.tsx new file mode 100644 index 000000000..5e1e9f396 --- /dev/null +++ b/src/IconLandscape2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscape2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscape2RoundedFilled as default } diff --git a/src/IconLandscape2SharpFilled.tsx b/src/IconLandscape2SharpFilled.tsx new file mode 100644 index 000000000..ab2acb96a --- /dev/null +++ b/src/IconLandscape2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscape2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscape2SharpFilled as default } diff --git a/src/IconLandscapeOutlinedFilled.tsx b/src/IconLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..cf3a483ea --- /dev/null +++ b/src/IconLandscapeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscapeOutlinedFilled as default } diff --git a/src/IconLandscapeRoundedFilled.tsx b/src/IconLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..5ed6a3918 --- /dev/null +++ b/src/IconLandscapeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscapeRoundedFilled as default } diff --git a/src/IconLandscapeSharpFilled.tsx b/src/IconLandscapeSharpFilled.tsx new file mode 100644 index 000000000..cb1c7700b --- /dev/null +++ b/src/IconLandscapeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandscapeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandscapeSharpFilled as default } diff --git a/src/IconLandslideOutlinedFilled.tsx b/src/IconLandslideOutlinedFilled.tsx new file mode 100644 index 000000000..b8448f91d --- /dev/null +++ b/src/IconLandslideOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandslideOutlinedFilled as default } diff --git a/src/IconLandslideRoundedFilled.tsx b/src/IconLandslideRoundedFilled.tsx new file mode 100644 index 000000000..8aa8cc8b1 --- /dev/null +++ b/src/IconLandslideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandslideRoundedFilled as default } diff --git a/src/IconLandslideSharpFilled.tsx b/src/IconLandslideSharpFilled.tsx new file mode 100644 index 000000000..000593072 --- /dev/null +++ b/src/IconLandslideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLandslideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLandslideSharpFilled as default } diff --git a/src/IconLanguageChineseArrayOutlinedFilled.tsx b/src/IconLanguageChineseArrayOutlinedFilled.tsx new file mode 100644 index 000000000..449572512 --- /dev/null +++ b/src/IconLanguageChineseArrayOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseArrayOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseArrayOutlinedFilled as default } diff --git a/src/IconLanguageChineseArrayRoundedFilled.tsx b/src/IconLanguageChineseArrayRoundedFilled.tsx new file mode 100644 index 000000000..e7b2ea445 --- /dev/null +++ b/src/IconLanguageChineseArrayRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseArrayRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseArrayRoundedFilled as default } diff --git a/src/IconLanguageChineseArraySharpFilled.tsx b/src/IconLanguageChineseArraySharpFilled.tsx new file mode 100644 index 000000000..319b29021 --- /dev/null +++ b/src/IconLanguageChineseArraySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseArraySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseArraySharpFilled as default } diff --git a/src/IconLanguageChineseCangjieOutlinedFilled.tsx b/src/IconLanguageChineseCangjieOutlinedFilled.tsx new file mode 100644 index 000000000..75e1ad0d7 --- /dev/null +++ b/src/IconLanguageChineseCangjieOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseCangjieOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseCangjieOutlinedFilled as default } diff --git a/src/IconLanguageChineseCangjieRoundedFilled.tsx b/src/IconLanguageChineseCangjieRoundedFilled.tsx new file mode 100644 index 000000000..916668cc3 --- /dev/null +++ b/src/IconLanguageChineseCangjieRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseCangjieRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseCangjieRoundedFilled as default } diff --git a/src/IconLanguageChineseCangjieSharpFilled.tsx b/src/IconLanguageChineseCangjieSharpFilled.tsx new file mode 100644 index 000000000..af35bd2df --- /dev/null +++ b/src/IconLanguageChineseCangjieSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseCangjieSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseCangjieSharpFilled as default } diff --git a/src/IconLanguageChineseDayiOutlinedFilled.tsx b/src/IconLanguageChineseDayiOutlinedFilled.tsx new file mode 100644 index 000000000..2d009d5e4 --- /dev/null +++ b/src/IconLanguageChineseDayiOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseDayiOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseDayiOutlinedFilled as default } diff --git a/src/IconLanguageChineseDayiRoundedFilled.tsx b/src/IconLanguageChineseDayiRoundedFilled.tsx new file mode 100644 index 000000000..21301cdeb --- /dev/null +++ b/src/IconLanguageChineseDayiRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseDayiRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseDayiRoundedFilled as default } diff --git a/src/IconLanguageChineseDayiSharpFilled.tsx b/src/IconLanguageChineseDayiSharpFilled.tsx new file mode 100644 index 000000000..da6a2090a --- /dev/null +++ b/src/IconLanguageChineseDayiSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseDayiSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseDayiSharpFilled as default } diff --git a/src/IconLanguageChinesePinyinOutlinedFilled.tsx b/src/IconLanguageChinesePinyinOutlinedFilled.tsx new file mode 100644 index 000000000..afc111112 --- /dev/null +++ b/src/IconLanguageChinesePinyinOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChinesePinyinOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChinesePinyinOutlinedFilled as default } diff --git a/src/IconLanguageChinesePinyinRoundedFilled.tsx b/src/IconLanguageChinesePinyinRoundedFilled.tsx new file mode 100644 index 000000000..e2811b740 --- /dev/null +++ b/src/IconLanguageChinesePinyinRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChinesePinyinRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChinesePinyinRoundedFilled as default } diff --git a/src/IconLanguageChinesePinyinSharpFilled.tsx b/src/IconLanguageChinesePinyinSharpFilled.tsx new file mode 100644 index 000000000..533678678 --- /dev/null +++ b/src/IconLanguageChinesePinyinSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChinesePinyinSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChinesePinyinSharpFilled as default } diff --git a/src/IconLanguageChineseQuickOutlinedFilled.tsx b/src/IconLanguageChineseQuickOutlinedFilled.tsx new file mode 100644 index 000000000..8ed1f6368 --- /dev/null +++ b/src/IconLanguageChineseQuickOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseQuickOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseQuickOutlinedFilled as default } diff --git a/src/IconLanguageChineseQuickRoundedFilled.tsx b/src/IconLanguageChineseQuickRoundedFilled.tsx new file mode 100644 index 000000000..ff354548d --- /dev/null +++ b/src/IconLanguageChineseQuickRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseQuickRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseQuickRoundedFilled as default } diff --git a/src/IconLanguageChineseQuickSharpFilled.tsx b/src/IconLanguageChineseQuickSharpFilled.tsx new file mode 100644 index 000000000..4cbd5cb29 --- /dev/null +++ b/src/IconLanguageChineseQuickSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseQuickSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseQuickSharpFilled as default } diff --git a/src/IconLanguageChineseWubiOutlinedFilled.tsx b/src/IconLanguageChineseWubiOutlinedFilled.tsx new file mode 100644 index 000000000..6460f0477 --- /dev/null +++ b/src/IconLanguageChineseWubiOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseWubiOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseWubiOutlinedFilled as default } diff --git a/src/IconLanguageChineseWubiRoundedFilled.tsx b/src/IconLanguageChineseWubiRoundedFilled.tsx new file mode 100644 index 000000000..73eb49a38 --- /dev/null +++ b/src/IconLanguageChineseWubiRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseWubiRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseWubiRoundedFilled as default } diff --git a/src/IconLanguageChineseWubiSharpFilled.tsx b/src/IconLanguageChineseWubiSharpFilled.tsx new file mode 100644 index 000000000..c13ad9e46 --- /dev/null +++ b/src/IconLanguageChineseWubiSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageChineseWubiSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageChineseWubiSharpFilled as default } diff --git a/src/IconLanguageFrenchOutlinedFilled.tsx b/src/IconLanguageFrenchOutlinedFilled.tsx new file mode 100644 index 000000000..84f570439 --- /dev/null +++ b/src/IconLanguageFrenchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageFrenchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageFrenchOutlinedFilled as default } diff --git a/src/IconLanguageFrenchRoundedFilled.tsx b/src/IconLanguageFrenchRoundedFilled.tsx new file mode 100644 index 000000000..c091b8963 --- /dev/null +++ b/src/IconLanguageFrenchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageFrenchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageFrenchRoundedFilled as default } diff --git a/src/IconLanguageFrenchSharpFilled.tsx b/src/IconLanguageFrenchSharpFilled.tsx new file mode 100644 index 000000000..aa65c9efa --- /dev/null +++ b/src/IconLanguageFrenchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageFrenchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageFrenchSharpFilled as default } diff --git a/src/IconLanguageGbEnglishOutlinedFilled.tsx b/src/IconLanguageGbEnglishOutlinedFilled.tsx new file mode 100644 index 000000000..37e6aead4 --- /dev/null +++ b/src/IconLanguageGbEnglishOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageGbEnglishOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageGbEnglishOutlinedFilled as default } diff --git a/src/IconLanguageGbEnglishRoundedFilled.tsx b/src/IconLanguageGbEnglishRoundedFilled.tsx new file mode 100644 index 000000000..bfab61138 --- /dev/null +++ b/src/IconLanguageGbEnglishRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageGbEnglishRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageGbEnglishRoundedFilled as default } diff --git a/src/IconLanguageGbEnglishSharpFilled.tsx b/src/IconLanguageGbEnglishSharpFilled.tsx new file mode 100644 index 000000000..bf143547e --- /dev/null +++ b/src/IconLanguageGbEnglishSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageGbEnglishSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageGbEnglishSharpFilled as default } diff --git a/src/IconLanguageInternationalOutlinedFilled.tsx b/src/IconLanguageInternationalOutlinedFilled.tsx new file mode 100644 index 000000000..8777c1c0f --- /dev/null +++ b/src/IconLanguageInternationalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageInternationalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageInternationalOutlinedFilled as default } diff --git a/src/IconLanguageInternationalRoundedFilled.tsx b/src/IconLanguageInternationalRoundedFilled.tsx new file mode 100644 index 000000000..a1b2a0f3e --- /dev/null +++ b/src/IconLanguageInternationalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageInternationalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageInternationalRoundedFilled as default } diff --git a/src/IconLanguageInternationalSharpFilled.tsx b/src/IconLanguageInternationalSharpFilled.tsx new file mode 100644 index 000000000..e71df5351 --- /dev/null +++ b/src/IconLanguageInternationalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageInternationalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageInternationalSharpFilled as default } diff --git a/src/IconLanguageJapaneseKanaOutlinedFilled.tsx b/src/IconLanguageJapaneseKanaOutlinedFilled.tsx new file mode 100644 index 000000000..3172a957c --- /dev/null +++ b/src/IconLanguageJapaneseKanaOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageJapaneseKanaOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageJapaneseKanaOutlinedFilled as default } diff --git a/src/IconLanguageJapaneseKanaRoundedFilled.tsx b/src/IconLanguageJapaneseKanaRoundedFilled.tsx new file mode 100644 index 000000000..8ed193871 --- /dev/null +++ b/src/IconLanguageJapaneseKanaRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageJapaneseKanaRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageJapaneseKanaRoundedFilled as default } diff --git a/src/IconLanguageJapaneseKanaSharpFilled.tsx b/src/IconLanguageJapaneseKanaSharpFilled.tsx new file mode 100644 index 000000000..35006819f --- /dev/null +++ b/src/IconLanguageJapaneseKanaSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageJapaneseKanaSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageJapaneseKanaSharpFilled as default } diff --git a/src/IconLanguageKoreanLatinOutlinedFilled.tsx b/src/IconLanguageKoreanLatinOutlinedFilled.tsx new file mode 100644 index 000000000..d28f9aa07 --- /dev/null +++ b/src/IconLanguageKoreanLatinOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageKoreanLatinOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageKoreanLatinOutlinedFilled as default } diff --git a/src/IconLanguageKoreanLatinRoundedFilled.tsx b/src/IconLanguageKoreanLatinRoundedFilled.tsx new file mode 100644 index 000000000..f9dde2c1d --- /dev/null +++ b/src/IconLanguageKoreanLatinRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageKoreanLatinRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageKoreanLatinRoundedFilled as default } diff --git a/src/IconLanguageKoreanLatinSharpFilled.tsx b/src/IconLanguageKoreanLatinSharpFilled.tsx new file mode 100644 index 000000000..befddfefd --- /dev/null +++ b/src/IconLanguageKoreanLatinSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageKoreanLatinSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageKoreanLatinSharpFilled as default } diff --git a/src/IconLanguageOutlinedFilled.tsx b/src/IconLanguageOutlinedFilled.tsx new file mode 100644 index 000000000..b98980fd7 --- /dev/null +++ b/src/IconLanguageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageOutlinedFilled as default } diff --git a/src/IconLanguagePinyinOutlinedFilled.tsx b/src/IconLanguagePinyinOutlinedFilled.tsx new file mode 100644 index 000000000..b07d5084d --- /dev/null +++ b/src/IconLanguagePinyinOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguagePinyinOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguagePinyinOutlinedFilled as default } diff --git a/src/IconLanguagePinyinRoundedFilled.tsx b/src/IconLanguagePinyinRoundedFilled.tsx new file mode 100644 index 000000000..718f27500 --- /dev/null +++ b/src/IconLanguagePinyinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguagePinyinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguagePinyinRoundedFilled as default } diff --git a/src/IconLanguagePinyinSharpFilled.tsx b/src/IconLanguagePinyinSharpFilled.tsx new file mode 100644 index 000000000..67b0222f9 --- /dev/null +++ b/src/IconLanguagePinyinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguagePinyinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguagePinyinSharpFilled as default } diff --git a/src/IconLanguageRoundedFilled.tsx b/src/IconLanguageRoundedFilled.tsx new file mode 100644 index 000000000..44ee6f24c --- /dev/null +++ b/src/IconLanguageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageRoundedFilled as default } diff --git a/src/IconLanguageSharpFilled.tsx b/src/IconLanguageSharpFilled.tsx new file mode 100644 index 000000000..f139c0e21 --- /dev/null +++ b/src/IconLanguageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageSharpFilled as default } diff --git a/src/IconLanguageSpanishOutlinedFilled.tsx b/src/IconLanguageSpanishOutlinedFilled.tsx new file mode 100644 index 000000000..72c0ffa35 --- /dev/null +++ b/src/IconLanguageSpanishOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageSpanishOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageSpanishOutlinedFilled as default } diff --git a/src/IconLanguageSpanishRoundedFilled.tsx b/src/IconLanguageSpanishRoundedFilled.tsx new file mode 100644 index 000000000..2fb8dcf67 --- /dev/null +++ b/src/IconLanguageSpanishRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageSpanishRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageSpanishRoundedFilled as default } diff --git a/src/IconLanguageSpanishSharpFilled.tsx b/src/IconLanguageSpanishSharpFilled.tsx new file mode 100644 index 000000000..8020677f5 --- /dev/null +++ b/src/IconLanguageSpanishSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageSpanishSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageSpanishSharpFilled as default } diff --git a/src/IconLanguageUsColemakOutlinedFilled.tsx b/src/IconLanguageUsColemakOutlinedFilled.tsx new file mode 100644 index 000000000..8e6ad3324 --- /dev/null +++ b/src/IconLanguageUsColemakOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsColemakOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsColemakOutlinedFilled as default } diff --git a/src/IconLanguageUsColemakRoundedFilled.tsx b/src/IconLanguageUsColemakRoundedFilled.tsx new file mode 100644 index 000000000..5057c33da --- /dev/null +++ b/src/IconLanguageUsColemakRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsColemakRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsColemakRoundedFilled as default } diff --git a/src/IconLanguageUsColemakSharpFilled.tsx b/src/IconLanguageUsColemakSharpFilled.tsx new file mode 100644 index 000000000..6f0fb1258 --- /dev/null +++ b/src/IconLanguageUsColemakSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsColemakSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsColemakSharpFilled as default } diff --git a/src/IconLanguageUsDvorakOutlinedFilled.tsx b/src/IconLanguageUsDvorakOutlinedFilled.tsx new file mode 100644 index 000000000..6cf3959cf --- /dev/null +++ b/src/IconLanguageUsDvorakOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsDvorakOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsDvorakOutlinedFilled as default } diff --git a/src/IconLanguageUsDvorakRoundedFilled.tsx b/src/IconLanguageUsDvorakRoundedFilled.tsx new file mode 100644 index 000000000..9f36c0897 --- /dev/null +++ b/src/IconLanguageUsDvorakRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsDvorakRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsDvorakRoundedFilled as default } diff --git a/src/IconLanguageUsDvorakSharpFilled.tsx b/src/IconLanguageUsDvorakSharpFilled.tsx new file mode 100644 index 000000000..326f190c6 --- /dev/null +++ b/src/IconLanguageUsDvorakSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsDvorakSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsDvorakSharpFilled as default } diff --git a/src/IconLanguageUsOutlinedFilled.tsx b/src/IconLanguageUsOutlinedFilled.tsx new file mode 100644 index 000000000..f22ed76ac --- /dev/null +++ b/src/IconLanguageUsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsOutlinedFilled as default } diff --git a/src/IconLanguageUsRoundedFilled.tsx b/src/IconLanguageUsRoundedFilled.tsx new file mode 100644 index 000000000..12a77783c --- /dev/null +++ b/src/IconLanguageUsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsRoundedFilled as default } diff --git a/src/IconLanguageUsSharpFilled.tsx b/src/IconLanguageUsSharpFilled.tsx new file mode 100644 index 000000000..7437e95cc --- /dev/null +++ b/src/IconLanguageUsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLanguageUsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLanguageUsSharpFilled as default } diff --git a/src/IconLapsOutlinedFilled.tsx b/src/IconLapsOutlinedFilled.tsx new file mode 100644 index 000000000..a70294051 --- /dev/null +++ b/src/IconLapsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLapsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLapsOutlinedFilled as default } diff --git a/src/IconLapsRoundedFilled.tsx b/src/IconLapsRoundedFilled.tsx new file mode 100644 index 000000000..266318c48 --- /dev/null +++ b/src/IconLapsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLapsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLapsRoundedFilled as default } diff --git a/src/IconLapsSharpFilled.tsx b/src/IconLapsSharpFilled.tsx new file mode 100644 index 000000000..c085e9fc3 --- /dev/null +++ b/src/IconLapsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLapsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLapsSharpFilled as default } diff --git a/src/IconLaptopChromebookOutlinedFilled.tsx b/src/IconLaptopChromebookOutlinedFilled.tsx new file mode 100644 index 000000000..b2e8dd419 --- /dev/null +++ b/src/IconLaptopChromebookOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopChromebookOutlinedFilled as default } diff --git a/src/IconLaptopChromebookRoundedFilled.tsx b/src/IconLaptopChromebookRoundedFilled.tsx new file mode 100644 index 000000000..88aed2b93 --- /dev/null +++ b/src/IconLaptopChromebookRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopChromebookRoundedFilled as default } diff --git a/src/IconLaptopChromebookSharpFilled.tsx b/src/IconLaptopChromebookSharpFilled.tsx new file mode 100644 index 000000000..c69e542dd --- /dev/null +++ b/src/IconLaptopChromebookSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopChromebookSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopChromebookSharpFilled as default } diff --git a/src/IconLaptopMacOutlinedFilled.tsx b/src/IconLaptopMacOutlinedFilled.tsx new file mode 100644 index 000000000..67b3ddd3f --- /dev/null +++ b/src/IconLaptopMacOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopMacOutlinedFilled as default } diff --git a/src/IconLaptopMacRoundedFilled.tsx b/src/IconLaptopMacRoundedFilled.tsx new file mode 100644 index 000000000..a1b585c5d --- /dev/null +++ b/src/IconLaptopMacRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopMacRoundedFilled as default } diff --git a/src/IconLaptopMacSharpFilled.tsx b/src/IconLaptopMacSharpFilled.tsx new file mode 100644 index 000000000..1c336bff2 --- /dev/null +++ b/src/IconLaptopMacSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopMacSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopMacSharpFilled as default } diff --git a/src/IconLaptopWindowsOutlinedFilled.tsx b/src/IconLaptopWindowsOutlinedFilled.tsx new file mode 100644 index 000000000..e51a04fe3 --- /dev/null +++ b/src/IconLaptopWindowsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopWindowsOutlinedFilled as default } diff --git a/src/IconLaptopWindowsRoundedFilled.tsx b/src/IconLaptopWindowsRoundedFilled.tsx new file mode 100644 index 000000000..66bb0cebe --- /dev/null +++ b/src/IconLaptopWindowsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopWindowsRoundedFilled as default } diff --git a/src/IconLaptopWindowsSharpFilled.tsx b/src/IconLaptopWindowsSharpFilled.tsx new file mode 100644 index 000000000..d9302d827 --- /dev/null +++ b/src/IconLaptopWindowsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaptopWindowsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaptopWindowsSharpFilled as default } diff --git a/src/IconLassoSelectOutlinedFilled.tsx b/src/IconLassoSelectOutlinedFilled.tsx new file mode 100644 index 000000000..66460efe3 --- /dev/null +++ b/src/IconLassoSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLassoSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLassoSelectOutlinedFilled as default } diff --git a/src/IconLassoSelectRoundedFilled.tsx b/src/IconLassoSelectRoundedFilled.tsx new file mode 100644 index 000000000..a80df1fea --- /dev/null +++ b/src/IconLassoSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLassoSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLassoSelectRoundedFilled as default } diff --git a/src/IconLassoSelectSharpFilled.tsx b/src/IconLassoSelectSharpFilled.tsx new file mode 100644 index 000000000..3929d8b69 --- /dev/null +++ b/src/IconLassoSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLassoSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLassoSelectSharpFilled as default } diff --git a/src/IconLastPageOutlinedFilled.tsx b/src/IconLastPageOutlinedFilled.tsx new file mode 100644 index 000000000..745d521e3 --- /dev/null +++ b/src/IconLastPageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLastPageOutlinedFilled as default } diff --git a/src/IconLastPageRoundedFilled.tsx b/src/IconLastPageRoundedFilled.tsx new file mode 100644 index 000000000..323e21f76 --- /dev/null +++ b/src/IconLastPageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLastPageRoundedFilled as default } diff --git a/src/IconLastPageSharpFilled.tsx b/src/IconLastPageSharpFilled.tsx new file mode 100644 index 000000000..357161e3a --- /dev/null +++ b/src/IconLastPageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLastPageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLastPageSharpFilled as default } diff --git a/src/IconLaundryOutlinedFilled.tsx b/src/IconLaundryOutlinedFilled.tsx new file mode 100644 index 000000000..0d0814ae3 --- /dev/null +++ b/src/IconLaundryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaundryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaundryOutlinedFilled as default } diff --git a/src/IconLaundryRoundedFilled.tsx b/src/IconLaundryRoundedFilled.tsx new file mode 100644 index 000000000..2b35054e7 --- /dev/null +++ b/src/IconLaundryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaundryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaundryRoundedFilled as default } diff --git a/src/IconLaundrySharpFilled.tsx b/src/IconLaundrySharpFilled.tsx new file mode 100644 index 000000000..2acc1e730 --- /dev/null +++ b/src/IconLaundrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLaundrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLaundrySharpFilled as default } diff --git a/src/IconLayersClearOutlinedFilled.tsx b/src/IconLayersClearOutlinedFilled.tsx new file mode 100644 index 000000000..fa779dab4 --- /dev/null +++ b/src/IconLayersClearOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLayersClearOutlinedFilled as default } diff --git a/src/IconLayersClearRoundedFilled.tsx b/src/IconLayersClearRoundedFilled.tsx new file mode 100644 index 000000000..7ab5072e2 --- /dev/null +++ b/src/IconLayersClearRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLayersClearRoundedFilled as default } diff --git a/src/IconLayersClearSharpFilled.tsx b/src/IconLayersClearSharpFilled.tsx new file mode 100644 index 000000000..8138ea7d4 --- /dev/null +++ b/src/IconLayersClearSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersClearSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLayersClearSharpFilled as default } diff --git a/src/IconLayersOutlinedFilled.tsx b/src/IconLayersOutlinedFilled.tsx new file mode 100644 index 000000000..33db67aeb --- /dev/null +++ b/src/IconLayersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLayersOutlinedFilled as default } diff --git a/src/IconLayersRoundedFilled.tsx b/src/IconLayersRoundedFilled.tsx new file mode 100644 index 000000000..c508208ec --- /dev/null +++ b/src/IconLayersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLayersRoundedFilled as default } diff --git a/src/IconLayersSharpFilled.tsx b/src/IconLayersSharpFilled.tsx new file mode 100644 index 000000000..ff93d7a2a --- /dev/null +++ b/src/IconLayersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLayersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLayersSharpFilled as default } diff --git a/src/IconLdaOutlinedFilled.tsx b/src/IconLdaOutlinedFilled.tsx new file mode 100644 index 000000000..1bf87c995 --- /dev/null +++ b/src/IconLdaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLdaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLdaOutlinedFilled as default } diff --git a/src/IconLdaRoundedFilled.tsx b/src/IconLdaRoundedFilled.tsx new file mode 100644 index 000000000..532e6d7cb --- /dev/null +++ b/src/IconLdaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLdaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLdaRoundedFilled as default } diff --git a/src/IconLdaSharpFilled.tsx b/src/IconLdaSharpFilled.tsx new file mode 100644 index 000000000..f2bd2bdba --- /dev/null +++ b/src/IconLdaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLdaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLdaSharpFilled as default } diff --git a/src/IconLeaderboardOutlinedFilled.tsx b/src/IconLeaderboardOutlinedFilled.tsx new file mode 100644 index 000000000..dafebf204 --- /dev/null +++ b/src/IconLeaderboardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeaderboardOutlinedFilled as default } diff --git a/src/IconLeaderboardRoundedFilled.tsx b/src/IconLeaderboardRoundedFilled.tsx new file mode 100644 index 000000000..1afbc2d24 --- /dev/null +++ b/src/IconLeaderboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeaderboardRoundedFilled as default } diff --git a/src/IconLeaderboardSharpFilled.tsx b/src/IconLeaderboardSharpFilled.tsx new file mode 100644 index 000000000..67fcf95ff --- /dev/null +++ b/src/IconLeaderboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeaderboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeaderboardSharpFilled as default } diff --git a/src/IconLeakAddOutlinedFilled.tsx b/src/IconLeakAddOutlinedFilled.tsx new file mode 100644 index 000000000..f9eed096e --- /dev/null +++ b/src/IconLeakAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeakAddOutlinedFilled as default } diff --git a/src/IconLeakAddRoundedFilled.tsx b/src/IconLeakAddRoundedFilled.tsx new file mode 100644 index 000000000..a54b8ce17 --- /dev/null +++ b/src/IconLeakAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeakAddRoundedFilled as default } diff --git a/src/IconLeakAddSharpFilled.tsx b/src/IconLeakAddSharpFilled.tsx new file mode 100644 index 000000000..25c1dc05d --- /dev/null +++ b/src/IconLeakAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeakAddSharpFilled as default } diff --git a/src/IconLeakRemoveOutlinedFilled.tsx b/src/IconLeakRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..2543f90cd --- /dev/null +++ b/src/IconLeakRemoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeakRemoveOutlinedFilled as default } diff --git a/src/IconLeakRemoveRoundedFilled.tsx b/src/IconLeakRemoveRoundedFilled.tsx new file mode 100644 index 000000000..344558899 --- /dev/null +++ b/src/IconLeakRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeakRemoveRoundedFilled as default } diff --git a/src/IconLeakRemoveSharpFilled.tsx b/src/IconLeakRemoveSharpFilled.tsx new file mode 100644 index 000000000..597854b9e --- /dev/null +++ b/src/IconLeakRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeakRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeakRemoveSharpFilled as default } diff --git a/src/IconLeftClickOutlinedFilled.tsx b/src/IconLeftClickOutlinedFilled.tsx new file mode 100644 index 000000000..6235dae24 --- /dev/null +++ b/src/IconLeftClickOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftClickOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftClickOutlinedFilled as default } diff --git a/src/IconLeftClickRoundedFilled.tsx b/src/IconLeftClickRoundedFilled.tsx new file mode 100644 index 000000000..befc30d8c --- /dev/null +++ b/src/IconLeftClickRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftClickRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftClickRoundedFilled as default } diff --git a/src/IconLeftClickSharpFilled.tsx b/src/IconLeftClickSharpFilled.tsx new file mode 100644 index 000000000..d9c44c6f5 --- /dev/null +++ b/src/IconLeftClickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftClickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftClickSharpFilled as default } diff --git a/src/IconLeftPanelCloseOutlinedFilled.tsx b/src/IconLeftPanelCloseOutlinedFilled.tsx new file mode 100644 index 000000000..6426a7b54 --- /dev/null +++ b/src/IconLeftPanelCloseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftPanelCloseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftPanelCloseOutlinedFilled as default } diff --git a/src/IconLeftPanelCloseRoundedFilled.tsx b/src/IconLeftPanelCloseRoundedFilled.tsx new file mode 100644 index 000000000..13477ccf2 --- /dev/null +++ b/src/IconLeftPanelCloseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftPanelCloseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftPanelCloseRoundedFilled as default } diff --git a/src/IconLeftPanelCloseSharpFilled.tsx b/src/IconLeftPanelCloseSharpFilled.tsx new file mode 100644 index 000000000..3edf26ed6 --- /dev/null +++ b/src/IconLeftPanelCloseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftPanelCloseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftPanelCloseSharpFilled as default } diff --git a/src/IconLeftPanelOpenOutlinedFilled.tsx b/src/IconLeftPanelOpenOutlinedFilled.tsx new file mode 100644 index 000000000..b301bca8f --- /dev/null +++ b/src/IconLeftPanelOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftPanelOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftPanelOpenOutlinedFilled as default } diff --git a/src/IconLeftPanelOpenRoundedFilled.tsx b/src/IconLeftPanelOpenRoundedFilled.tsx new file mode 100644 index 000000000..d5470e497 --- /dev/null +++ b/src/IconLeftPanelOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftPanelOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftPanelOpenRoundedFilled as default } diff --git a/src/IconLeftPanelOpenSharpFilled.tsx b/src/IconLeftPanelOpenSharpFilled.tsx new file mode 100644 index 000000000..3a4c65dcd --- /dev/null +++ b/src/IconLeftPanelOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLeftPanelOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLeftPanelOpenSharpFilled as default } diff --git a/src/IconLegendToggleOutlinedFilled.tsx b/src/IconLegendToggleOutlinedFilled.tsx new file mode 100644 index 000000000..024e201d4 --- /dev/null +++ b/src/IconLegendToggleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLegendToggleOutlinedFilled as default } diff --git a/src/IconLegendToggleRoundedFilled.tsx b/src/IconLegendToggleRoundedFilled.tsx new file mode 100644 index 000000000..a5aa426e0 --- /dev/null +++ b/src/IconLegendToggleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLegendToggleRoundedFilled as default } diff --git a/src/IconLegendToggleSharpFilled.tsx b/src/IconLegendToggleSharpFilled.tsx new file mode 100644 index 000000000..999792ba2 --- /dev/null +++ b/src/IconLegendToggleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLegendToggleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLegendToggleSharpFilled as default } diff --git a/src/IconLensBlurOutlinedFilled.tsx b/src/IconLensBlurOutlinedFilled.tsx new file mode 100644 index 000000000..e293050cf --- /dev/null +++ b/src/IconLensBlurOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLensBlurOutlinedFilled as default } diff --git a/src/IconLensBlurRoundedFilled.tsx b/src/IconLensBlurRoundedFilled.tsx new file mode 100644 index 000000000..6509b7ea2 --- /dev/null +++ b/src/IconLensBlurRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLensBlurRoundedFilled as default } diff --git a/src/IconLensBlurSharpFilled.tsx b/src/IconLensBlurSharpFilled.tsx new file mode 100644 index 000000000..72278a376 --- /dev/null +++ b/src/IconLensBlurSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLensBlurSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLensBlurSharpFilled as default } diff --git a/src/IconLetterSwitchOutlinedFilled.tsx b/src/IconLetterSwitchOutlinedFilled.tsx new file mode 100644 index 000000000..e471a8e01 --- /dev/null +++ b/src/IconLetterSwitchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLetterSwitchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLetterSwitchOutlinedFilled as default } diff --git a/src/IconLetterSwitchRoundedFilled.tsx b/src/IconLetterSwitchRoundedFilled.tsx new file mode 100644 index 000000000..3afc80652 --- /dev/null +++ b/src/IconLetterSwitchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLetterSwitchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLetterSwitchRoundedFilled as default } diff --git a/src/IconLetterSwitchSharpFilled.tsx b/src/IconLetterSwitchSharpFilled.tsx new file mode 100644 index 000000000..3c2de791a --- /dev/null +++ b/src/IconLetterSwitchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLetterSwitchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLetterSwitchSharpFilled as default } diff --git a/src/IconLibraryAddCheckOutlinedFilled.tsx b/src/IconLibraryAddCheckOutlinedFilled.tsx new file mode 100644 index 000000000..7ea151d45 --- /dev/null +++ b/src/IconLibraryAddCheckOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddCheckOutlinedFilled as default } diff --git a/src/IconLibraryAddCheckRoundedFilled.tsx b/src/IconLibraryAddCheckRoundedFilled.tsx new file mode 100644 index 000000000..cafaa9843 --- /dev/null +++ b/src/IconLibraryAddCheckRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddCheckRoundedFilled as default } diff --git a/src/IconLibraryAddCheckSharpFilled.tsx b/src/IconLibraryAddCheckSharpFilled.tsx new file mode 100644 index 000000000..c512f2c07 --- /dev/null +++ b/src/IconLibraryAddCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddCheckSharpFilled as default } diff --git a/src/IconLibraryAddOutlinedFilled.tsx b/src/IconLibraryAddOutlinedFilled.tsx new file mode 100644 index 000000000..181c08038 --- /dev/null +++ b/src/IconLibraryAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddOutlinedFilled as default } diff --git a/src/IconLibraryAddRoundedFilled.tsx b/src/IconLibraryAddRoundedFilled.tsx new file mode 100644 index 000000000..a8efde00a --- /dev/null +++ b/src/IconLibraryAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddRoundedFilled as default } diff --git a/src/IconLibraryAddSharpFilled.tsx b/src/IconLibraryAddSharpFilled.tsx new file mode 100644 index 000000000..795e087a8 --- /dev/null +++ b/src/IconLibraryAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryAddSharpFilled as default } diff --git a/src/IconLibraryBooksOutlinedFilled.tsx b/src/IconLibraryBooksOutlinedFilled.tsx new file mode 100644 index 000000000..bd155550c --- /dev/null +++ b/src/IconLibraryBooksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryBooksOutlinedFilled as default } diff --git a/src/IconLibraryBooksRoundedFilled.tsx b/src/IconLibraryBooksRoundedFilled.tsx new file mode 100644 index 000000000..a1f4b3bd9 --- /dev/null +++ b/src/IconLibraryBooksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryBooksRoundedFilled as default } diff --git a/src/IconLibraryBooksSharpFilled.tsx b/src/IconLibraryBooksSharpFilled.tsx new file mode 100644 index 000000000..5975f7c80 --- /dev/null +++ b/src/IconLibraryBooksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryBooksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryBooksSharpFilled as default } diff --git a/src/IconLibraryMusicOutlinedFilled.tsx b/src/IconLibraryMusicOutlinedFilled.tsx new file mode 100644 index 000000000..2ef23768b --- /dev/null +++ b/src/IconLibraryMusicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryMusicOutlinedFilled as default } diff --git a/src/IconLibraryMusicRoundedFilled.tsx b/src/IconLibraryMusicRoundedFilled.tsx new file mode 100644 index 000000000..2a28c6aa5 --- /dev/null +++ b/src/IconLibraryMusicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryMusicRoundedFilled as default } diff --git a/src/IconLibraryMusicSharpFilled.tsx b/src/IconLibraryMusicSharpFilled.tsx new file mode 100644 index 000000000..f04ff261a --- /dev/null +++ b/src/IconLibraryMusicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLibraryMusicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLibraryMusicSharpFilled as default } diff --git a/src/IconLicenseOutlinedFilled.tsx b/src/IconLicenseOutlinedFilled.tsx new file mode 100644 index 000000000..a19d61434 --- /dev/null +++ b/src/IconLicenseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLicenseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLicenseOutlinedFilled as default } diff --git a/src/IconLicenseRoundedFilled.tsx b/src/IconLicenseRoundedFilled.tsx new file mode 100644 index 000000000..4da22989c --- /dev/null +++ b/src/IconLicenseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLicenseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLicenseRoundedFilled as default } diff --git a/src/IconLicenseSharpFilled.tsx b/src/IconLicenseSharpFilled.tsx new file mode 100644 index 000000000..b7b757b60 --- /dev/null +++ b/src/IconLicenseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLicenseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLicenseSharpFilled as default } diff --git a/src/IconLiftToTalkOutlinedFilled.tsx b/src/IconLiftToTalkOutlinedFilled.tsx new file mode 100644 index 000000000..d9fc59a96 --- /dev/null +++ b/src/IconLiftToTalkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiftToTalkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiftToTalkOutlinedFilled as default } diff --git a/src/IconLiftToTalkRoundedFilled.tsx b/src/IconLiftToTalkRoundedFilled.tsx new file mode 100644 index 000000000..a0d023364 --- /dev/null +++ b/src/IconLiftToTalkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiftToTalkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiftToTalkRoundedFilled as default } diff --git a/src/IconLiftToTalkSharpFilled.tsx b/src/IconLiftToTalkSharpFilled.tsx new file mode 100644 index 000000000..c6cc98b52 --- /dev/null +++ b/src/IconLiftToTalkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiftToTalkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiftToTalkSharpFilled as default } diff --git a/src/IconLightGroupOutlinedFilled.tsx b/src/IconLightGroupOutlinedFilled.tsx new file mode 100644 index 000000000..55558e0d9 --- /dev/null +++ b/src/IconLightGroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightGroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightGroupOutlinedFilled as default } diff --git a/src/IconLightGroupRoundedFilled.tsx b/src/IconLightGroupRoundedFilled.tsx new file mode 100644 index 000000000..edc6df6ee --- /dev/null +++ b/src/IconLightGroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightGroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightGroupRoundedFilled as default } diff --git a/src/IconLightGroupSharpFilled.tsx b/src/IconLightGroupSharpFilled.tsx new file mode 100644 index 000000000..09d0262a4 --- /dev/null +++ b/src/IconLightGroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightGroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightGroupSharpFilled as default } diff --git a/src/IconLightModeOutlinedFilled.tsx b/src/IconLightModeOutlinedFilled.tsx new file mode 100644 index 000000000..bee2923d2 --- /dev/null +++ b/src/IconLightModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightModeOutlinedFilled as default } diff --git a/src/IconLightModeRoundedFilled.tsx b/src/IconLightModeRoundedFilled.tsx new file mode 100644 index 000000000..26d945287 --- /dev/null +++ b/src/IconLightModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightModeRoundedFilled as default } diff --git a/src/IconLightModeSharpFilled.tsx b/src/IconLightModeSharpFilled.tsx new file mode 100644 index 000000000..a7e0bbaa9 --- /dev/null +++ b/src/IconLightModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightModeSharpFilled as default } diff --git a/src/IconLightOffOutlinedFilled.tsx b/src/IconLightOffOutlinedFilled.tsx new file mode 100644 index 000000000..3963ce0e0 --- /dev/null +++ b/src/IconLightOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightOffOutlinedFilled as default } diff --git a/src/IconLightOffRoundedFilled.tsx b/src/IconLightOffRoundedFilled.tsx new file mode 100644 index 000000000..970f767eb --- /dev/null +++ b/src/IconLightOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightOffRoundedFilled as default } diff --git a/src/IconLightOffSharpFilled.tsx b/src/IconLightOffSharpFilled.tsx new file mode 100644 index 000000000..a840e597e --- /dev/null +++ b/src/IconLightOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightOffSharpFilled as default } diff --git a/src/IconLightOutlinedFilled.tsx b/src/IconLightOutlinedFilled.tsx new file mode 100644 index 000000000..74f3664bb --- /dev/null +++ b/src/IconLightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightOutlinedFilled as default } diff --git a/src/IconLightRoundedFilled.tsx b/src/IconLightRoundedFilled.tsx new file mode 100644 index 000000000..fb3fa16aa --- /dev/null +++ b/src/IconLightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightRoundedFilled as default } diff --git a/src/IconLightSharpFilled.tsx b/src/IconLightSharpFilled.tsx new file mode 100644 index 000000000..25171a932 --- /dev/null +++ b/src/IconLightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightSharpFilled as default } diff --git a/src/IconLightbulbCircleOutlinedFilled.tsx b/src/IconLightbulbCircleOutlinedFilled.tsx new file mode 100644 index 000000000..c9835bbd1 --- /dev/null +++ b/src/IconLightbulbCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLightbulbCircleOutlinedFilled as default } diff --git a/src/IconLightbulbCircleRoundedFilled.tsx b/src/IconLightbulbCircleRoundedFilled.tsx new file mode 100644 index 000000000..bfb3eb0f8 --- /dev/null +++ b/src/IconLightbulbCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLightbulbCircleRoundedFilled as default } diff --git a/src/IconLightbulbCircleSharpFilled.tsx b/src/IconLightbulbCircleSharpFilled.tsx new file mode 100644 index 000000000..ee19871e0 --- /dev/null +++ b/src/IconLightbulbCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightbulbCircleSharpFilled as default } diff --git a/src/IconLightbulbOutlinedFilled.tsx b/src/IconLightbulbOutlinedFilled.tsx new file mode 100644 index 000000000..986e2a9bf --- /dev/null +++ b/src/IconLightbulbOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightbulbOutlinedFilled as default } diff --git a/src/IconLightbulbRoundedFilled.tsx b/src/IconLightbulbRoundedFilled.tsx new file mode 100644 index 000000000..441e7175a --- /dev/null +++ b/src/IconLightbulbRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightbulbRoundedFilled as default } diff --git a/src/IconLightbulbSharpFilled.tsx b/src/IconLightbulbSharpFilled.tsx new file mode 100644 index 000000000..c1cb057f4 --- /dev/null +++ b/src/IconLightbulbSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightbulbSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightbulbSharpFilled as default } diff --git a/src/IconLightningStandOutlinedFilled.tsx b/src/IconLightningStandOutlinedFilled.tsx new file mode 100644 index 000000000..05d751637 --- /dev/null +++ b/src/IconLightningStandOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightningStandOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLightningStandOutlinedFilled as default } diff --git a/src/IconLightningStandRoundedFilled.tsx b/src/IconLightningStandRoundedFilled.tsx new file mode 100644 index 000000000..40eba337c --- /dev/null +++ b/src/IconLightningStandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightningStandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightningStandRoundedFilled as default } diff --git a/src/IconLightningStandSharpFilled.tsx b/src/IconLightningStandSharpFilled.tsx new file mode 100644 index 000000000..6e28ad4ad --- /dev/null +++ b/src/IconLightningStandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLightningStandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLightningStandSharpFilled as default } diff --git a/src/IconLineAxisOutlinedFilled.tsx b/src/IconLineAxisOutlinedFilled.tsx new file mode 100644 index 000000000..9fb5fd85c --- /dev/null +++ b/src/IconLineAxisOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineAxisOutlinedFilled as default } diff --git a/src/IconLineAxisRoundedFilled.tsx b/src/IconLineAxisRoundedFilled.tsx new file mode 100644 index 000000000..fda9d48ac --- /dev/null +++ b/src/IconLineAxisRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineAxisRoundedFilled as default } diff --git a/src/IconLineAxisSharpFilled.tsx b/src/IconLineAxisSharpFilled.tsx new file mode 100644 index 000000000..210da9f63 --- /dev/null +++ b/src/IconLineAxisSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineAxisSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineAxisSharpFilled as default } diff --git a/src/IconLineCurveOutlinedFilled.tsx b/src/IconLineCurveOutlinedFilled.tsx new file mode 100644 index 000000000..a8ca4a734 --- /dev/null +++ b/src/IconLineCurveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineCurveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineCurveOutlinedFilled as default } diff --git a/src/IconLineCurveRoundedFilled.tsx b/src/IconLineCurveRoundedFilled.tsx new file mode 100644 index 000000000..b311af8da --- /dev/null +++ b/src/IconLineCurveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineCurveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineCurveRoundedFilled as default } diff --git a/src/IconLineCurveSharpFilled.tsx b/src/IconLineCurveSharpFilled.tsx new file mode 100644 index 000000000..64057703a --- /dev/null +++ b/src/IconLineCurveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineCurveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineCurveSharpFilled as default } diff --git a/src/IconLineEndArrowNotchOutlinedFilled.tsx b/src/IconLineEndArrowNotchOutlinedFilled.tsx new file mode 100644 index 000000000..f68e0a064 --- /dev/null +++ b/src/IconLineEndArrowNotchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndArrowNotchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndArrowNotchOutlinedFilled as default } diff --git a/src/IconLineEndArrowNotchRoundedFilled.tsx b/src/IconLineEndArrowNotchRoundedFilled.tsx new file mode 100644 index 000000000..059d3f6df --- /dev/null +++ b/src/IconLineEndArrowNotchRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndArrowNotchRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndArrowNotchRoundedFilled as default } diff --git a/src/IconLineEndArrowNotchSharpFilled.tsx b/src/IconLineEndArrowNotchSharpFilled.tsx new file mode 100644 index 000000000..bcd69973a --- /dev/null +++ b/src/IconLineEndArrowNotchSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndArrowNotchSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndArrowNotchSharpFilled as default } diff --git a/src/IconLineEndArrowOutlinedFilled.tsx b/src/IconLineEndArrowOutlinedFilled.tsx new file mode 100644 index 000000000..81f7f8f09 --- /dev/null +++ b/src/IconLineEndArrowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndArrowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndArrowOutlinedFilled as default } diff --git a/src/IconLineEndArrowRoundedFilled.tsx b/src/IconLineEndArrowRoundedFilled.tsx new file mode 100644 index 000000000..3f4b73fd0 --- /dev/null +++ b/src/IconLineEndArrowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndArrowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndArrowRoundedFilled as default } diff --git a/src/IconLineEndArrowSharpFilled.tsx b/src/IconLineEndArrowSharpFilled.tsx new file mode 100644 index 000000000..2b328c888 --- /dev/null +++ b/src/IconLineEndArrowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndArrowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndArrowSharpFilled as default } diff --git a/src/IconLineEndCircleOutlinedFilled.tsx b/src/IconLineEndCircleOutlinedFilled.tsx new file mode 100644 index 000000000..a6e0fc635 --- /dev/null +++ b/src/IconLineEndCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndCircleOutlinedFilled as default } diff --git a/src/IconLineEndCircleRoundedFilled.tsx b/src/IconLineEndCircleRoundedFilled.tsx new file mode 100644 index 000000000..47b367535 --- /dev/null +++ b/src/IconLineEndCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndCircleRoundedFilled as default } diff --git a/src/IconLineEndCircleSharpFilled.tsx b/src/IconLineEndCircleSharpFilled.tsx new file mode 100644 index 000000000..8cae5f363 --- /dev/null +++ b/src/IconLineEndCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndCircleSharpFilled as default } diff --git a/src/IconLineEndDiamondOutlinedFilled.tsx b/src/IconLineEndDiamondOutlinedFilled.tsx new file mode 100644 index 000000000..8217cee60 --- /dev/null +++ b/src/IconLineEndDiamondOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndDiamondOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndDiamondOutlinedFilled as default } diff --git a/src/IconLineEndDiamondRoundedFilled.tsx b/src/IconLineEndDiamondRoundedFilled.tsx new file mode 100644 index 000000000..cb32de917 --- /dev/null +++ b/src/IconLineEndDiamondRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndDiamondRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndDiamondRoundedFilled as default } diff --git a/src/IconLineEndDiamondSharpFilled.tsx b/src/IconLineEndDiamondSharpFilled.tsx new file mode 100644 index 000000000..2f0cbd5d3 --- /dev/null +++ b/src/IconLineEndDiamondSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndDiamondSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndDiamondSharpFilled as default } diff --git a/src/IconLineEndOutlinedFilled.tsx b/src/IconLineEndOutlinedFilled.tsx new file mode 100644 index 000000000..91452238c --- /dev/null +++ b/src/IconLineEndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndOutlinedFilled as default } diff --git a/src/IconLineEndRoundedFilled.tsx b/src/IconLineEndRoundedFilled.tsx new file mode 100644 index 000000000..99a604562 --- /dev/null +++ b/src/IconLineEndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndRoundedFilled as default } diff --git a/src/IconLineEndSharpFilled.tsx b/src/IconLineEndSharpFilled.tsx new file mode 100644 index 000000000..edee030c1 --- /dev/null +++ b/src/IconLineEndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndSharpFilled as default } diff --git a/src/IconLineEndSquareOutlinedFilled.tsx b/src/IconLineEndSquareOutlinedFilled.tsx new file mode 100644 index 000000000..bb05a2ffd --- /dev/null +++ b/src/IconLineEndSquareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndSquareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndSquareOutlinedFilled as default } diff --git a/src/IconLineEndSquareRoundedFilled.tsx b/src/IconLineEndSquareRoundedFilled.tsx new file mode 100644 index 000000000..1bdfcbafe --- /dev/null +++ b/src/IconLineEndSquareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndSquareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndSquareRoundedFilled as default } diff --git a/src/IconLineEndSquareSharpFilled.tsx b/src/IconLineEndSquareSharpFilled.tsx new file mode 100644 index 000000000..366d649b7 --- /dev/null +++ b/src/IconLineEndSquareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineEndSquareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineEndSquareSharpFilled as default } diff --git a/src/IconLineStartArrowNotchOutlinedFilled.tsx b/src/IconLineStartArrowNotchOutlinedFilled.tsx new file mode 100644 index 000000000..e1be7dc9f --- /dev/null +++ b/src/IconLineStartArrowNotchOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartArrowNotchOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartArrowNotchOutlinedFilled as default } diff --git a/src/IconLineStartArrowNotchRoundedFilled.tsx b/src/IconLineStartArrowNotchRoundedFilled.tsx new file mode 100644 index 000000000..902a29fff --- /dev/null +++ b/src/IconLineStartArrowNotchRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartArrowNotchRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartArrowNotchRoundedFilled as default } diff --git a/src/IconLineStartArrowNotchSharpFilled.tsx b/src/IconLineStartArrowNotchSharpFilled.tsx new file mode 100644 index 000000000..0b08fc295 --- /dev/null +++ b/src/IconLineStartArrowNotchSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartArrowNotchSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartArrowNotchSharpFilled as default } diff --git a/src/IconLineStartArrowOutlinedFilled.tsx b/src/IconLineStartArrowOutlinedFilled.tsx new file mode 100644 index 000000000..cde1de4af --- /dev/null +++ b/src/IconLineStartArrowOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartArrowOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartArrowOutlinedFilled as default } diff --git a/src/IconLineStartArrowRoundedFilled.tsx b/src/IconLineStartArrowRoundedFilled.tsx new file mode 100644 index 000000000..afe2e99e9 --- /dev/null +++ b/src/IconLineStartArrowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartArrowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartArrowRoundedFilled as default } diff --git a/src/IconLineStartArrowSharpFilled.tsx b/src/IconLineStartArrowSharpFilled.tsx new file mode 100644 index 000000000..bd8e7272a --- /dev/null +++ b/src/IconLineStartArrowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartArrowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartArrowSharpFilled as default } diff --git a/src/IconLineStartCircleOutlinedFilled.tsx b/src/IconLineStartCircleOutlinedFilled.tsx new file mode 100644 index 000000000..a88320e44 --- /dev/null +++ b/src/IconLineStartCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartCircleOutlinedFilled as default } diff --git a/src/IconLineStartCircleRoundedFilled.tsx b/src/IconLineStartCircleRoundedFilled.tsx new file mode 100644 index 000000000..afd0751bb --- /dev/null +++ b/src/IconLineStartCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartCircleRoundedFilled as default } diff --git a/src/IconLineStartCircleSharpFilled.tsx b/src/IconLineStartCircleSharpFilled.tsx new file mode 100644 index 000000000..b60c36bb6 --- /dev/null +++ b/src/IconLineStartCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartCircleSharpFilled as default } diff --git a/src/IconLineStartDiamondOutlinedFilled.tsx b/src/IconLineStartDiamondOutlinedFilled.tsx new file mode 100644 index 000000000..1f65e5f67 --- /dev/null +++ b/src/IconLineStartDiamondOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartDiamondOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartDiamondOutlinedFilled as default } diff --git a/src/IconLineStartDiamondRoundedFilled.tsx b/src/IconLineStartDiamondRoundedFilled.tsx new file mode 100644 index 000000000..35a757d1d --- /dev/null +++ b/src/IconLineStartDiamondRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartDiamondRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartDiamondRoundedFilled as default } diff --git a/src/IconLineStartDiamondSharpFilled.tsx b/src/IconLineStartDiamondSharpFilled.tsx new file mode 100644 index 000000000..6931336a2 --- /dev/null +++ b/src/IconLineStartDiamondSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartDiamondSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartDiamondSharpFilled as default } diff --git a/src/IconLineStartOutlinedFilled.tsx b/src/IconLineStartOutlinedFilled.tsx new file mode 100644 index 000000000..e6da016c9 --- /dev/null +++ b/src/IconLineStartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartOutlinedFilled as default } diff --git a/src/IconLineStartRoundedFilled.tsx b/src/IconLineStartRoundedFilled.tsx new file mode 100644 index 000000000..343dee20d --- /dev/null +++ b/src/IconLineStartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartRoundedFilled as default } diff --git a/src/IconLineStartSharpFilled.tsx b/src/IconLineStartSharpFilled.tsx new file mode 100644 index 000000000..73886eede --- /dev/null +++ b/src/IconLineStartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartSharpFilled as default } diff --git a/src/IconLineStartSquareOutlinedFilled.tsx b/src/IconLineStartSquareOutlinedFilled.tsx new file mode 100644 index 000000000..78d49911a --- /dev/null +++ b/src/IconLineStartSquareOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartSquareOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartSquareOutlinedFilled as default } diff --git a/src/IconLineStartSquareRoundedFilled.tsx b/src/IconLineStartSquareRoundedFilled.tsx new file mode 100644 index 000000000..20ffe6043 --- /dev/null +++ b/src/IconLineStartSquareRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartSquareRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartSquareRoundedFilled as default } diff --git a/src/IconLineStartSquareSharpFilled.tsx b/src/IconLineStartSquareSharpFilled.tsx new file mode 100644 index 000000000..46ac2ceae --- /dev/null +++ b/src/IconLineStartSquareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStartSquareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStartSquareSharpFilled as default } diff --git a/src/IconLineStyleOutlinedFilled.tsx b/src/IconLineStyleOutlinedFilled.tsx new file mode 100644 index 000000000..a28a5b46c --- /dev/null +++ b/src/IconLineStyleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStyleOutlinedFilled as default } diff --git a/src/IconLineStyleRoundedFilled.tsx b/src/IconLineStyleRoundedFilled.tsx new file mode 100644 index 000000000..c1606fbad --- /dev/null +++ b/src/IconLineStyleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStyleRoundedFilled as default } diff --git a/src/IconLineStyleSharpFilled.tsx b/src/IconLineStyleSharpFilled.tsx new file mode 100644 index 000000000..48f8897da --- /dev/null +++ b/src/IconLineStyleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineStyleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineStyleSharpFilled as default } diff --git a/src/IconLineWeightOutlinedFilled.tsx b/src/IconLineWeightOutlinedFilled.tsx new file mode 100644 index 000000000..fadc6f4a3 --- /dev/null +++ b/src/IconLineWeightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineWeightOutlinedFilled as default } diff --git a/src/IconLineWeightRoundedFilled.tsx b/src/IconLineWeightRoundedFilled.tsx new file mode 100644 index 000000000..2338ecf68 --- /dev/null +++ b/src/IconLineWeightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineWeightRoundedFilled as default } diff --git a/src/IconLineWeightSharpFilled.tsx b/src/IconLineWeightSharpFilled.tsx new file mode 100644 index 000000000..ab3dc7370 --- /dev/null +++ b/src/IconLineWeightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLineWeightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLineWeightSharpFilled as default } diff --git a/src/IconLinearScaleOutlinedFilled.tsx b/src/IconLinearScaleOutlinedFilled.tsx new file mode 100644 index 000000000..146d60f2e --- /dev/null +++ b/src/IconLinearScaleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinearScaleOutlinedFilled as default } diff --git a/src/IconLinearScaleRoundedFilled.tsx b/src/IconLinearScaleRoundedFilled.tsx new file mode 100644 index 000000000..4ff67fa7b --- /dev/null +++ b/src/IconLinearScaleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinearScaleRoundedFilled as default } diff --git a/src/IconLinearScaleSharpFilled.tsx b/src/IconLinearScaleSharpFilled.tsx new file mode 100644 index 000000000..94e4ffbe9 --- /dev/null +++ b/src/IconLinearScaleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinearScaleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinearScaleSharpFilled as default } diff --git a/src/IconLinkOffOutlinedFilled.tsx b/src/IconLinkOffOutlinedFilled.tsx new file mode 100644 index 000000000..0b4f828ae --- /dev/null +++ b/src/IconLinkOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkOffOutlinedFilled as default } diff --git a/src/IconLinkOffRoundedFilled.tsx b/src/IconLinkOffRoundedFilled.tsx new file mode 100644 index 000000000..660f313da --- /dev/null +++ b/src/IconLinkOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkOffRoundedFilled as default } diff --git a/src/IconLinkOffSharpFilled.tsx b/src/IconLinkOffSharpFilled.tsx new file mode 100644 index 000000000..8e7cc1bcd --- /dev/null +++ b/src/IconLinkOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkOffSharpFilled as default } diff --git a/src/IconLinkOutlinedFilled.tsx b/src/IconLinkOutlinedFilled.tsx new file mode 100644 index 000000000..17255794f --- /dev/null +++ b/src/IconLinkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkOutlinedFilled as default } diff --git a/src/IconLinkRoundedFilled.tsx b/src/IconLinkRoundedFilled.tsx new file mode 100644 index 000000000..f0f181e58 --- /dev/null +++ b/src/IconLinkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkRoundedFilled as default } diff --git a/src/IconLinkSharpFilled.tsx b/src/IconLinkSharpFilled.tsx new file mode 100644 index 000000000..a572f17c4 --- /dev/null +++ b/src/IconLinkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkSharpFilled as default } diff --git a/src/IconLinkedCameraOutlinedFilled.tsx b/src/IconLinkedCameraOutlinedFilled.tsx new file mode 100644 index 000000000..bedaa2d0c --- /dev/null +++ b/src/IconLinkedCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkedCameraOutlinedFilled as default } diff --git a/src/IconLinkedCameraRoundedFilled.tsx b/src/IconLinkedCameraRoundedFilled.tsx new file mode 100644 index 000000000..111b99123 --- /dev/null +++ b/src/IconLinkedCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkedCameraRoundedFilled as default } diff --git a/src/IconLinkedCameraSharpFilled.tsx b/src/IconLinkedCameraSharpFilled.tsx new file mode 100644 index 000000000..790cb7de9 --- /dev/null +++ b/src/IconLinkedCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkedCameraSharpFilled as default } diff --git a/src/IconLinkedServicesOutlinedFilled.tsx b/src/IconLinkedServicesOutlinedFilled.tsx new file mode 100644 index 000000000..be1800ba9 --- /dev/null +++ b/src/IconLinkedServicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedServicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkedServicesOutlinedFilled as default } diff --git a/src/IconLinkedServicesRoundedFilled.tsx b/src/IconLinkedServicesRoundedFilled.tsx new file mode 100644 index 000000000..02cf6b18c --- /dev/null +++ b/src/IconLinkedServicesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedServicesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkedServicesRoundedFilled as default } diff --git a/src/IconLinkedServicesSharpFilled.tsx b/src/IconLinkedServicesSharpFilled.tsx new file mode 100644 index 000000000..f41087873 --- /dev/null +++ b/src/IconLinkedServicesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLinkedServicesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLinkedServicesSharpFilled as default } diff --git a/src/IconLiquorOutlinedFilled.tsx b/src/IconLiquorOutlinedFilled.tsx new file mode 100644 index 000000000..57342b0cc --- /dev/null +++ b/src/IconLiquorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiquorOutlinedFilled as default } diff --git a/src/IconLiquorRoundedFilled.tsx b/src/IconLiquorRoundedFilled.tsx new file mode 100644 index 000000000..13298e579 --- /dev/null +++ b/src/IconLiquorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiquorRoundedFilled as default } diff --git a/src/IconLiquorSharpFilled.tsx b/src/IconLiquorSharpFilled.tsx new file mode 100644 index 000000000..9966b1f44 --- /dev/null +++ b/src/IconLiquorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiquorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiquorSharpFilled as default } diff --git a/src/IconListAltAddOutlinedFilled.tsx b/src/IconListAltAddOutlinedFilled.tsx new file mode 100644 index 000000000..d59df72e9 --- /dev/null +++ b/src/IconListAltAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListAltAddOutlinedFilled as default } diff --git a/src/IconListAltAddRoundedFilled.tsx b/src/IconListAltAddRoundedFilled.tsx new file mode 100644 index 000000000..8c2eba333 --- /dev/null +++ b/src/IconListAltAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListAltAddRoundedFilled as default } diff --git a/src/IconListAltAddSharpFilled.tsx b/src/IconListAltAddSharpFilled.tsx new file mode 100644 index 000000000..5c68e6131 --- /dev/null +++ b/src/IconListAltAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListAltAddSharpFilled as default } diff --git a/src/IconListAltOutlinedFilled.tsx b/src/IconListAltOutlinedFilled.tsx new file mode 100644 index 000000000..115723cfa --- /dev/null +++ b/src/IconListAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListAltOutlinedFilled as default } diff --git a/src/IconListAltRoundedFilled.tsx b/src/IconListAltRoundedFilled.tsx new file mode 100644 index 000000000..681b91e5a --- /dev/null +++ b/src/IconListAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListAltRoundedFilled as default } diff --git a/src/IconListAltSharpFilled.tsx b/src/IconListAltSharpFilled.tsx new file mode 100644 index 000000000..fe5bbd0e2 --- /dev/null +++ b/src/IconListAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListAltSharpFilled as default } diff --git a/src/IconListOutlinedFilled.tsx b/src/IconListOutlinedFilled.tsx new file mode 100644 index 000000000..a47b5a889 --- /dev/null +++ b/src/IconListOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListOutlinedFilled as default } diff --git a/src/IconListRoundedFilled.tsx b/src/IconListRoundedFilled.tsx new file mode 100644 index 000000000..7ea18337c --- /dev/null +++ b/src/IconListRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListRoundedFilled as default } diff --git a/src/IconListSharpFilled.tsx b/src/IconListSharpFilled.tsx new file mode 100644 index 000000000..4110cf651 --- /dev/null +++ b/src/IconListSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListSharpFilled as default } diff --git a/src/IconListsOutlinedFilled.tsx b/src/IconListsOutlinedFilled.tsx new file mode 100644 index 000000000..22d9df965 --- /dev/null +++ b/src/IconListsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListsOutlinedFilled as default } diff --git a/src/IconListsRoundedFilled.tsx b/src/IconListsRoundedFilled.tsx new file mode 100644 index 000000000..93ade72c2 --- /dev/null +++ b/src/IconListsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListsRoundedFilled as default } diff --git a/src/IconListsSharpFilled.tsx b/src/IconListsSharpFilled.tsx new file mode 100644 index 000000000..a50afa056 --- /dev/null +++ b/src/IconListsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconListsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconListsSharpFilled as default } diff --git a/src/IconLiveHelpOutlinedFilled.tsx b/src/IconLiveHelpOutlinedFilled.tsx new file mode 100644 index 000000000..8e2d87a5c --- /dev/null +++ b/src/IconLiveHelpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiveHelpOutlinedFilled as default } diff --git a/src/IconLiveHelpRoundedFilled.tsx b/src/IconLiveHelpRoundedFilled.tsx new file mode 100644 index 000000000..af1b7c61c --- /dev/null +++ b/src/IconLiveHelpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiveHelpRoundedFilled as default } diff --git a/src/IconLiveHelpSharpFilled.tsx b/src/IconLiveHelpSharpFilled.tsx new file mode 100644 index 000000000..f3fc42d15 --- /dev/null +++ b/src/IconLiveHelpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveHelpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiveHelpSharpFilled as default } diff --git a/src/IconLiveTvOutlinedFilled.tsx b/src/IconLiveTvOutlinedFilled.tsx new file mode 100644 index 000000000..8b3a7d289 --- /dev/null +++ b/src/IconLiveTvOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiveTvOutlinedFilled as default } diff --git a/src/IconLiveTvRoundedFilled.tsx b/src/IconLiveTvRoundedFilled.tsx new file mode 100644 index 000000000..933cfb327 --- /dev/null +++ b/src/IconLiveTvRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiveTvRoundedFilled as default } diff --git a/src/IconLiveTvSharpFilled.tsx b/src/IconLiveTvSharpFilled.tsx new file mode 100644 index 000000000..74c53366b --- /dev/null +++ b/src/IconLiveTvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLiveTvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLiveTvSharpFilled as default } diff --git a/src/IconLivingOutlinedFilled.tsx b/src/IconLivingOutlinedFilled.tsx new file mode 100644 index 000000000..6c919827a --- /dev/null +++ b/src/IconLivingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLivingOutlinedFilled as default } diff --git a/src/IconLivingRoundedFilled.tsx b/src/IconLivingRoundedFilled.tsx new file mode 100644 index 000000000..a6071e422 --- /dev/null +++ b/src/IconLivingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLivingRoundedFilled as default } diff --git a/src/IconLivingSharpFilled.tsx b/src/IconLivingSharpFilled.tsx new file mode 100644 index 000000000..f7ee45585 --- /dev/null +++ b/src/IconLivingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLivingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLivingSharpFilled as default } diff --git a/src/IconLocalActivityOutlinedFilled.tsx b/src/IconLocalActivityOutlinedFilled.tsx new file mode 100644 index 000000000..4753903d7 --- /dev/null +++ b/src/IconLocalActivityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalActivityOutlinedFilled as default } diff --git a/src/IconLocalActivityRoundedFilled.tsx b/src/IconLocalActivityRoundedFilled.tsx new file mode 100644 index 000000000..0a99b17e1 --- /dev/null +++ b/src/IconLocalActivityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalActivityRoundedFilled as default } diff --git a/src/IconLocalActivitySharpFilled.tsx b/src/IconLocalActivitySharpFilled.tsx new file mode 100644 index 000000000..d6c85a486 --- /dev/null +++ b/src/IconLocalActivitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalActivitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalActivitySharpFilled as default } diff --git a/src/IconLocalAtmOutlinedFilled.tsx b/src/IconLocalAtmOutlinedFilled.tsx new file mode 100644 index 000000000..ca0cec9c9 --- /dev/null +++ b/src/IconLocalAtmOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalAtmOutlinedFilled as default } diff --git a/src/IconLocalAtmRoundedFilled.tsx b/src/IconLocalAtmRoundedFilled.tsx new file mode 100644 index 000000000..34b723262 --- /dev/null +++ b/src/IconLocalAtmRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalAtmRoundedFilled as default } diff --git a/src/IconLocalAtmSharpFilled.tsx b/src/IconLocalAtmSharpFilled.tsx new file mode 100644 index 000000000..31f3df167 --- /dev/null +++ b/src/IconLocalAtmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalAtmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalAtmSharpFilled as default } diff --git a/src/IconLocalBarOutlinedFilled.tsx b/src/IconLocalBarOutlinedFilled.tsx new file mode 100644 index 000000000..8806ff94d --- /dev/null +++ b/src/IconLocalBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalBarOutlinedFilled as default } diff --git a/src/IconLocalBarRoundedFilled.tsx b/src/IconLocalBarRoundedFilled.tsx new file mode 100644 index 000000000..34da885e4 --- /dev/null +++ b/src/IconLocalBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalBarRoundedFilled as default } diff --git a/src/IconLocalBarSharpFilled.tsx b/src/IconLocalBarSharpFilled.tsx new file mode 100644 index 000000000..6b7861c43 --- /dev/null +++ b/src/IconLocalBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalBarSharpFilled as default } diff --git a/src/IconLocalCafeOutlinedFilled.tsx b/src/IconLocalCafeOutlinedFilled.tsx new file mode 100644 index 000000000..e4dce6b66 --- /dev/null +++ b/src/IconLocalCafeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalCafeOutlinedFilled as default } diff --git a/src/IconLocalCafeRoundedFilled.tsx b/src/IconLocalCafeRoundedFilled.tsx new file mode 100644 index 000000000..62f7e2703 --- /dev/null +++ b/src/IconLocalCafeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalCafeRoundedFilled as default } diff --git a/src/IconLocalCafeSharpFilled.tsx b/src/IconLocalCafeSharpFilled.tsx new file mode 100644 index 000000000..d8f4eb162 --- /dev/null +++ b/src/IconLocalCafeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCafeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalCafeSharpFilled as default } diff --git a/src/IconLocalCarWashOutlinedFilled.tsx b/src/IconLocalCarWashOutlinedFilled.tsx new file mode 100644 index 000000000..144018e26 --- /dev/null +++ b/src/IconLocalCarWashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalCarWashOutlinedFilled as default } diff --git a/src/IconLocalCarWashRoundedFilled.tsx b/src/IconLocalCarWashRoundedFilled.tsx new file mode 100644 index 000000000..eb39e46d2 --- /dev/null +++ b/src/IconLocalCarWashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalCarWashRoundedFilled as default } diff --git a/src/IconLocalCarWashSharpFilled.tsx b/src/IconLocalCarWashSharpFilled.tsx new file mode 100644 index 000000000..d180d6b62 --- /dev/null +++ b/src/IconLocalCarWashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalCarWashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalCarWashSharpFilled as default } diff --git a/src/IconLocalConvenienceStoreOutlinedFilled.tsx b/src/IconLocalConvenienceStoreOutlinedFilled.tsx new file mode 100644 index 000000000..0a4657bf5 --- /dev/null +++ b/src/IconLocalConvenienceStoreOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalConvenienceStoreOutlinedFilled as default } diff --git a/src/IconLocalConvenienceStoreRoundedFilled.tsx b/src/IconLocalConvenienceStoreRoundedFilled.tsx new file mode 100644 index 000000000..a74dba51d --- /dev/null +++ b/src/IconLocalConvenienceStoreRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalConvenienceStoreRoundedFilled as default } diff --git a/src/IconLocalConvenienceStoreSharpFilled.tsx b/src/IconLocalConvenienceStoreSharpFilled.tsx new file mode 100644 index 000000000..c4adf688e --- /dev/null +++ b/src/IconLocalConvenienceStoreSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalConvenienceStoreSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalConvenienceStoreSharpFilled as default } diff --git a/src/IconLocalDiningOutlinedFilled.tsx b/src/IconLocalDiningOutlinedFilled.tsx new file mode 100644 index 000000000..d5dc7d739 --- /dev/null +++ b/src/IconLocalDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalDiningOutlinedFilled as default } diff --git a/src/IconLocalDiningRoundedFilled.tsx b/src/IconLocalDiningRoundedFilled.tsx new file mode 100644 index 000000000..3ca9df034 --- /dev/null +++ b/src/IconLocalDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalDiningRoundedFilled as default } diff --git a/src/IconLocalDiningSharpFilled.tsx b/src/IconLocalDiningSharpFilled.tsx new file mode 100644 index 000000000..b25ae026e --- /dev/null +++ b/src/IconLocalDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalDiningSharpFilled as default } diff --git a/src/IconLocalDrinkOutlinedFilled.tsx b/src/IconLocalDrinkOutlinedFilled.tsx new file mode 100644 index 000000000..819ee9c2a --- /dev/null +++ b/src/IconLocalDrinkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalDrinkOutlinedFilled as default } diff --git a/src/IconLocalDrinkRoundedFilled.tsx b/src/IconLocalDrinkRoundedFilled.tsx new file mode 100644 index 000000000..d34f56232 --- /dev/null +++ b/src/IconLocalDrinkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalDrinkRoundedFilled as default } diff --git a/src/IconLocalDrinkSharpFilled.tsx b/src/IconLocalDrinkSharpFilled.tsx new file mode 100644 index 000000000..bef991506 --- /dev/null +++ b/src/IconLocalDrinkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalDrinkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalDrinkSharpFilled as default } diff --git a/src/IconLocalFireDepartmentOutlinedFilled.tsx b/src/IconLocalFireDepartmentOutlinedFilled.tsx new file mode 100644 index 000000000..c367a40d2 --- /dev/null +++ b/src/IconLocalFireDepartmentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalFireDepartmentOutlinedFilled as default } diff --git a/src/IconLocalFireDepartmentRoundedFilled.tsx b/src/IconLocalFireDepartmentRoundedFilled.tsx new file mode 100644 index 000000000..b607fd974 --- /dev/null +++ b/src/IconLocalFireDepartmentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalFireDepartmentRoundedFilled as default } diff --git a/src/IconLocalFireDepartmentSharpFilled.tsx b/src/IconLocalFireDepartmentSharpFilled.tsx new file mode 100644 index 000000000..6ec5c89c9 --- /dev/null +++ b/src/IconLocalFireDepartmentSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFireDepartmentSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalFireDepartmentSharpFilled as default } diff --git a/src/IconLocalFloristOutlinedFilled.tsx b/src/IconLocalFloristOutlinedFilled.tsx new file mode 100644 index 000000000..31ae8279e --- /dev/null +++ b/src/IconLocalFloristOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalFloristOutlinedFilled as default } diff --git a/src/IconLocalFloristRoundedFilled.tsx b/src/IconLocalFloristRoundedFilled.tsx new file mode 100644 index 000000000..5842da6a6 --- /dev/null +++ b/src/IconLocalFloristRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalFloristRoundedFilled as default } diff --git a/src/IconLocalFloristSharpFilled.tsx b/src/IconLocalFloristSharpFilled.tsx new file mode 100644 index 000000000..63e2d0fb6 --- /dev/null +++ b/src/IconLocalFloristSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalFloristSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalFloristSharpFilled as default } diff --git a/src/IconLocalGasStationOutlinedFilled.tsx b/src/IconLocalGasStationOutlinedFilled.tsx new file mode 100644 index 000000000..ee911f2c4 --- /dev/null +++ b/src/IconLocalGasStationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalGasStationOutlinedFilled as default } diff --git a/src/IconLocalGasStationRoundedFilled.tsx b/src/IconLocalGasStationRoundedFilled.tsx new file mode 100644 index 000000000..53e1f54d8 --- /dev/null +++ b/src/IconLocalGasStationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalGasStationRoundedFilled as default } diff --git a/src/IconLocalGasStationSharpFilled.tsx b/src/IconLocalGasStationSharpFilled.tsx new file mode 100644 index 000000000..f81a07015 --- /dev/null +++ b/src/IconLocalGasStationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalGasStationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalGasStationSharpFilled as default } diff --git a/src/IconLocalHospitalOutlinedFilled.tsx b/src/IconLocalHospitalOutlinedFilled.tsx new file mode 100644 index 000000000..5aa439b45 --- /dev/null +++ b/src/IconLocalHospitalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalHospitalOutlinedFilled as default } diff --git a/src/IconLocalHospitalRoundedFilled.tsx b/src/IconLocalHospitalRoundedFilled.tsx new file mode 100644 index 000000000..579217d97 --- /dev/null +++ b/src/IconLocalHospitalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalHospitalRoundedFilled as default } diff --git a/src/IconLocalHospitalSharpFilled.tsx b/src/IconLocalHospitalSharpFilled.tsx new file mode 100644 index 000000000..07ffd7f58 --- /dev/null +++ b/src/IconLocalHospitalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalHospitalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalHospitalSharpFilled as default } diff --git a/src/IconLocalLaundryServiceOutlinedFilled.tsx b/src/IconLocalLaundryServiceOutlinedFilled.tsx new file mode 100644 index 000000000..f01bc8b1b --- /dev/null +++ b/src/IconLocalLaundryServiceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalLaundryServiceOutlinedFilled as default } diff --git a/src/IconLocalLaundryServiceRoundedFilled.tsx b/src/IconLocalLaundryServiceRoundedFilled.tsx new file mode 100644 index 000000000..857789d42 --- /dev/null +++ b/src/IconLocalLaundryServiceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalLaundryServiceRoundedFilled as default } diff --git a/src/IconLocalLaundryServiceSharpFilled.tsx b/src/IconLocalLaundryServiceSharpFilled.tsx new file mode 100644 index 000000000..6027b216b --- /dev/null +++ b/src/IconLocalLaundryServiceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLaundryServiceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalLaundryServiceSharpFilled as default } diff --git a/src/IconLocalLibraryOutlinedFilled.tsx b/src/IconLocalLibraryOutlinedFilled.tsx new file mode 100644 index 000000000..48f8427d1 --- /dev/null +++ b/src/IconLocalLibraryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibraryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalLibraryOutlinedFilled as default } diff --git a/src/IconLocalLibraryRoundedFilled.tsx b/src/IconLocalLibraryRoundedFilled.tsx new file mode 100644 index 000000000..1bcf1e953 --- /dev/null +++ b/src/IconLocalLibraryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibraryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalLibraryRoundedFilled as default } diff --git a/src/IconLocalLibrarySharpFilled.tsx b/src/IconLocalLibrarySharpFilled.tsx new file mode 100644 index 000000000..63eba256a --- /dev/null +++ b/src/IconLocalLibrarySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalLibrarySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalLibrarySharpFilled as default } diff --git a/src/IconLocalMallOutlinedFilled.tsx b/src/IconLocalMallOutlinedFilled.tsx new file mode 100644 index 000000000..5a4c528f4 --- /dev/null +++ b/src/IconLocalMallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalMallOutlinedFilled as default } diff --git a/src/IconLocalMallRoundedFilled.tsx b/src/IconLocalMallRoundedFilled.tsx new file mode 100644 index 000000000..ee015a742 --- /dev/null +++ b/src/IconLocalMallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalMallRoundedFilled as default } diff --git a/src/IconLocalMallSharpFilled.tsx b/src/IconLocalMallSharpFilled.tsx new file mode 100644 index 000000000..239f19c7d --- /dev/null +++ b/src/IconLocalMallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalMallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalMallSharpFilled as default } diff --git a/src/IconLocalParkingOutlinedFilled.tsx b/src/IconLocalParkingOutlinedFilled.tsx new file mode 100644 index 000000000..57d90ce5e --- /dev/null +++ b/src/IconLocalParkingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalParkingOutlinedFilled as default } diff --git a/src/IconLocalParkingRoundedFilled.tsx b/src/IconLocalParkingRoundedFilled.tsx new file mode 100644 index 000000000..fc980f099 --- /dev/null +++ b/src/IconLocalParkingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalParkingRoundedFilled as default } diff --git a/src/IconLocalParkingSharpFilled.tsx b/src/IconLocalParkingSharpFilled.tsx new file mode 100644 index 000000000..056136621 --- /dev/null +++ b/src/IconLocalParkingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalParkingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalParkingSharpFilled as default } diff --git a/src/IconLocalPharmacyOutlinedFilled.tsx b/src/IconLocalPharmacyOutlinedFilled.tsx new file mode 100644 index 000000000..3c72993bf --- /dev/null +++ b/src/IconLocalPharmacyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPharmacyOutlinedFilled as default } diff --git a/src/IconLocalPharmacyRoundedFilled.tsx b/src/IconLocalPharmacyRoundedFilled.tsx new file mode 100644 index 000000000..64eb9db48 --- /dev/null +++ b/src/IconLocalPharmacyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPharmacyRoundedFilled as default } diff --git a/src/IconLocalPharmacySharpFilled.tsx b/src/IconLocalPharmacySharpFilled.tsx new file mode 100644 index 000000000..4ac731d04 --- /dev/null +++ b/src/IconLocalPharmacySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPharmacySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPharmacySharpFilled as default } diff --git a/src/IconLocalPizzaOutlinedFilled.tsx b/src/IconLocalPizzaOutlinedFilled.tsx new file mode 100644 index 000000000..3c382a948 --- /dev/null +++ b/src/IconLocalPizzaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPizzaOutlinedFilled as default } diff --git a/src/IconLocalPizzaRoundedFilled.tsx b/src/IconLocalPizzaRoundedFilled.tsx new file mode 100644 index 000000000..6697ee02a --- /dev/null +++ b/src/IconLocalPizzaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPizzaRoundedFilled as default } diff --git a/src/IconLocalPizzaSharpFilled.tsx b/src/IconLocalPizzaSharpFilled.tsx new file mode 100644 index 000000000..09766ab5d --- /dev/null +++ b/src/IconLocalPizzaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPizzaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPizzaSharpFilled as default } diff --git a/src/IconLocalPoliceOutlinedFilled.tsx b/src/IconLocalPoliceOutlinedFilled.tsx new file mode 100644 index 000000000..b820e9d95 --- /dev/null +++ b/src/IconLocalPoliceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPoliceOutlinedFilled as default } diff --git a/src/IconLocalPoliceRoundedFilled.tsx b/src/IconLocalPoliceRoundedFilled.tsx new file mode 100644 index 000000000..4d9d294bd --- /dev/null +++ b/src/IconLocalPoliceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPoliceRoundedFilled as default } diff --git a/src/IconLocalPoliceSharpFilled.tsx b/src/IconLocalPoliceSharpFilled.tsx new file mode 100644 index 000000000..cf186b00b --- /dev/null +++ b/src/IconLocalPoliceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPoliceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPoliceSharpFilled as default } diff --git a/src/IconLocalPostOfficeOutlinedFilled.tsx b/src/IconLocalPostOfficeOutlinedFilled.tsx new file mode 100644 index 000000000..7d2c87637 --- /dev/null +++ b/src/IconLocalPostOfficeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPostOfficeOutlinedFilled as default } diff --git a/src/IconLocalPostOfficeRoundedFilled.tsx b/src/IconLocalPostOfficeRoundedFilled.tsx new file mode 100644 index 000000000..0f7b1f322 --- /dev/null +++ b/src/IconLocalPostOfficeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPostOfficeRoundedFilled as default } diff --git a/src/IconLocalPostOfficeSharpFilled.tsx b/src/IconLocalPostOfficeSharpFilled.tsx new file mode 100644 index 000000000..d71db4e5a --- /dev/null +++ b/src/IconLocalPostOfficeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalPostOfficeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalPostOfficeSharpFilled as default } diff --git a/src/IconLocalSeeOutlinedFilled.tsx b/src/IconLocalSeeOutlinedFilled.tsx new file mode 100644 index 000000000..98fc2b294 --- /dev/null +++ b/src/IconLocalSeeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalSeeOutlinedFilled as default } diff --git a/src/IconLocalSeeRoundedFilled.tsx b/src/IconLocalSeeRoundedFilled.tsx new file mode 100644 index 000000000..b4fb33cef --- /dev/null +++ b/src/IconLocalSeeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalSeeRoundedFilled as default } diff --git a/src/IconLocalSeeSharpFilled.tsx b/src/IconLocalSeeSharpFilled.tsx new file mode 100644 index 000000000..94fa8a092 --- /dev/null +++ b/src/IconLocalSeeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalSeeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalSeeSharpFilled as default } diff --git a/src/IconLocalShippingOutlinedFilled.tsx b/src/IconLocalShippingOutlinedFilled.tsx new file mode 100644 index 000000000..d932c0a15 --- /dev/null +++ b/src/IconLocalShippingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalShippingOutlinedFilled as default } diff --git a/src/IconLocalShippingRoundedFilled.tsx b/src/IconLocalShippingRoundedFilled.tsx new file mode 100644 index 000000000..ac5e0902b --- /dev/null +++ b/src/IconLocalShippingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalShippingRoundedFilled as default } diff --git a/src/IconLocalShippingSharpFilled.tsx b/src/IconLocalShippingSharpFilled.tsx new file mode 100644 index 000000000..5943524cf --- /dev/null +++ b/src/IconLocalShippingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalShippingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalShippingSharpFilled as default } diff --git a/src/IconLocalTaxiOutlinedFilled.tsx b/src/IconLocalTaxiOutlinedFilled.tsx new file mode 100644 index 000000000..a03e34205 --- /dev/null +++ b/src/IconLocalTaxiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalTaxiOutlinedFilled as default } diff --git a/src/IconLocalTaxiRoundedFilled.tsx b/src/IconLocalTaxiRoundedFilled.tsx new file mode 100644 index 000000000..b8c92452c --- /dev/null +++ b/src/IconLocalTaxiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalTaxiRoundedFilled as default } diff --git a/src/IconLocalTaxiSharpFilled.tsx b/src/IconLocalTaxiSharpFilled.tsx new file mode 100644 index 000000000..380cb6093 --- /dev/null +++ b/src/IconLocalTaxiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocalTaxiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocalTaxiSharpFilled as default } diff --git a/src/IconLocationAwayOutlinedFilled.tsx b/src/IconLocationAwayOutlinedFilled.tsx new file mode 100644 index 000000000..aac3796f1 --- /dev/null +++ b/src/IconLocationAwayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationAwayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationAwayOutlinedFilled as default } diff --git a/src/IconLocationAwayRoundedFilled.tsx b/src/IconLocationAwayRoundedFilled.tsx new file mode 100644 index 000000000..58ebe1d95 --- /dev/null +++ b/src/IconLocationAwayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationAwayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationAwayRoundedFilled as default } diff --git a/src/IconLocationAwaySharpFilled.tsx b/src/IconLocationAwaySharpFilled.tsx new file mode 100644 index 000000000..df0e0337a --- /dev/null +++ b/src/IconLocationAwaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationAwaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationAwaySharpFilled as default } diff --git a/src/IconLocationChipOutlinedFilled.tsx b/src/IconLocationChipOutlinedFilled.tsx new file mode 100644 index 000000000..ee839a011 --- /dev/null +++ b/src/IconLocationChipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationChipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationChipOutlinedFilled as default } diff --git a/src/IconLocationChipRoundedFilled.tsx b/src/IconLocationChipRoundedFilled.tsx new file mode 100644 index 000000000..d4269876d --- /dev/null +++ b/src/IconLocationChipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationChipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationChipRoundedFilled as default } diff --git a/src/IconLocationChipSharpFilled.tsx b/src/IconLocationChipSharpFilled.tsx new file mode 100644 index 000000000..7bcebb52f --- /dev/null +++ b/src/IconLocationChipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationChipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationChipSharpFilled as default } diff --git a/src/IconLocationCityOutlinedFilled.tsx b/src/IconLocationCityOutlinedFilled.tsx new file mode 100644 index 000000000..e1453fdd9 --- /dev/null +++ b/src/IconLocationCityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationCityOutlinedFilled as default } diff --git a/src/IconLocationCityRoundedFilled.tsx b/src/IconLocationCityRoundedFilled.tsx new file mode 100644 index 000000000..a799b50fb --- /dev/null +++ b/src/IconLocationCityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationCityRoundedFilled as default } diff --git a/src/IconLocationCitySharpFilled.tsx b/src/IconLocationCitySharpFilled.tsx new file mode 100644 index 000000000..1e6e612be --- /dev/null +++ b/src/IconLocationCitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationCitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationCitySharpFilled as default } diff --git a/src/IconLocationDisabledOutlinedFilled.tsx b/src/IconLocationDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..653010e79 --- /dev/null +++ b/src/IconLocationDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationDisabledOutlinedFilled as default } diff --git a/src/IconLocationDisabledRoundedFilled.tsx b/src/IconLocationDisabledRoundedFilled.tsx new file mode 100644 index 000000000..29aaafff5 --- /dev/null +++ b/src/IconLocationDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationDisabledRoundedFilled as default } diff --git a/src/IconLocationDisabledSharpFilled.tsx b/src/IconLocationDisabledSharpFilled.tsx new file mode 100644 index 000000000..138ade993 --- /dev/null +++ b/src/IconLocationDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationDisabledSharpFilled as default } diff --git a/src/IconLocationHomeOutlinedFilled.tsx b/src/IconLocationHomeOutlinedFilled.tsx new file mode 100644 index 000000000..d20a40526 --- /dev/null +++ b/src/IconLocationHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationHomeOutlinedFilled as default } diff --git a/src/IconLocationHomeRoundedFilled.tsx b/src/IconLocationHomeRoundedFilled.tsx new file mode 100644 index 000000000..8c0892fe0 --- /dev/null +++ b/src/IconLocationHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationHomeRoundedFilled as default } diff --git a/src/IconLocationHomeSharpFilled.tsx b/src/IconLocationHomeSharpFilled.tsx new file mode 100644 index 000000000..afdc98c95 --- /dev/null +++ b/src/IconLocationHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationHomeSharpFilled as default } diff --git a/src/IconLocationOffOutlinedFilled.tsx b/src/IconLocationOffOutlinedFilled.tsx new file mode 100644 index 000000000..3d9089abf --- /dev/null +++ b/src/IconLocationOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationOffOutlinedFilled as default } diff --git a/src/IconLocationOffRoundedFilled.tsx b/src/IconLocationOffRoundedFilled.tsx new file mode 100644 index 000000000..f2b93c158 --- /dev/null +++ b/src/IconLocationOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationOffRoundedFilled as default } diff --git a/src/IconLocationOffSharpFilled.tsx b/src/IconLocationOffSharpFilled.tsx new file mode 100644 index 000000000..34f6dbc2b --- /dev/null +++ b/src/IconLocationOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationOffSharpFilled as default } diff --git a/src/IconLocationOnOutlinedFilled.tsx b/src/IconLocationOnOutlinedFilled.tsx new file mode 100644 index 000000000..ca9806cae --- /dev/null +++ b/src/IconLocationOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationOnOutlinedFilled as default } diff --git a/src/IconLocationOnRoundedFilled.tsx b/src/IconLocationOnRoundedFilled.tsx new file mode 100644 index 000000000..840f54284 --- /dev/null +++ b/src/IconLocationOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationOnRoundedFilled as default } diff --git a/src/IconLocationOnSharpFilled.tsx b/src/IconLocationOnSharpFilled.tsx new file mode 100644 index 000000000..1d68c94b8 --- /dev/null +++ b/src/IconLocationOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationOnSharpFilled as default } diff --git a/src/IconLocationSearchingOutlinedFilled.tsx b/src/IconLocationSearchingOutlinedFilled.tsx new file mode 100644 index 000000000..2ea6cd6bc --- /dev/null +++ b/src/IconLocationSearchingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationSearchingOutlinedFilled as default } diff --git a/src/IconLocationSearchingRoundedFilled.tsx b/src/IconLocationSearchingRoundedFilled.tsx new file mode 100644 index 000000000..e09389e84 --- /dev/null +++ b/src/IconLocationSearchingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationSearchingRoundedFilled as default } diff --git a/src/IconLocationSearchingSharpFilled.tsx b/src/IconLocationSearchingSharpFilled.tsx new file mode 100644 index 000000000..e5db4ae3f --- /dev/null +++ b/src/IconLocationSearchingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLocationSearchingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLocationSearchingSharpFilled as default } diff --git a/src/IconLockClockOutlinedFilled.tsx b/src/IconLockClockOutlinedFilled.tsx new file mode 100644 index 000000000..7e84e1d4a --- /dev/null +++ b/src/IconLockClockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockClockOutlinedFilled as default } diff --git a/src/IconLockClockRoundedFilled.tsx b/src/IconLockClockRoundedFilled.tsx new file mode 100644 index 000000000..909fc6549 --- /dev/null +++ b/src/IconLockClockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockClockRoundedFilled as default } diff --git a/src/IconLockClockSharpFilled.tsx b/src/IconLockClockSharpFilled.tsx new file mode 100644 index 000000000..f06a15dff --- /dev/null +++ b/src/IconLockClockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockClockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockClockSharpFilled as default } diff --git a/src/IconLockOpenOutlinedFilled.tsx b/src/IconLockOpenOutlinedFilled.tsx new file mode 100644 index 000000000..31abb66f2 --- /dev/null +++ b/src/IconLockOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOpenOutlinedFilled as default } diff --git a/src/IconLockOpenRightOutlinedFilled.tsx b/src/IconLockOpenRightOutlinedFilled.tsx new file mode 100644 index 000000000..7b9bcc05f --- /dev/null +++ b/src/IconLockOpenRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOpenRightOutlinedFilled as default } diff --git a/src/IconLockOpenRightRoundedFilled.tsx b/src/IconLockOpenRightRoundedFilled.tsx new file mode 100644 index 000000000..9b906142b --- /dev/null +++ b/src/IconLockOpenRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOpenRightRoundedFilled as default } diff --git a/src/IconLockOpenRightSharpFilled.tsx b/src/IconLockOpenRightSharpFilled.tsx new file mode 100644 index 000000000..86568d5e1 --- /dev/null +++ b/src/IconLockOpenRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOpenRightSharpFilled as default } diff --git a/src/IconLockOpenRoundedFilled.tsx b/src/IconLockOpenRoundedFilled.tsx new file mode 100644 index 000000000..028aecc31 --- /dev/null +++ b/src/IconLockOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOpenRoundedFilled as default } diff --git a/src/IconLockOpenSharpFilled.tsx b/src/IconLockOpenSharpFilled.tsx new file mode 100644 index 000000000..759dff3d7 --- /dev/null +++ b/src/IconLockOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOpenSharpFilled as default } diff --git a/src/IconLockOutlinedFilled.tsx b/src/IconLockOutlinedFilled.tsx new file mode 100644 index 000000000..c8fb7b439 --- /dev/null +++ b/src/IconLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockOutlinedFilled as default } diff --git a/src/IconLockPersonOutlinedFilled.tsx b/src/IconLockPersonOutlinedFilled.tsx new file mode 100644 index 000000000..013d70ebd --- /dev/null +++ b/src/IconLockPersonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockPersonOutlinedFilled as default } diff --git a/src/IconLockPersonRoundedFilled.tsx b/src/IconLockPersonRoundedFilled.tsx new file mode 100644 index 000000000..85a0e3fc3 --- /dev/null +++ b/src/IconLockPersonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockPersonRoundedFilled as default } diff --git a/src/IconLockPersonSharpFilled.tsx b/src/IconLockPersonSharpFilled.tsx new file mode 100644 index 000000000..d3a83ce76 --- /dev/null +++ b/src/IconLockPersonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockPersonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockPersonSharpFilled as default } diff --git a/src/IconLockResetOutlinedFilled.tsx b/src/IconLockResetOutlinedFilled.tsx new file mode 100644 index 000000000..e52d14e89 --- /dev/null +++ b/src/IconLockResetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockResetOutlinedFilled as default } diff --git a/src/IconLockResetRoundedFilled.tsx b/src/IconLockResetRoundedFilled.tsx new file mode 100644 index 000000000..e05135808 --- /dev/null +++ b/src/IconLockResetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockResetRoundedFilled as default } diff --git a/src/IconLockResetSharpFilled.tsx b/src/IconLockResetSharpFilled.tsx new file mode 100644 index 000000000..70bb8ffb0 --- /dev/null +++ b/src/IconLockResetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockResetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockResetSharpFilled as default } diff --git a/src/IconLockRoundedFilled.tsx b/src/IconLockRoundedFilled.tsx new file mode 100644 index 000000000..a74a22338 --- /dev/null +++ b/src/IconLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockRoundedFilled as default } diff --git a/src/IconLockSharpFilled.tsx b/src/IconLockSharpFilled.tsx new file mode 100644 index 000000000..787f7cfcc --- /dev/null +++ b/src/IconLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLockSharpFilled as default } diff --git a/src/IconLoginOutlinedFilled.tsx b/src/IconLoginOutlinedFilled.tsx new file mode 100644 index 000000000..390bc00ed --- /dev/null +++ b/src/IconLoginOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoginOutlinedFilled as default } diff --git a/src/IconLoginRoundedFilled.tsx b/src/IconLoginRoundedFilled.tsx new file mode 100644 index 000000000..87c441b5c --- /dev/null +++ b/src/IconLoginRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoginRoundedFilled as default } diff --git a/src/IconLoginSharpFilled.tsx b/src/IconLoginSharpFilled.tsx new file mode 100644 index 000000000..a6e816560 --- /dev/null +++ b/src/IconLoginSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoginSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoginSharpFilled as default } diff --git a/src/IconLogoDevOutlinedFilled.tsx b/src/IconLogoDevOutlinedFilled.tsx new file mode 100644 index 000000000..a29b5d4b1 --- /dev/null +++ b/src/IconLogoDevOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLogoDevOutlinedFilled as default } diff --git a/src/IconLogoDevRoundedFilled.tsx b/src/IconLogoDevRoundedFilled.tsx new file mode 100644 index 000000000..83d9b5489 --- /dev/null +++ b/src/IconLogoDevRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLogoDevRoundedFilled as default } diff --git a/src/IconLogoDevSharpFilled.tsx b/src/IconLogoDevSharpFilled.tsx new file mode 100644 index 000000000..d5164fa3f --- /dev/null +++ b/src/IconLogoDevSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoDevSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLogoDevSharpFilled as default } diff --git a/src/IconLogoutOutlinedFilled.tsx b/src/IconLogoutOutlinedFilled.tsx new file mode 100644 index 000000000..ee2bbc11c --- /dev/null +++ b/src/IconLogoutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLogoutOutlinedFilled as default } diff --git a/src/IconLogoutRoundedFilled.tsx b/src/IconLogoutRoundedFilled.tsx new file mode 100644 index 000000000..bd33b21be --- /dev/null +++ b/src/IconLogoutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLogoutRoundedFilled as default } diff --git a/src/IconLogoutSharpFilled.tsx b/src/IconLogoutSharpFilled.tsx new file mode 100644 index 000000000..d5a14979a --- /dev/null +++ b/src/IconLogoutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLogoutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLogoutSharpFilled as default } diff --git a/src/IconLooks3OutlinedFilled.tsx b/src/IconLooks3OutlinedFilled.tsx new file mode 100644 index 000000000..d80401017 --- /dev/null +++ b/src/IconLooks3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks3OutlinedFilled as default } diff --git a/src/IconLooks3RoundedFilled.tsx b/src/IconLooks3RoundedFilled.tsx new file mode 100644 index 000000000..48928b181 --- /dev/null +++ b/src/IconLooks3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks3RoundedFilled as default } diff --git a/src/IconLooks3SharpFilled.tsx b/src/IconLooks3SharpFilled.tsx new file mode 100644 index 000000000..7c1d54785 --- /dev/null +++ b/src/IconLooks3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks3SharpFilled as default } diff --git a/src/IconLooks4OutlinedFilled.tsx b/src/IconLooks4OutlinedFilled.tsx new file mode 100644 index 000000000..8513e74b5 --- /dev/null +++ b/src/IconLooks4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks4OutlinedFilled as default } diff --git a/src/IconLooks4RoundedFilled.tsx b/src/IconLooks4RoundedFilled.tsx new file mode 100644 index 000000000..c0779b463 --- /dev/null +++ b/src/IconLooks4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks4RoundedFilled as default } diff --git a/src/IconLooks4SharpFilled.tsx b/src/IconLooks4SharpFilled.tsx new file mode 100644 index 000000000..c7f5d2373 --- /dev/null +++ b/src/IconLooks4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks4SharpFilled as default } diff --git a/src/IconLooks5OutlinedFilled.tsx b/src/IconLooks5OutlinedFilled.tsx new file mode 100644 index 000000000..05e8b53ce --- /dev/null +++ b/src/IconLooks5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks5OutlinedFilled as default } diff --git a/src/IconLooks5RoundedFilled.tsx b/src/IconLooks5RoundedFilled.tsx new file mode 100644 index 000000000..c5cb56cc1 --- /dev/null +++ b/src/IconLooks5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks5RoundedFilled as default } diff --git a/src/IconLooks5SharpFilled.tsx b/src/IconLooks5SharpFilled.tsx new file mode 100644 index 000000000..3bbb3830f --- /dev/null +++ b/src/IconLooks5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks5SharpFilled as default } diff --git a/src/IconLooks6OutlinedFilled.tsx b/src/IconLooks6OutlinedFilled.tsx new file mode 100644 index 000000000..2d25459cf --- /dev/null +++ b/src/IconLooks6OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks6OutlinedFilled as default } diff --git a/src/IconLooks6RoundedFilled.tsx b/src/IconLooks6RoundedFilled.tsx new file mode 100644 index 000000000..33084b07c --- /dev/null +++ b/src/IconLooks6RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks6RoundedFilled as default } diff --git a/src/IconLooks6SharpFilled.tsx b/src/IconLooks6SharpFilled.tsx new file mode 100644 index 000000000..989548bff --- /dev/null +++ b/src/IconLooks6SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooks6SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooks6SharpFilled as default } diff --git a/src/IconLooksOneOutlinedFilled.tsx b/src/IconLooksOneOutlinedFilled.tsx new file mode 100644 index 000000000..247a86672 --- /dev/null +++ b/src/IconLooksOneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksOneOutlinedFilled as default } diff --git a/src/IconLooksOneRoundedFilled.tsx b/src/IconLooksOneRoundedFilled.tsx new file mode 100644 index 000000000..f7cba1cb0 --- /dev/null +++ b/src/IconLooksOneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksOneRoundedFilled as default } diff --git a/src/IconLooksOneSharpFilled.tsx b/src/IconLooksOneSharpFilled.tsx new file mode 100644 index 000000000..1273e90b6 --- /dev/null +++ b/src/IconLooksOneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksOneSharpFilled as default } diff --git a/src/IconLooksOutlinedFilled.tsx b/src/IconLooksOutlinedFilled.tsx new file mode 100644 index 000000000..b68f4bf7c --- /dev/null +++ b/src/IconLooksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksOutlinedFilled as default } diff --git a/src/IconLooksRoundedFilled.tsx b/src/IconLooksRoundedFilled.tsx new file mode 100644 index 000000000..fbe17caef --- /dev/null +++ b/src/IconLooksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksRoundedFilled as default } diff --git a/src/IconLooksSharpFilled.tsx b/src/IconLooksSharpFilled.tsx new file mode 100644 index 000000000..bbc33dc4b --- /dev/null +++ b/src/IconLooksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksSharpFilled as default } diff --git a/src/IconLooksTwoOutlinedFilled.tsx b/src/IconLooksTwoOutlinedFilled.tsx new file mode 100644 index 000000000..9ff2fd851 --- /dev/null +++ b/src/IconLooksTwoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksTwoOutlinedFilled as default } diff --git a/src/IconLooksTwoRoundedFilled.tsx b/src/IconLooksTwoRoundedFilled.tsx new file mode 100644 index 000000000..09c53e59f --- /dev/null +++ b/src/IconLooksTwoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksTwoRoundedFilled as default } diff --git a/src/IconLooksTwoSharpFilled.tsx b/src/IconLooksTwoSharpFilled.tsx new file mode 100644 index 000000000..f1d7d37f5 --- /dev/null +++ b/src/IconLooksTwoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLooksTwoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLooksTwoSharpFilled as default } diff --git a/src/IconLoupeOutlinedFilled.tsx b/src/IconLoupeOutlinedFilled.tsx new file mode 100644 index 000000000..437a73a49 --- /dev/null +++ b/src/IconLoupeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoupeOutlinedFilled as default } diff --git a/src/IconLoupeRoundedFilled.tsx b/src/IconLoupeRoundedFilled.tsx new file mode 100644 index 000000000..a898bce02 --- /dev/null +++ b/src/IconLoupeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoupeRoundedFilled as default } diff --git a/src/IconLoupeSharpFilled.tsx b/src/IconLoupeSharpFilled.tsx new file mode 100644 index 000000000..75816cd7d --- /dev/null +++ b/src/IconLoupeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoupeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoupeSharpFilled as default } diff --git a/src/IconLowDensityOutlinedFilled.tsx b/src/IconLowDensityOutlinedFilled.tsx new file mode 100644 index 000000000..201eb8877 --- /dev/null +++ b/src/IconLowDensityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowDensityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowDensityOutlinedFilled as default } diff --git a/src/IconLowDensityRoundedFilled.tsx b/src/IconLowDensityRoundedFilled.tsx new file mode 100644 index 000000000..a18585b4f --- /dev/null +++ b/src/IconLowDensityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowDensityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowDensityRoundedFilled as default } diff --git a/src/IconLowDensitySharpFilled.tsx b/src/IconLowDensitySharpFilled.tsx new file mode 100644 index 000000000..b58cf13eb --- /dev/null +++ b/src/IconLowDensitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowDensitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowDensitySharpFilled as default } diff --git a/src/IconLowPriorityOutlinedFilled.tsx b/src/IconLowPriorityOutlinedFilled.tsx new file mode 100644 index 000000000..66b3121a5 --- /dev/null +++ b/src/IconLowPriorityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPriorityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowPriorityOutlinedFilled as default } diff --git a/src/IconLowPriorityRoundedFilled.tsx b/src/IconLowPriorityRoundedFilled.tsx new file mode 100644 index 000000000..391f80fe1 --- /dev/null +++ b/src/IconLowPriorityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPriorityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowPriorityRoundedFilled as default } diff --git a/src/IconLowPrioritySharpFilled.tsx b/src/IconLowPrioritySharpFilled.tsx new file mode 100644 index 000000000..2cbe0d0f1 --- /dev/null +++ b/src/IconLowPrioritySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowPrioritySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowPrioritySharpFilled as default } diff --git a/src/IconLowercaseOutlinedFilled.tsx b/src/IconLowercaseOutlinedFilled.tsx new file mode 100644 index 000000000..6c8700caf --- /dev/null +++ b/src/IconLowercaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowercaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowercaseOutlinedFilled as default } diff --git a/src/IconLowercaseRoundedFilled.tsx b/src/IconLowercaseRoundedFilled.tsx new file mode 100644 index 000000000..48d745a17 --- /dev/null +++ b/src/IconLowercaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowercaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowercaseRoundedFilled as default } diff --git a/src/IconLowercaseSharpFilled.tsx b/src/IconLowercaseSharpFilled.tsx new file mode 100644 index 000000000..96791bf29 --- /dev/null +++ b/src/IconLowercaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLowercaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLowercaseSharpFilled as default } diff --git a/src/IconLoyaltyOutlinedFilled.tsx b/src/IconLoyaltyOutlinedFilled.tsx new file mode 100644 index 000000000..f22d77da6 --- /dev/null +++ b/src/IconLoyaltyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoyaltyOutlinedFilled as default } diff --git a/src/IconLoyaltyRoundedFilled.tsx b/src/IconLoyaltyRoundedFilled.tsx new file mode 100644 index 000000000..c711e8afc --- /dev/null +++ b/src/IconLoyaltyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoyaltyRoundedFilled as default } diff --git a/src/IconLoyaltySharpFilled.tsx b/src/IconLoyaltySharpFilled.tsx new file mode 100644 index 000000000..18c4ac96b --- /dev/null +++ b/src/IconLoyaltySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLoyaltySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLoyaltySharpFilled as default } diff --git a/src/IconLteMobiledataBadgeOutlinedFilled.tsx b/src/IconLteMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..2435650fd --- /dev/null +++ b/src/IconLteMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLteMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconLteMobiledataBadgeRoundedFilled.tsx b/src/IconLteMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..af945f9b5 --- /dev/null +++ b/src/IconLteMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLteMobiledataBadgeRoundedFilled as default } diff --git a/src/IconLteMobiledataBadgeSharpFilled.tsx b/src/IconLteMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..31f859389 --- /dev/null +++ b/src/IconLteMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLteMobiledataBadgeSharpFilled as default } diff --git a/src/IconLteMobiledataOutlinedFilled.tsx b/src/IconLteMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..0ebe0072a --- /dev/null +++ b/src/IconLteMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLteMobiledataOutlinedFilled as default } diff --git a/src/IconLteMobiledataRoundedFilled.tsx b/src/IconLteMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..64edd6dc6 --- /dev/null +++ b/src/IconLteMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLteMobiledataRoundedFilled as default } diff --git a/src/IconLteMobiledataSharpFilled.tsx b/src/IconLteMobiledataSharpFilled.tsx new file mode 100644 index 000000000..641d5807f --- /dev/null +++ b/src/IconLteMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLteMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLteMobiledataSharpFilled as default } diff --git a/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx b/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx new file mode 100644 index 000000000..2f53669d0 --- /dev/null +++ b/src/IconLtePlusMobiledataBadgeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataBadgeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLtePlusMobiledataBadgeOutlinedFilled as default } diff --git a/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx b/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx new file mode 100644 index 000000000..0272b4d06 --- /dev/null +++ b/src/IconLtePlusMobiledataBadgeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataBadgeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLtePlusMobiledataBadgeRoundedFilled as default } diff --git a/src/IconLtePlusMobiledataBadgeSharpFilled.tsx b/src/IconLtePlusMobiledataBadgeSharpFilled.tsx new file mode 100644 index 000000000..7cac103ce --- /dev/null +++ b/src/IconLtePlusMobiledataBadgeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataBadgeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLtePlusMobiledataBadgeSharpFilled as default } diff --git a/src/IconLtePlusMobiledataOutlinedFilled.tsx b/src/IconLtePlusMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..0928e7274 --- /dev/null +++ b/src/IconLtePlusMobiledataOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLtePlusMobiledataOutlinedFilled as default } diff --git a/src/IconLtePlusMobiledataRoundedFilled.tsx b/src/IconLtePlusMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..8fd928f49 --- /dev/null +++ b/src/IconLtePlusMobiledataRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLtePlusMobiledataRoundedFilled as default } diff --git a/src/IconLtePlusMobiledataSharpFilled.tsx b/src/IconLtePlusMobiledataSharpFilled.tsx new file mode 100644 index 000000000..3f2a77c29 --- /dev/null +++ b/src/IconLtePlusMobiledataSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLtePlusMobiledataSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconLtePlusMobiledataSharpFilled as default } diff --git a/src/IconLuggageOutlinedFilled.tsx b/src/IconLuggageOutlinedFilled.tsx new file mode 100644 index 000000000..b94f70258 --- /dev/null +++ b/src/IconLuggageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLuggageOutlinedFilled as default } diff --git a/src/IconLuggageRoundedFilled.tsx b/src/IconLuggageRoundedFilled.tsx new file mode 100644 index 000000000..673314f66 --- /dev/null +++ b/src/IconLuggageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLuggageRoundedFilled as default } diff --git a/src/IconLuggageSharpFilled.tsx b/src/IconLuggageSharpFilled.tsx new file mode 100644 index 000000000..ad929dc1d --- /dev/null +++ b/src/IconLuggageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLuggageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLuggageSharpFilled as default } diff --git a/src/IconLunchDiningOutlinedFilled.tsx b/src/IconLunchDiningOutlinedFilled.tsx new file mode 100644 index 000000000..17da62ddd --- /dev/null +++ b/src/IconLunchDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLunchDiningOutlinedFilled as default } diff --git a/src/IconLunchDiningRoundedFilled.tsx b/src/IconLunchDiningRoundedFilled.tsx new file mode 100644 index 000000000..e63818587 --- /dev/null +++ b/src/IconLunchDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLunchDiningRoundedFilled as default } diff --git a/src/IconLunchDiningSharpFilled.tsx b/src/IconLunchDiningSharpFilled.tsx new file mode 100644 index 000000000..b28c40e62 --- /dev/null +++ b/src/IconLunchDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLunchDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLunchDiningSharpFilled as default } diff --git a/src/IconLyricsOutlinedFilled.tsx b/src/IconLyricsOutlinedFilled.tsx new file mode 100644 index 000000000..5289a9b95 --- /dev/null +++ b/src/IconLyricsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLyricsOutlinedFilled as default } diff --git a/src/IconLyricsRoundedFilled.tsx b/src/IconLyricsRoundedFilled.tsx new file mode 100644 index 000000000..2556622ff --- /dev/null +++ b/src/IconLyricsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLyricsRoundedFilled as default } diff --git a/src/IconLyricsSharpFilled.tsx b/src/IconLyricsSharpFilled.tsx new file mode 100644 index 000000000..faa14b57b --- /dev/null +++ b/src/IconLyricsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconLyricsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconLyricsSharpFilled as default } diff --git a/src/IconMacroAutoOutlinedFilled.tsx b/src/IconMacroAutoOutlinedFilled.tsx new file mode 100644 index 000000000..d78f4aafe --- /dev/null +++ b/src/IconMacroAutoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroAutoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMacroAutoOutlinedFilled as default } diff --git a/src/IconMacroAutoRoundedFilled.tsx b/src/IconMacroAutoRoundedFilled.tsx new file mode 100644 index 000000000..1946218e2 --- /dev/null +++ b/src/IconMacroAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMacroAutoRoundedFilled as default } diff --git a/src/IconMacroAutoSharpFilled.tsx b/src/IconMacroAutoSharpFilled.tsx new file mode 100644 index 000000000..533ac19ca --- /dev/null +++ b/src/IconMacroAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMacroAutoSharpFilled as default } diff --git a/src/IconMacroOffOutlinedFilled.tsx b/src/IconMacroOffOutlinedFilled.tsx new file mode 100644 index 000000000..505cb5be0 --- /dev/null +++ b/src/IconMacroOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMacroOffOutlinedFilled as default } diff --git a/src/IconMacroOffRoundedFilled.tsx b/src/IconMacroOffRoundedFilled.tsx new file mode 100644 index 000000000..2da795db8 --- /dev/null +++ b/src/IconMacroOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMacroOffRoundedFilled as default } diff --git a/src/IconMacroOffSharpFilled.tsx b/src/IconMacroOffSharpFilled.tsx new file mode 100644 index 000000000..180d1e78c --- /dev/null +++ b/src/IconMacroOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMacroOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMacroOffSharpFilled as default } diff --git a/src/IconMagnificationLargeOutlinedFilled.tsx b/src/IconMagnificationLargeOutlinedFilled.tsx new file mode 100644 index 000000000..ea3ded265 --- /dev/null +++ b/src/IconMagnificationLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnificationLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnificationLargeOutlinedFilled as default } diff --git a/src/IconMagnificationLargeRoundedFilled.tsx b/src/IconMagnificationLargeRoundedFilled.tsx new file mode 100644 index 000000000..361ad52d7 --- /dev/null +++ b/src/IconMagnificationLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnificationLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnificationLargeRoundedFilled as default } diff --git a/src/IconMagnificationLargeSharpFilled.tsx b/src/IconMagnificationLargeSharpFilled.tsx new file mode 100644 index 000000000..9cece3d2f --- /dev/null +++ b/src/IconMagnificationLargeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnificationLargeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnificationLargeSharpFilled as default } diff --git a/src/IconMagnificationSmallOutlinedFilled.tsx b/src/IconMagnificationSmallOutlinedFilled.tsx new file mode 100644 index 000000000..b26b9c69a --- /dev/null +++ b/src/IconMagnificationSmallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnificationSmallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnificationSmallOutlinedFilled as default } diff --git a/src/IconMagnificationSmallRoundedFilled.tsx b/src/IconMagnificationSmallRoundedFilled.tsx new file mode 100644 index 000000000..1b2b6effd --- /dev/null +++ b/src/IconMagnificationSmallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnificationSmallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnificationSmallRoundedFilled as default } diff --git a/src/IconMagnificationSmallSharpFilled.tsx b/src/IconMagnificationSmallSharpFilled.tsx new file mode 100644 index 000000000..a443563ea --- /dev/null +++ b/src/IconMagnificationSmallSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnificationSmallSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnificationSmallSharpFilled as default } diff --git a/src/IconMagnifyDockedOutlinedFilled.tsx b/src/IconMagnifyDockedOutlinedFilled.tsx new file mode 100644 index 000000000..7ed305c28 --- /dev/null +++ b/src/IconMagnifyDockedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnifyDockedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnifyDockedOutlinedFilled as default } diff --git a/src/IconMagnifyDockedRoundedFilled.tsx b/src/IconMagnifyDockedRoundedFilled.tsx new file mode 100644 index 000000000..19a91e288 --- /dev/null +++ b/src/IconMagnifyDockedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnifyDockedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnifyDockedRoundedFilled as default } diff --git a/src/IconMagnifyDockedSharpFilled.tsx b/src/IconMagnifyDockedSharpFilled.tsx new file mode 100644 index 000000000..a6d9a9808 --- /dev/null +++ b/src/IconMagnifyDockedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnifyDockedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnifyDockedSharpFilled as default } diff --git a/src/IconMagnifyFullscreenOutlinedFilled.tsx b/src/IconMagnifyFullscreenOutlinedFilled.tsx new file mode 100644 index 000000000..6b6e44d37 --- /dev/null +++ b/src/IconMagnifyFullscreenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnifyFullscreenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnifyFullscreenOutlinedFilled as default } diff --git a/src/IconMagnifyFullscreenRoundedFilled.tsx b/src/IconMagnifyFullscreenRoundedFilled.tsx new file mode 100644 index 000000000..c1b37e752 --- /dev/null +++ b/src/IconMagnifyFullscreenRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnifyFullscreenRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnifyFullscreenRoundedFilled as default } diff --git a/src/IconMagnifyFullscreenSharpFilled.tsx b/src/IconMagnifyFullscreenSharpFilled.tsx new file mode 100644 index 000000000..17740babe --- /dev/null +++ b/src/IconMagnifyFullscreenSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMagnifyFullscreenSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMagnifyFullscreenSharpFilled as default } diff --git a/src/IconMailLockOutlinedFilled.tsx b/src/IconMailLockOutlinedFilled.tsx new file mode 100644 index 000000000..999fbade7 --- /dev/null +++ b/src/IconMailLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailLockOutlinedFilled as default } diff --git a/src/IconMailLockRoundedFilled.tsx b/src/IconMailLockRoundedFilled.tsx new file mode 100644 index 000000000..32d9451dd --- /dev/null +++ b/src/IconMailLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailLockRoundedFilled as default } diff --git a/src/IconMailLockSharpFilled.tsx b/src/IconMailLockSharpFilled.tsx new file mode 100644 index 000000000..3a858ad9f --- /dev/null +++ b/src/IconMailLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailLockSharpFilled as default } diff --git a/src/IconMailOffOutlinedFilled.tsx b/src/IconMailOffOutlinedFilled.tsx new file mode 100644 index 000000000..45dde4862 --- /dev/null +++ b/src/IconMailOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailOffOutlinedFilled as default } diff --git a/src/IconMailOffRoundedFilled.tsx b/src/IconMailOffRoundedFilled.tsx new file mode 100644 index 000000000..7efadf5a4 --- /dev/null +++ b/src/IconMailOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailOffRoundedFilled as default } diff --git a/src/IconMailOffSharpFilled.tsx b/src/IconMailOffSharpFilled.tsx new file mode 100644 index 000000000..290cf1297 --- /dev/null +++ b/src/IconMailOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailOffSharpFilled as default } diff --git a/src/IconMailOutlinedFilled.tsx b/src/IconMailOutlinedFilled.tsx new file mode 100644 index 000000000..97afcf6e2 --- /dev/null +++ b/src/IconMailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailOutlinedFilled as default } diff --git a/src/IconMailRoundedFilled.tsx b/src/IconMailRoundedFilled.tsx new file mode 100644 index 000000000..fdfcba9df --- /dev/null +++ b/src/IconMailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailRoundedFilled as default } diff --git a/src/IconMailSharpFilled.tsx b/src/IconMailSharpFilled.tsx new file mode 100644 index 000000000..49a38965a --- /dev/null +++ b/src/IconMailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMailSharpFilled as default } diff --git a/src/IconMaleOutlinedFilled.tsx b/src/IconMaleOutlinedFilled.tsx new file mode 100644 index 000000000..a2f79af5e --- /dev/null +++ b/src/IconMaleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMaleOutlinedFilled as default } diff --git a/src/IconMaleRoundedFilled.tsx b/src/IconMaleRoundedFilled.tsx new file mode 100644 index 000000000..8926c732a --- /dev/null +++ b/src/IconMaleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMaleRoundedFilled as default } diff --git a/src/IconMaleSharpFilled.tsx b/src/IconMaleSharpFilled.tsx new file mode 100644 index 000000000..a7c1a64ae --- /dev/null +++ b/src/IconMaleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMaleSharpFilled as default } diff --git a/src/IconMan2OutlinedFilled.tsx b/src/IconMan2OutlinedFilled.tsx new file mode 100644 index 000000000..cab83cadb --- /dev/null +++ b/src/IconMan2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan2OutlinedFilled as default } diff --git a/src/IconMan2RoundedFilled.tsx b/src/IconMan2RoundedFilled.tsx new file mode 100644 index 000000000..02b96532d --- /dev/null +++ b/src/IconMan2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan2RoundedFilled as default } diff --git a/src/IconMan2SharpFilled.tsx b/src/IconMan2SharpFilled.tsx new file mode 100644 index 000000000..6686dacf0 --- /dev/null +++ b/src/IconMan2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan2SharpFilled as default } diff --git a/src/IconMan3OutlinedFilled.tsx b/src/IconMan3OutlinedFilled.tsx new file mode 100644 index 000000000..d77f142f1 --- /dev/null +++ b/src/IconMan3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan3OutlinedFilled as default } diff --git a/src/IconMan3RoundedFilled.tsx b/src/IconMan3RoundedFilled.tsx new file mode 100644 index 000000000..58f8a3d31 --- /dev/null +++ b/src/IconMan3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan3RoundedFilled as default } diff --git a/src/IconMan3SharpFilled.tsx b/src/IconMan3SharpFilled.tsx new file mode 100644 index 000000000..78a37716a --- /dev/null +++ b/src/IconMan3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan3SharpFilled as default } diff --git a/src/IconMan4OutlinedFilled.tsx b/src/IconMan4OutlinedFilled.tsx new file mode 100644 index 000000000..353ee9116 --- /dev/null +++ b/src/IconMan4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan4OutlinedFilled as default } diff --git a/src/IconMan4RoundedFilled.tsx b/src/IconMan4RoundedFilled.tsx new file mode 100644 index 000000000..31ea08ade --- /dev/null +++ b/src/IconMan4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan4RoundedFilled as default } diff --git a/src/IconMan4SharpFilled.tsx b/src/IconMan4SharpFilled.tsx new file mode 100644 index 000000000..d7b6648fe --- /dev/null +++ b/src/IconMan4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMan4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMan4SharpFilled as default } diff --git a/src/IconManOutlinedFilled.tsx b/src/IconManOutlinedFilled.tsx new file mode 100644 index 000000000..aff248bdd --- /dev/null +++ b/src/IconManOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManOutlinedFilled as default } diff --git a/src/IconManRoundedFilled.tsx b/src/IconManRoundedFilled.tsx new file mode 100644 index 000000000..acbe02866 --- /dev/null +++ b/src/IconManRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManRoundedFilled as default } diff --git a/src/IconManSharpFilled.tsx b/src/IconManSharpFilled.tsx new file mode 100644 index 000000000..f0dbc44e0 --- /dev/null +++ b/src/IconManSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManSharpFilled as default } diff --git a/src/IconManageAccountsOutlinedFilled.tsx b/src/IconManageAccountsOutlinedFilled.tsx new file mode 100644 index 000000000..b955fe4d6 --- /dev/null +++ b/src/IconManageAccountsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconManageAccountsOutlinedFilled as default } diff --git a/src/IconManageAccountsRoundedFilled.tsx b/src/IconManageAccountsRoundedFilled.tsx new file mode 100644 index 000000000..60e945365 --- /dev/null +++ b/src/IconManageAccountsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageAccountsRoundedFilled as default } diff --git a/src/IconManageAccountsSharpFilled.tsx b/src/IconManageAccountsSharpFilled.tsx new file mode 100644 index 000000000..4e64ea3d9 --- /dev/null +++ b/src/IconManageAccountsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageAccountsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageAccountsSharpFilled as default } diff --git a/src/IconManageHistoryOutlinedFilled.tsx b/src/IconManageHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..7f8c499d4 --- /dev/null +++ b/src/IconManageHistoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageHistoryOutlinedFilled as default } diff --git a/src/IconManageHistoryRoundedFilled.tsx b/src/IconManageHistoryRoundedFilled.tsx new file mode 100644 index 000000000..397c72ed4 --- /dev/null +++ b/src/IconManageHistoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageHistoryRoundedFilled as default } diff --git a/src/IconManageHistorySharpFilled.tsx b/src/IconManageHistorySharpFilled.tsx new file mode 100644 index 000000000..2c7c3320d --- /dev/null +++ b/src/IconManageHistorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageHistorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageHistorySharpFilled as default } diff --git a/src/IconManageSearchOutlinedFilled.tsx b/src/IconManageSearchOutlinedFilled.tsx new file mode 100644 index 000000000..5cc20be8e --- /dev/null +++ b/src/IconManageSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageSearchOutlinedFilled as default } diff --git a/src/IconManageSearchRoundedFilled.tsx b/src/IconManageSearchRoundedFilled.tsx new file mode 100644 index 000000000..5c76b3151 --- /dev/null +++ b/src/IconManageSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageSearchRoundedFilled as default } diff --git a/src/IconManageSearchSharpFilled.tsx b/src/IconManageSearchSharpFilled.tsx new file mode 100644 index 000000000..960eb0520 --- /dev/null +++ b/src/IconManageSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManageSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManageSearchSharpFilled as default } diff --git a/src/IconMangaOutlinedFilled.tsx b/src/IconMangaOutlinedFilled.tsx new file mode 100644 index 000000000..020f4e75c --- /dev/null +++ b/src/IconMangaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMangaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMangaOutlinedFilled as default } diff --git a/src/IconMangaRoundedFilled.tsx b/src/IconMangaRoundedFilled.tsx new file mode 100644 index 000000000..0acc8b313 --- /dev/null +++ b/src/IconMangaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMangaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMangaRoundedFilled as default } diff --git a/src/IconMangaSharpFilled.tsx b/src/IconMangaSharpFilled.tsx new file mode 100644 index 000000000..83a7aed86 --- /dev/null +++ b/src/IconMangaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMangaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMangaSharpFilled as default } diff --git a/src/IconManufacturingOutlinedFilled.tsx b/src/IconManufacturingOutlinedFilled.tsx new file mode 100644 index 000000000..3adc54d92 --- /dev/null +++ b/src/IconManufacturingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManufacturingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManufacturingOutlinedFilled as default } diff --git a/src/IconManufacturingRoundedFilled.tsx b/src/IconManufacturingRoundedFilled.tsx new file mode 100644 index 000000000..9f99ec398 --- /dev/null +++ b/src/IconManufacturingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManufacturingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManufacturingRoundedFilled as default } diff --git a/src/IconManufacturingSharpFilled.tsx b/src/IconManufacturingSharpFilled.tsx new file mode 100644 index 000000000..d246eb12f --- /dev/null +++ b/src/IconManufacturingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconManufacturingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconManufacturingSharpFilled as default } diff --git a/src/IconMapOutlinedFilled.tsx b/src/IconMapOutlinedFilled.tsx new file mode 100644 index 000000000..2daa61215 --- /dev/null +++ b/src/IconMapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMapOutlinedFilled as default } diff --git a/src/IconMapRoundedFilled.tsx b/src/IconMapRoundedFilled.tsx new file mode 100644 index 000000000..8be78ad41 --- /dev/null +++ b/src/IconMapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMapRoundedFilled as default } diff --git a/src/IconMapSharpFilled.tsx b/src/IconMapSharpFilled.tsx new file mode 100644 index 000000000..6b5c6b9bc --- /dev/null +++ b/src/IconMapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMapSharpFilled as default } diff --git a/src/IconMapsUgcOutlinedFilled.tsx b/src/IconMapsUgcOutlinedFilled.tsx new file mode 100644 index 000000000..b74f0ae8b --- /dev/null +++ b/src/IconMapsUgcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMapsUgcOutlinedFilled as default } diff --git a/src/IconMapsUgcRoundedFilled.tsx b/src/IconMapsUgcRoundedFilled.tsx new file mode 100644 index 000000000..8f24ef6e7 --- /dev/null +++ b/src/IconMapsUgcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMapsUgcRoundedFilled as default } diff --git a/src/IconMapsUgcSharpFilled.tsx b/src/IconMapsUgcSharpFilled.tsx new file mode 100644 index 000000000..6f4f7b992 --- /dev/null +++ b/src/IconMapsUgcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMapsUgcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMapsUgcSharpFilled as default } diff --git a/src/IconMarginOutlinedFilled.tsx b/src/IconMarginOutlinedFilled.tsx new file mode 100644 index 000000000..d70fba9fc --- /dev/null +++ b/src/IconMarginOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarginOutlinedFilled as default } diff --git a/src/IconMarginRoundedFilled.tsx b/src/IconMarginRoundedFilled.tsx new file mode 100644 index 000000000..1eecbb813 --- /dev/null +++ b/src/IconMarginRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarginRoundedFilled as default } diff --git a/src/IconMarginSharpFilled.tsx b/src/IconMarginSharpFilled.tsx new file mode 100644 index 000000000..7c0414b30 --- /dev/null +++ b/src/IconMarginSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarginSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarginSharpFilled as default } diff --git a/src/IconMarkAsUnreadOutlinedFilled.tsx b/src/IconMarkAsUnreadOutlinedFilled.tsx new file mode 100644 index 000000000..56272781d --- /dev/null +++ b/src/IconMarkAsUnreadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkAsUnreadOutlinedFilled as default } diff --git a/src/IconMarkAsUnreadRoundedFilled.tsx b/src/IconMarkAsUnreadRoundedFilled.tsx new file mode 100644 index 000000000..1982f0766 --- /dev/null +++ b/src/IconMarkAsUnreadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkAsUnreadRoundedFilled as default } diff --git a/src/IconMarkAsUnreadSharpFilled.tsx b/src/IconMarkAsUnreadSharpFilled.tsx new file mode 100644 index 000000000..e45d3e8d1 --- /dev/null +++ b/src/IconMarkAsUnreadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkAsUnreadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkAsUnreadSharpFilled as default } diff --git a/src/IconMarkChatReadOutlinedFilled.tsx b/src/IconMarkChatReadOutlinedFilled.tsx new file mode 100644 index 000000000..34a7ca739 --- /dev/null +++ b/src/IconMarkChatReadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkChatReadOutlinedFilled as default } diff --git a/src/IconMarkChatReadRoundedFilled.tsx b/src/IconMarkChatReadRoundedFilled.tsx new file mode 100644 index 000000000..702ef053a --- /dev/null +++ b/src/IconMarkChatReadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkChatReadRoundedFilled as default } diff --git a/src/IconMarkChatReadSharpFilled.tsx b/src/IconMarkChatReadSharpFilled.tsx new file mode 100644 index 000000000..73fee134c --- /dev/null +++ b/src/IconMarkChatReadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatReadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkChatReadSharpFilled as default } diff --git a/src/IconMarkChatUnreadOutlinedFilled.tsx b/src/IconMarkChatUnreadOutlinedFilled.tsx new file mode 100644 index 000000000..cd40b29a2 --- /dev/null +++ b/src/IconMarkChatUnreadOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkChatUnreadOutlinedFilled as default } diff --git a/src/IconMarkChatUnreadRoundedFilled.tsx b/src/IconMarkChatUnreadRoundedFilled.tsx new file mode 100644 index 000000000..fcd39060e --- /dev/null +++ b/src/IconMarkChatUnreadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkChatUnreadRoundedFilled as default } diff --git a/src/IconMarkChatUnreadSharpFilled.tsx b/src/IconMarkChatUnreadSharpFilled.tsx new file mode 100644 index 000000000..262eb0aac --- /dev/null +++ b/src/IconMarkChatUnreadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkChatUnreadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkChatUnreadSharpFilled as default } diff --git a/src/IconMarkEmailReadOutlinedFilled.tsx b/src/IconMarkEmailReadOutlinedFilled.tsx new file mode 100644 index 000000000..bd2b3da0a --- /dev/null +++ b/src/IconMarkEmailReadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkEmailReadOutlinedFilled as default } diff --git a/src/IconMarkEmailReadRoundedFilled.tsx b/src/IconMarkEmailReadRoundedFilled.tsx new file mode 100644 index 000000000..922c66a2e --- /dev/null +++ b/src/IconMarkEmailReadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkEmailReadRoundedFilled as default } diff --git a/src/IconMarkEmailReadSharpFilled.tsx b/src/IconMarkEmailReadSharpFilled.tsx new file mode 100644 index 000000000..f1d796557 --- /dev/null +++ b/src/IconMarkEmailReadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailReadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkEmailReadSharpFilled as default } diff --git a/src/IconMarkEmailUnreadOutlinedFilled.tsx b/src/IconMarkEmailUnreadOutlinedFilled.tsx new file mode 100644 index 000000000..b3b00ff9b --- /dev/null +++ b/src/IconMarkEmailUnreadOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkEmailUnreadOutlinedFilled as default } diff --git a/src/IconMarkEmailUnreadRoundedFilled.tsx b/src/IconMarkEmailUnreadRoundedFilled.tsx new file mode 100644 index 000000000..ea3580924 --- /dev/null +++ b/src/IconMarkEmailUnreadRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkEmailUnreadRoundedFilled as default } diff --git a/src/IconMarkEmailUnreadSharpFilled.tsx b/src/IconMarkEmailUnreadSharpFilled.tsx new file mode 100644 index 000000000..3992f7146 --- /dev/null +++ b/src/IconMarkEmailUnreadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkEmailUnreadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkEmailUnreadSharpFilled as default } diff --git a/src/IconMarkUnreadChatAltOutlinedFilled.tsx b/src/IconMarkUnreadChatAltOutlinedFilled.tsx new file mode 100644 index 000000000..fc2f0bf72 --- /dev/null +++ b/src/IconMarkUnreadChatAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkUnreadChatAltOutlinedFilled as default } diff --git a/src/IconMarkUnreadChatAltRoundedFilled.tsx b/src/IconMarkUnreadChatAltRoundedFilled.tsx new file mode 100644 index 000000000..44f84a97d --- /dev/null +++ b/src/IconMarkUnreadChatAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkUnreadChatAltRoundedFilled as default } diff --git a/src/IconMarkUnreadChatAltSharpFilled.tsx b/src/IconMarkUnreadChatAltSharpFilled.tsx new file mode 100644 index 000000000..04828f129 --- /dev/null +++ b/src/IconMarkUnreadChatAltSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkUnreadChatAltSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkUnreadChatAltSharpFilled as default } diff --git a/src/IconMarkdownCopyOutlinedFilled.tsx b/src/IconMarkdownCopyOutlinedFilled.tsx new file mode 100644 index 000000000..28530212a --- /dev/null +++ b/src/IconMarkdownCopyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownCopyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownCopyOutlinedFilled as default } diff --git a/src/IconMarkdownCopyRoundedFilled.tsx b/src/IconMarkdownCopyRoundedFilled.tsx new file mode 100644 index 000000000..e57b23d7b --- /dev/null +++ b/src/IconMarkdownCopyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownCopyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownCopyRoundedFilled as default } diff --git a/src/IconMarkdownCopySharpFilled.tsx b/src/IconMarkdownCopySharpFilled.tsx new file mode 100644 index 000000000..cb9cc997c --- /dev/null +++ b/src/IconMarkdownCopySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownCopySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownCopySharpFilled as default } diff --git a/src/IconMarkdownOutlinedFilled.tsx b/src/IconMarkdownOutlinedFilled.tsx new file mode 100644 index 000000000..cd3b48cc5 --- /dev/null +++ b/src/IconMarkdownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownOutlinedFilled as default } diff --git a/src/IconMarkdownPasteOutlinedFilled.tsx b/src/IconMarkdownPasteOutlinedFilled.tsx new file mode 100644 index 000000000..fb9ad2070 --- /dev/null +++ b/src/IconMarkdownPasteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownPasteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownPasteOutlinedFilled as default } diff --git a/src/IconMarkdownPasteRoundedFilled.tsx b/src/IconMarkdownPasteRoundedFilled.tsx new file mode 100644 index 000000000..7f21cd4ae --- /dev/null +++ b/src/IconMarkdownPasteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownPasteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownPasteRoundedFilled as default } diff --git a/src/IconMarkdownPasteSharpFilled.tsx b/src/IconMarkdownPasteSharpFilled.tsx new file mode 100644 index 000000000..465dca21a --- /dev/null +++ b/src/IconMarkdownPasteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownPasteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownPasteSharpFilled as default } diff --git a/src/IconMarkdownRoundedFilled.tsx b/src/IconMarkdownRoundedFilled.tsx new file mode 100644 index 000000000..4104241e9 --- /dev/null +++ b/src/IconMarkdownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownRoundedFilled as default } diff --git a/src/IconMarkdownSharpFilled.tsx b/src/IconMarkdownSharpFilled.tsx new file mode 100644 index 000000000..381368ece --- /dev/null +++ b/src/IconMarkdownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkdownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkdownSharpFilled as default } diff --git a/src/IconMarkunreadMailboxOutlinedFilled.tsx b/src/IconMarkunreadMailboxOutlinedFilled.tsx new file mode 100644 index 000000000..b5758cb55 --- /dev/null +++ b/src/IconMarkunreadMailboxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkunreadMailboxOutlinedFilled as default } diff --git a/src/IconMarkunreadMailboxRoundedFilled.tsx b/src/IconMarkunreadMailboxRoundedFilled.tsx new file mode 100644 index 000000000..fb65223c7 --- /dev/null +++ b/src/IconMarkunreadMailboxRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkunreadMailboxRoundedFilled as default } diff --git a/src/IconMarkunreadMailboxSharpFilled.tsx b/src/IconMarkunreadMailboxSharpFilled.tsx new file mode 100644 index 000000000..5fde5eeec --- /dev/null +++ b/src/IconMarkunreadMailboxSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMarkunreadMailboxSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMarkunreadMailboxSharpFilled as default } diff --git a/src/IconMaskedTransitionsAddOutlinedFilled.tsx b/src/IconMaskedTransitionsAddOutlinedFilled.tsx new file mode 100644 index 000000000..cca96920e --- /dev/null +++ b/src/IconMaskedTransitionsAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaskedTransitionsAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMaskedTransitionsAddOutlinedFilled as default } diff --git a/src/IconMaskedTransitionsAddRoundedFilled.tsx b/src/IconMaskedTransitionsAddRoundedFilled.tsx new file mode 100644 index 000000000..13a88a5b8 --- /dev/null +++ b/src/IconMaskedTransitionsAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaskedTransitionsAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMaskedTransitionsAddRoundedFilled as default } diff --git a/src/IconMaskedTransitionsAddSharpFilled.tsx b/src/IconMaskedTransitionsAddSharpFilled.tsx new file mode 100644 index 000000000..115fecf2f --- /dev/null +++ b/src/IconMaskedTransitionsAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaskedTransitionsAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMaskedTransitionsAddSharpFilled as default } diff --git a/src/IconMaskedTransitionsOutlinedFilled.tsx b/src/IconMaskedTransitionsOutlinedFilled.tsx new file mode 100644 index 000000000..f017cd734 --- /dev/null +++ b/src/IconMaskedTransitionsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaskedTransitionsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMaskedTransitionsOutlinedFilled as default } diff --git a/src/IconMaskedTransitionsRoundedFilled.tsx b/src/IconMaskedTransitionsRoundedFilled.tsx new file mode 100644 index 000000000..196ce7d81 --- /dev/null +++ b/src/IconMaskedTransitionsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaskedTransitionsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMaskedTransitionsRoundedFilled as default } diff --git a/src/IconMaskedTransitionsSharpFilled.tsx b/src/IconMaskedTransitionsSharpFilled.tsx new file mode 100644 index 000000000..732b9d2fc --- /dev/null +++ b/src/IconMaskedTransitionsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaskedTransitionsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMaskedTransitionsSharpFilled as default } diff --git a/src/IconMasksOutlinedFilled.tsx b/src/IconMasksOutlinedFilled.tsx new file mode 100644 index 000000000..4c36c326e --- /dev/null +++ b/src/IconMasksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMasksOutlinedFilled as default } diff --git a/src/IconMasksRoundedFilled.tsx b/src/IconMasksRoundedFilled.tsx new file mode 100644 index 000000000..dc8e833eb --- /dev/null +++ b/src/IconMasksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMasksRoundedFilled as default } diff --git a/src/IconMasksSharpFilled.tsx b/src/IconMasksSharpFilled.tsx new file mode 100644 index 000000000..3d1aa5039 --- /dev/null +++ b/src/IconMasksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMasksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMasksSharpFilled as default } diff --git a/src/IconMatchCaseOutlinedFilled.tsx b/src/IconMatchCaseOutlinedFilled.tsx new file mode 100644 index 000000000..7cdc62e2c --- /dev/null +++ b/src/IconMatchCaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatchCaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatchCaseOutlinedFilled as default } diff --git a/src/IconMatchCaseRoundedFilled.tsx b/src/IconMatchCaseRoundedFilled.tsx new file mode 100644 index 000000000..3251de9c0 --- /dev/null +++ b/src/IconMatchCaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatchCaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatchCaseRoundedFilled as default } diff --git a/src/IconMatchCaseSharpFilled.tsx b/src/IconMatchCaseSharpFilled.tsx new file mode 100644 index 000000000..2d5876d91 --- /dev/null +++ b/src/IconMatchCaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatchCaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatchCaseSharpFilled as default } diff --git a/src/IconMatchWordOutlinedFilled.tsx b/src/IconMatchWordOutlinedFilled.tsx new file mode 100644 index 000000000..99b5bd9dc --- /dev/null +++ b/src/IconMatchWordOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatchWordOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatchWordOutlinedFilled as default } diff --git a/src/IconMatchWordRoundedFilled.tsx b/src/IconMatchWordRoundedFilled.tsx new file mode 100644 index 000000000..af1506717 --- /dev/null +++ b/src/IconMatchWordRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatchWordRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatchWordRoundedFilled as default } diff --git a/src/IconMatchWordSharpFilled.tsx b/src/IconMatchWordSharpFilled.tsx new file mode 100644 index 000000000..f6dadb8a4 --- /dev/null +++ b/src/IconMatchWordSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatchWordSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatchWordSharpFilled as default } diff --git a/src/IconMatterOutlinedFilled.tsx b/src/IconMatterOutlinedFilled.tsx new file mode 100644 index 000000000..84fa25ab2 --- /dev/null +++ b/src/IconMatterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatterOutlinedFilled as default } diff --git a/src/IconMatterRoundedFilled.tsx b/src/IconMatterRoundedFilled.tsx new file mode 100644 index 000000000..1f76d13b4 --- /dev/null +++ b/src/IconMatterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatterRoundedFilled as default } diff --git a/src/IconMatterSharpFilled.tsx b/src/IconMatterSharpFilled.tsx new file mode 100644 index 000000000..291d08ac3 --- /dev/null +++ b/src/IconMatterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMatterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMatterSharpFilled as default } diff --git a/src/IconMaximizeOutlinedFilled.tsx b/src/IconMaximizeOutlinedFilled.tsx new file mode 100644 index 000000000..6c3a9c99d --- /dev/null +++ b/src/IconMaximizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMaximizeOutlinedFilled as default } diff --git a/src/IconMaximizeRoundedFilled.tsx b/src/IconMaximizeRoundedFilled.tsx new file mode 100644 index 000000000..09f52f631 --- /dev/null +++ b/src/IconMaximizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMaximizeRoundedFilled as default } diff --git a/src/IconMaximizeSharpFilled.tsx b/src/IconMaximizeSharpFilled.tsx new file mode 100644 index 000000000..e2ad95b49 --- /dev/null +++ b/src/IconMaximizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMaximizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMaximizeSharpFilled as default } diff --git a/src/IconMeasuringTapeOutlinedFilled.tsx b/src/IconMeasuringTapeOutlinedFilled.tsx new file mode 100644 index 000000000..ce6b77a15 --- /dev/null +++ b/src/IconMeasuringTapeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeasuringTapeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMeasuringTapeOutlinedFilled as default } diff --git a/src/IconMeasuringTapeRoundedFilled.tsx b/src/IconMeasuringTapeRoundedFilled.tsx new file mode 100644 index 000000000..2eb422df1 --- /dev/null +++ b/src/IconMeasuringTapeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeasuringTapeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMeasuringTapeRoundedFilled as default } diff --git a/src/IconMeasuringTapeSharpFilled.tsx b/src/IconMeasuringTapeSharpFilled.tsx new file mode 100644 index 000000000..792798d2f --- /dev/null +++ b/src/IconMeasuringTapeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeasuringTapeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMeasuringTapeSharpFilled as default } diff --git a/src/IconMediaBluetoothOffOutlinedFilled.tsx b/src/IconMediaBluetoothOffOutlinedFilled.tsx new file mode 100644 index 000000000..d8d7f2160 --- /dev/null +++ b/src/IconMediaBluetoothOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaBluetoothOffOutlinedFilled as default } diff --git a/src/IconMediaBluetoothOffRoundedFilled.tsx b/src/IconMediaBluetoothOffRoundedFilled.tsx new file mode 100644 index 000000000..58c40a9be --- /dev/null +++ b/src/IconMediaBluetoothOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaBluetoothOffRoundedFilled as default } diff --git a/src/IconMediaBluetoothOffSharpFilled.tsx b/src/IconMediaBluetoothOffSharpFilled.tsx new file mode 100644 index 000000000..5f6dfce41 --- /dev/null +++ b/src/IconMediaBluetoothOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaBluetoothOffSharpFilled as default } diff --git a/src/IconMediaBluetoothOnOutlinedFilled.tsx b/src/IconMediaBluetoothOnOutlinedFilled.tsx new file mode 100644 index 000000000..c9e843c23 --- /dev/null +++ b/src/IconMediaBluetoothOnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaBluetoothOnOutlinedFilled as default } diff --git a/src/IconMediaBluetoothOnRoundedFilled.tsx b/src/IconMediaBluetoothOnRoundedFilled.tsx new file mode 100644 index 000000000..78966d357 --- /dev/null +++ b/src/IconMediaBluetoothOnRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaBluetoothOnRoundedFilled as default } diff --git a/src/IconMediaBluetoothOnSharpFilled.tsx b/src/IconMediaBluetoothOnSharpFilled.tsx new file mode 100644 index 000000000..ae112b537 --- /dev/null +++ b/src/IconMediaBluetoothOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaBluetoothOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaBluetoothOnSharpFilled as default } diff --git a/src/IconMediaLinkOutlinedFilled.tsx b/src/IconMediaLinkOutlinedFilled.tsx new file mode 100644 index 000000000..3cd0027eb --- /dev/null +++ b/src/IconMediaLinkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaLinkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaLinkOutlinedFilled as default } diff --git a/src/IconMediaLinkRoundedFilled.tsx b/src/IconMediaLinkRoundedFilled.tsx new file mode 100644 index 000000000..707016443 --- /dev/null +++ b/src/IconMediaLinkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaLinkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaLinkRoundedFilled as default } diff --git a/src/IconMediaLinkSharpFilled.tsx b/src/IconMediaLinkSharpFilled.tsx new file mode 100644 index 000000000..1e520cb21 --- /dev/null +++ b/src/IconMediaLinkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaLinkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaLinkSharpFilled as default } diff --git a/src/IconMediaOutputOffOutlinedFilled.tsx b/src/IconMediaOutputOffOutlinedFilled.tsx new file mode 100644 index 000000000..44e8ff571 --- /dev/null +++ b/src/IconMediaOutputOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaOutputOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaOutputOffOutlinedFilled as default } diff --git a/src/IconMediaOutputOffRoundedFilled.tsx b/src/IconMediaOutputOffRoundedFilled.tsx new file mode 100644 index 000000000..89be2a4ed --- /dev/null +++ b/src/IconMediaOutputOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaOutputOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaOutputOffRoundedFilled as default } diff --git a/src/IconMediaOutputOffSharpFilled.tsx b/src/IconMediaOutputOffSharpFilled.tsx new file mode 100644 index 000000000..3dd3ad378 --- /dev/null +++ b/src/IconMediaOutputOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaOutputOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaOutputOffSharpFilled as default } diff --git a/src/IconMediaOutputOutlinedFilled.tsx b/src/IconMediaOutputOutlinedFilled.tsx new file mode 100644 index 000000000..7c862bf9a --- /dev/null +++ b/src/IconMediaOutputOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaOutputOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaOutputOutlinedFilled as default } diff --git a/src/IconMediaOutputRoundedFilled.tsx b/src/IconMediaOutputRoundedFilled.tsx new file mode 100644 index 000000000..35c9f1898 --- /dev/null +++ b/src/IconMediaOutputRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaOutputRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaOutputRoundedFilled as default } diff --git a/src/IconMediaOutputSharpFilled.tsx b/src/IconMediaOutputSharpFilled.tsx new file mode 100644 index 000000000..8dc9f2a0b --- /dev/null +++ b/src/IconMediaOutputSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediaOutputSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediaOutputSharpFilled as default } diff --git a/src/IconMediationOutlinedFilled.tsx b/src/IconMediationOutlinedFilled.tsx new file mode 100644 index 000000000..9b6000cb8 --- /dev/null +++ b/src/IconMediationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediationOutlinedFilled as default } diff --git a/src/IconMediationRoundedFilled.tsx b/src/IconMediationRoundedFilled.tsx new file mode 100644 index 000000000..6f6f4e9a8 --- /dev/null +++ b/src/IconMediationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediationRoundedFilled as default } diff --git a/src/IconMediationSharpFilled.tsx b/src/IconMediationSharpFilled.tsx new file mode 100644 index 000000000..63029d553 --- /dev/null +++ b/src/IconMediationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMediationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMediationSharpFilled as default } diff --git a/src/IconMedicalInformationOutlinedFilled.tsx b/src/IconMedicalInformationOutlinedFilled.tsx new file mode 100644 index 000000000..41dfc3125 --- /dev/null +++ b/src/IconMedicalInformationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalInformationOutlinedFilled as default } diff --git a/src/IconMedicalInformationRoundedFilled.tsx b/src/IconMedicalInformationRoundedFilled.tsx new file mode 100644 index 000000000..763d46b45 --- /dev/null +++ b/src/IconMedicalInformationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalInformationRoundedFilled as default } diff --git a/src/IconMedicalInformationSharpFilled.tsx b/src/IconMedicalInformationSharpFilled.tsx new file mode 100644 index 000000000..360689f38 --- /dev/null +++ b/src/IconMedicalInformationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalInformationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalInformationSharpFilled as default } diff --git a/src/IconMedicalMaskOutlinedFilled.tsx b/src/IconMedicalMaskOutlinedFilled.tsx new file mode 100644 index 000000000..1e0a9ea0e --- /dev/null +++ b/src/IconMedicalMaskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalMaskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalMaskOutlinedFilled as default } diff --git a/src/IconMedicalMaskRoundedFilled.tsx b/src/IconMedicalMaskRoundedFilled.tsx new file mode 100644 index 000000000..8c6cff942 --- /dev/null +++ b/src/IconMedicalMaskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalMaskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalMaskRoundedFilled as default } diff --git a/src/IconMedicalMaskSharpFilled.tsx b/src/IconMedicalMaskSharpFilled.tsx new file mode 100644 index 000000000..d338ba91f --- /dev/null +++ b/src/IconMedicalMaskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalMaskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalMaskSharpFilled as default } diff --git a/src/IconMedicalServicesOutlinedFilled.tsx b/src/IconMedicalServicesOutlinedFilled.tsx new file mode 100644 index 000000000..101553d3b --- /dev/null +++ b/src/IconMedicalServicesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalServicesOutlinedFilled as default } diff --git a/src/IconMedicalServicesRoundedFilled.tsx b/src/IconMedicalServicesRoundedFilled.tsx new file mode 100644 index 000000000..a3f54827f --- /dev/null +++ b/src/IconMedicalServicesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalServicesRoundedFilled as default } diff --git a/src/IconMedicalServicesSharpFilled.tsx b/src/IconMedicalServicesSharpFilled.tsx new file mode 100644 index 000000000..1aac866bc --- /dev/null +++ b/src/IconMedicalServicesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicalServicesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicalServicesSharpFilled as default } diff --git a/src/IconMedicationLiquidOutlinedFilled.tsx b/src/IconMedicationLiquidOutlinedFilled.tsx new file mode 100644 index 000000000..1c0429d78 --- /dev/null +++ b/src/IconMedicationLiquidOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicationLiquidOutlinedFilled as default } diff --git a/src/IconMedicationLiquidRoundedFilled.tsx b/src/IconMedicationLiquidRoundedFilled.tsx new file mode 100644 index 000000000..d3e11c8eb --- /dev/null +++ b/src/IconMedicationLiquidRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicationLiquidRoundedFilled as default } diff --git a/src/IconMedicationLiquidSharpFilled.tsx b/src/IconMedicationLiquidSharpFilled.tsx new file mode 100644 index 000000000..63ef34677 --- /dev/null +++ b/src/IconMedicationLiquidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationLiquidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicationLiquidSharpFilled as default } diff --git a/src/IconMedicationOutlinedFilled.tsx b/src/IconMedicationOutlinedFilled.tsx new file mode 100644 index 000000000..b18310e3e --- /dev/null +++ b/src/IconMedicationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicationOutlinedFilled as default } diff --git a/src/IconMedicationRoundedFilled.tsx b/src/IconMedicationRoundedFilled.tsx new file mode 100644 index 000000000..3e2f213cb --- /dev/null +++ b/src/IconMedicationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicationRoundedFilled as default } diff --git a/src/IconMedicationSharpFilled.tsx b/src/IconMedicationSharpFilled.tsx new file mode 100644 index 000000000..1a53e6d54 --- /dev/null +++ b/src/IconMedicationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMedicationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMedicationSharpFilled as default } diff --git a/src/IconMeetingRoomOutlinedFilled.tsx b/src/IconMeetingRoomOutlinedFilled.tsx new file mode 100644 index 000000000..ff50e765e --- /dev/null +++ b/src/IconMeetingRoomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMeetingRoomOutlinedFilled as default } diff --git a/src/IconMeetingRoomRoundedFilled.tsx b/src/IconMeetingRoomRoundedFilled.tsx new file mode 100644 index 000000000..3ee37a1cf --- /dev/null +++ b/src/IconMeetingRoomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMeetingRoomRoundedFilled as default } diff --git a/src/IconMeetingRoomSharpFilled.tsx b/src/IconMeetingRoomSharpFilled.tsx new file mode 100644 index 000000000..27908b52b --- /dev/null +++ b/src/IconMeetingRoomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMeetingRoomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMeetingRoomSharpFilled as default } diff --git a/src/IconMemoryAltOutlinedFilled.tsx b/src/IconMemoryAltOutlinedFilled.tsx new file mode 100644 index 000000000..33dc38f49 --- /dev/null +++ b/src/IconMemoryAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemoryAltOutlinedFilled as default } diff --git a/src/IconMemoryAltRoundedFilled.tsx b/src/IconMemoryAltRoundedFilled.tsx new file mode 100644 index 000000000..173869269 --- /dev/null +++ b/src/IconMemoryAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemoryAltRoundedFilled as default } diff --git a/src/IconMemoryAltSharpFilled.tsx b/src/IconMemoryAltSharpFilled.tsx new file mode 100644 index 000000000..f174963cc --- /dev/null +++ b/src/IconMemoryAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemoryAltSharpFilled as default } diff --git a/src/IconMemoryOutlinedFilled.tsx b/src/IconMemoryOutlinedFilled.tsx new file mode 100644 index 000000000..2ee3e15cb --- /dev/null +++ b/src/IconMemoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemoryOutlinedFilled as default } diff --git a/src/IconMemoryRoundedFilled.tsx b/src/IconMemoryRoundedFilled.tsx new file mode 100644 index 000000000..489e2042d --- /dev/null +++ b/src/IconMemoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemoryRoundedFilled as default } diff --git a/src/IconMemorySharpFilled.tsx b/src/IconMemorySharpFilled.tsx new file mode 100644 index 000000000..c7261d08a --- /dev/null +++ b/src/IconMemorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMemorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMemorySharpFilled as default } diff --git a/src/IconMenstrualHealthOutlinedFilled.tsx b/src/IconMenstrualHealthOutlinedFilled.tsx new file mode 100644 index 000000000..5901e9ab8 --- /dev/null +++ b/src/IconMenstrualHealthOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenstrualHealthOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMenstrualHealthOutlinedFilled as default } diff --git a/src/IconMenstrualHealthRoundedFilled.tsx b/src/IconMenstrualHealthRoundedFilled.tsx new file mode 100644 index 000000000..3ba4ae2c9 --- /dev/null +++ b/src/IconMenstrualHealthRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenstrualHealthRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMenstrualHealthRoundedFilled as default } diff --git a/src/IconMenstrualHealthSharpFilled.tsx b/src/IconMenstrualHealthSharpFilled.tsx new file mode 100644 index 000000000..4bd538c59 --- /dev/null +++ b/src/IconMenstrualHealthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenstrualHealthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenstrualHealthSharpFilled as default } diff --git a/src/IconMenuBookOutlinedFilled.tsx b/src/IconMenuBookOutlinedFilled.tsx new file mode 100644 index 000000000..88c1a6035 --- /dev/null +++ b/src/IconMenuBookOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuBookOutlinedFilled as default } diff --git a/src/IconMenuBookRoundedFilled.tsx b/src/IconMenuBookRoundedFilled.tsx new file mode 100644 index 000000000..68200e1fc --- /dev/null +++ b/src/IconMenuBookRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuBookRoundedFilled as default } diff --git a/src/IconMenuBookSharpFilled.tsx b/src/IconMenuBookSharpFilled.tsx new file mode 100644 index 000000000..33eb618bf --- /dev/null +++ b/src/IconMenuBookSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuBookSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuBookSharpFilled as default } diff --git a/src/IconMenuOpenOutlinedFilled.tsx b/src/IconMenuOpenOutlinedFilled.tsx new file mode 100644 index 000000000..96723d07f --- /dev/null +++ b/src/IconMenuOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuOpenOutlinedFilled as default } diff --git a/src/IconMenuOpenRoundedFilled.tsx b/src/IconMenuOpenRoundedFilled.tsx new file mode 100644 index 000000000..4fd2e036a --- /dev/null +++ b/src/IconMenuOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuOpenRoundedFilled as default } diff --git a/src/IconMenuOpenSharpFilled.tsx b/src/IconMenuOpenSharpFilled.tsx new file mode 100644 index 000000000..ebcb3d05a --- /dev/null +++ b/src/IconMenuOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuOpenSharpFilled as default } diff --git a/src/IconMenuOutlinedFilled.tsx b/src/IconMenuOutlinedFilled.tsx new file mode 100644 index 000000000..f5f708028 --- /dev/null +++ b/src/IconMenuOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuOutlinedFilled as default } diff --git a/src/IconMenuRoundedFilled.tsx b/src/IconMenuRoundedFilled.tsx new file mode 100644 index 000000000..2b81bdd32 --- /dev/null +++ b/src/IconMenuRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuRoundedFilled as default } diff --git a/src/IconMenuSharpFilled.tsx b/src/IconMenuSharpFilled.tsx new file mode 100644 index 000000000..64f9f0727 --- /dev/null +++ b/src/IconMenuSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMenuSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMenuSharpFilled as default } diff --git a/src/IconMergeOutlinedFilled.tsx b/src/IconMergeOutlinedFilled.tsx new file mode 100644 index 000000000..077f1fccf --- /dev/null +++ b/src/IconMergeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeOutlinedFilled as default } diff --git a/src/IconMergeRoundedFilled.tsx b/src/IconMergeRoundedFilled.tsx new file mode 100644 index 000000000..9bac6ad57 --- /dev/null +++ b/src/IconMergeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeRoundedFilled as default } diff --git a/src/IconMergeSharpFilled.tsx b/src/IconMergeSharpFilled.tsx new file mode 100644 index 000000000..bd2eab63b --- /dev/null +++ b/src/IconMergeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeSharpFilled as default } diff --git a/src/IconMergeTypeOutlinedFilled.tsx b/src/IconMergeTypeOutlinedFilled.tsx new file mode 100644 index 000000000..cb50500f9 --- /dev/null +++ b/src/IconMergeTypeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeTypeOutlinedFilled as default } diff --git a/src/IconMergeTypeRoundedFilled.tsx b/src/IconMergeTypeRoundedFilled.tsx new file mode 100644 index 000000000..3a13e41c3 --- /dev/null +++ b/src/IconMergeTypeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeTypeRoundedFilled as default } diff --git a/src/IconMergeTypeSharpFilled.tsx b/src/IconMergeTypeSharpFilled.tsx new file mode 100644 index 000000000..7b4b11244 --- /dev/null +++ b/src/IconMergeTypeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMergeTypeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMergeTypeSharpFilled as default } diff --git a/src/IconMetabolismOutlinedFilled.tsx b/src/IconMetabolismOutlinedFilled.tsx new file mode 100644 index 000000000..f1a833e74 --- /dev/null +++ b/src/IconMetabolismOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMetabolismOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMetabolismOutlinedFilled as default } diff --git a/src/IconMetabolismRoundedFilled.tsx b/src/IconMetabolismRoundedFilled.tsx new file mode 100644 index 000000000..ec1afe4cc --- /dev/null +++ b/src/IconMetabolismRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMetabolismRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMetabolismRoundedFilled as default } diff --git a/src/IconMetabolismSharpFilled.tsx b/src/IconMetabolismSharpFilled.tsx new file mode 100644 index 000000000..27d41077a --- /dev/null +++ b/src/IconMetabolismSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMetabolismSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMetabolismSharpFilled as default } diff --git a/src/IconMetroOutlinedFilled.tsx b/src/IconMetroOutlinedFilled.tsx new file mode 100644 index 000000000..122bc8ab7 --- /dev/null +++ b/src/IconMetroOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMetroOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMetroOutlinedFilled as default } diff --git a/src/IconMetroRoundedFilled.tsx b/src/IconMetroRoundedFilled.tsx new file mode 100644 index 000000000..12c51c25e --- /dev/null +++ b/src/IconMetroRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMetroRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMetroRoundedFilled as default } diff --git a/src/IconMetroSharpFilled.tsx b/src/IconMetroSharpFilled.tsx new file mode 100644 index 000000000..1da2ae363 --- /dev/null +++ b/src/IconMetroSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMetroSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMetroSharpFilled as default } diff --git a/src/IconMfgNestYaleLockOutlinedFilled.tsx b/src/IconMfgNestYaleLockOutlinedFilled.tsx new file mode 100644 index 000000000..08e0fd53f --- /dev/null +++ b/src/IconMfgNestYaleLockOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMfgNestYaleLockOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMfgNestYaleLockOutlinedFilled as default } diff --git a/src/IconMfgNestYaleLockRoundedFilled.tsx b/src/IconMfgNestYaleLockRoundedFilled.tsx new file mode 100644 index 000000000..42288a091 --- /dev/null +++ b/src/IconMfgNestYaleLockRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMfgNestYaleLockRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMfgNestYaleLockRoundedFilled as default } diff --git a/src/IconMfgNestYaleLockSharpFilled.tsx b/src/IconMfgNestYaleLockSharpFilled.tsx new file mode 100644 index 000000000..598ae54f3 --- /dev/null +++ b/src/IconMfgNestYaleLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMfgNestYaleLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMfgNestYaleLockSharpFilled as default } diff --git a/src/IconMicDoubleOutlinedFilled.tsx b/src/IconMicDoubleOutlinedFilled.tsx new file mode 100644 index 000000000..3e0b38e3f --- /dev/null +++ b/src/IconMicDoubleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicDoubleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicDoubleOutlinedFilled as default } diff --git a/src/IconMicDoubleRoundedFilled.tsx b/src/IconMicDoubleRoundedFilled.tsx new file mode 100644 index 000000000..6f90cbde2 --- /dev/null +++ b/src/IconMicDoubleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicDoubleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicDoubleRoundedFilled as default } diff --git a/src/IconMicDoubleSharpFilled.tsx b/src/IconMicDoubleSharpFilled.tsx new file mode 100644 index 000000000..c63be13e0 --- /dev/null +++ b/src/IconMicDoubleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicDoubleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicDoubleSharpFilled as default } diff --git a/src/IconMicExternalOffOutlinedFilled.tsx b/src/IconMicExternalOffOutlinedFilled.tsx new file mode 100644 index 000000000..0327d1768 --- /dev/null +++ b/src/IconMicExternalOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMicExternalOffOutlinedFilled as default } diff --git a/src/IconMicExternalOffRoundedFilled.tsx b/src/IconMicExternalOffRoundedFilled.tsx new file mode 100644 index 000000000..977b0a9fe --- /dev/null +++ b/src/IconMicExternalOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicExternalOffRoundedFilled as default } diff --git a/src/IconMicExternalOffSharpFilled.tsx b/src/IconMicExternalOffSharpFilled.tsx new file mode 100644 index 000000000..4499e6538 --- /dev/null +++ b/src/IconMicExternalOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicExternalOffSharpFilled as default } diff --git a/src/IconMicExternalOnOutlinedFilled.tsx b/src/IconMicExternalOnOutlinedFilled.tsx new file mode 100644 index 000000000..56abba491 --- /dev/null +++ b/src/IconMicExternalOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicExternalOnOutlinedFilled as default } diff --git a/src/IconMicExternalOnRoundedFilled.tsx b/src/IconMicExternalOnRoundedFilled.tsx new file mode 100644 index 000000000..0b13cdb40 --- /dev/null +++ b/src/IconMicExternalOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicExternalOnRoundedFilled as default } diff --git a/src/IconMicExternalOnSharpFilled.tsx b/src/IconMicExternalOnSharpFilled.tsx new file mode 100644 index 000000000..9d1a35404 --- /dev/null +++ b/src/IconMicExternalOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicExternalOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicExternalOnSharpFilled as default } diff --git a/src/IconMicOffOutlinedFilled.tsx b/src/IconMicOffOutlinedFilled.tsx new file mode 100644 index 000000000..d5a791197 --- /dev/null +++ b/src/IconMicOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicOffOutlinedFilled as default } diff --git a/src/IconMicOffRoundedFilled.tsx b/src/IconMicOffRoundedFilled.tsx new file mode 100644 index 000000000..8719b009b --- /dev/null +++ b/src/IconMicOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicOffRoundedFilled as default } diff --git a/src/IconMicOffSharpFilled.tsx b/src/IconMicOffSharpFilled.tsx new file mode 100644 index 000000000..53b581c9e --- /dev/null +++ b/src/IconMicOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicOffSharpFilled as default } diff --git a/src/IconMicOutlinedFilled.tsx b/src/IconMicOutlinedFilled.tsx new file mode 100644 index 000000000..b5398b715 --- /dev/null +++ b/src/IconMicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicOutlinedFilled as default } diff --git a/src/IconMicRoundedFilled.tsx b/src/IconMicRoundedFilled.tsx new file mode 100644 index 000000000..f2ac30e3a --- /dev/null +++ b/src/IconMicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicRoundedFilled as default } diff --git a/src/IconMicSharpFilled.tsx b/src/IconMicSharpFilled.tsx new file mode 100644 index 000000000..0322e0218 --- /dev/null +++ b/src/IconMicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicSharpFilled as default } diff --git a/src/IconMicrobiologyOutlinedFilled.tsx b/src/IconMicrobiologyOutlinedFilled.tsx new file mode 100644 index 000000000..b3036dc80 --- /dev/null +++ b/src/IconMicrobiologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrobiologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrobiologyOutlinedFilled as default } diff --git a/src/IconMicrobiologyRoundedFilled.tsx b/src/IconMicrobiologyRoundedFilled.tsx new file mode 100644 index 000000000..56b857009 --- /dev/null +++ b/src/IconMicrobiologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrobiologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrobiologyRoundedFilled as default } diff --git a/src/IconMicrobiologySharpFilled.tsx b/src/IconMicrobiologySharpFilled.tsx new file mode 100644 index 000000000..03ff4fc19 --- /dev/null +++ b/src/IconMicrobiologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrobiologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrobiologySharpFilled as default } diff --git a/src/IconMicrowaveGenOutlinedFilled.tsx b/src/IconMicrowaveGenOutlinedFilled.tsx new file mode 100644 index 000000000..14f3b182b --- /dev/null +++ b/src/IconMicrowaveGenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveGenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrowaveGenOutlinedFilled as default } diff --git a/src/IconMicrowaveGenRoundedFilled.tsx b/src/IconMicrowaveGenRoundedFilled.tsx new file mode 100644 index 000000000..95f728319 --- /dev/null +++ b/src/IconMicrowaveGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrowaveGenRoundedFilled as default } diff --git a/src/IconMicrowaveGenSharpFilled.tsx b/src/IconMicrowaveGenSharpFilled.tsx new file mode 100644 index 000000000..a1cc2034f --- /dev/null +++ b/src/IconMicrowaveGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrowaveGenSharpFilled as default } diff --git a/src/IconMicrowaveOutlinedFilled.tsx b/src/IconMicrowaveOutlinedFilled.tsx new file mode 100644 index 000000000..e7976d16d --- /dev/null +++ b/src/IconMicrowaveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrowaveOutlinedFilled as default } diff --git a/src/IconMicrowaveRoundedFilled.tsx b/src/IconMicrowaveRoundedFilled.tsx new file mode 100644 index 000000000..4885d7f16 --- /dev/null +++ b/src/IconMicrowaveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrowaveRoundedFilled as default } diff --git a/src/IconMicrowaveSharpFilled.tsx b/src/IconMicrowaveSharpFilled.tsx new file mode 100644 index 000000000..cffecce53 --- /dev/null +++ b/src/IconMicrowaveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMicrowaveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMicrowaveSharpFilled as default } diff --git a/src/IconMilitaryTechOutlinedFilled.tsx b/src/IconMilitaryTechOutlinedFilled.tsx new file mode 100644 index 000000000..172acc01a --- /dev/null +++ b/src/IconMilitaryTechOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMilitaryTechOutlinedFilled as default } diff --git a/src/IconMilitaryTechRoundedFilled.tsx b/src/IconMilitaryTechRoundedFilled.tsx new file mode 100644 index 000000000..09936b1b6 --- /dev/null +++ b/src/IconMilitaryTechRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMilitaryTechRoundedFilled as default } diff --git a/src/IconMilitaryTechSharpFilled.tsx b/src/IconMilitaryTechSharpFilled.tsx new file mode 100644 index 000000000..9de1e4c94 --- /dev/null +++ b/src/IconMilitaryTechSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMilitaryTechSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMilitaryTechSharpFilled as default } diff --git a/src/IconMimoDisconnectOutlinedFilled.tsx b/src/IconMimoDisconnectOutlinedFilled.tsx new file mode 100644 index 000000000..5b0a3c66c --- /dev/null +++ b/src/IconMimoDisconnectOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMimoDisconnectOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMimoDisconnectOutlinedFilled as default } diff --git a/src/IconMimoDisconnectRoundedFilled.tsx b/src/IconMimoDisconnectRoundedFilled.tsx new file mode 100644 index 000000000..cfafd7e12 --- /dev/null +++ b/src/IconMimoDisconnectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMimoDisconnectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMimoDisconnectRoundedFilled as default } diff --git a/src/IconMimoDisconnectSharpFilled.tsx b/src/IconMimoDisconnectSharpFilled.tsx new file mode 100644 index 000000000..fb298b180 --- /dev/null +++ b/src/IconMimoDisconnectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMimoDisconnectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMimoDisconnectSharpFilled as default } diff --git a/src/IconMimoOutlinedFilled.tsx b/src/IconMimoOutlinedFilled.tsx new file mode 100644 index 000000000..545598062 --- /dev/null +++ b/src/IconMimoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMimoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMimoOutlinedFilled as default } diff --git a/src/IconMimoRoundedFilled.tsx b/src/IconMimoRoundedFilled.tsx new file mode 100644 index 000000000..c530f688b --- /dev/null +++ b/src/IconMimoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMimoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMimoRoundedFilled as default } diff --git a/src/IconMimoSharpFilled.tsx b/src/IconMimoSharpFilled.tsx new file mode 100644 index 000000000..8410ddb7c --- /dev/null +++ b/src/IconMimoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMimoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMimoSharpFilled as default } diff --git a/src/IconMindfulnessOutlinedFilled.tsx b/src/IconMindfulnessOutlinedFilled.tsx new file mode 100644 index 000000000..d452ac20a --- /dev/null +++ b/src/IconMindfulnessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMindfulnessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMindfulnessOutlinedFilled as default } diff --git a/src/IconMindfulnessRoundedFilled.tsx b/src/IconMindfulnessRoundedFilled.tsx new file mode 100644 index 000000000..11cebb6c6 --- /dev/null +++ b/src/IconMindfulnessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMindfulnessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMindfulnessRoundedFilled as default } diff --git a/src/IconMindfulnessSharpFilled.tsx b/src/IconMindfulnessSharpFilled.tsx new file mode 100644 index 000000000..746cf69fd --- /dev/null +++ b/src/IconMindfulnessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMindfulnessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMindfulnessSharpFilled as default } diff --git a/src/IconMinimizeOutlinedFilled.tsx b/src/IconMinimizeOutlinedFilled.tsx new file mode 100644 index 000000000..db2068aba --- /dev/null +++ b/src/IconMinimizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMinimizeOutlinedFilled as default } diff --git a/src/IconMinimizeRoundedFilled.tsx b/src/IconMinimizeRoundedFilled.tsx new file mode 100644 index 000000000..ba43f1afc --- /dev/null +++ b/src/IconMinimizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMinimizeRoundedFilled as default } diff --git a/src/IconMinimizeSharpFilled.tsx b/src/IconMinimizeSharpFilled.tsx new file mode 100644 index 000000000..b4fae2c8d --- /dev/null +++ b/src/IconMinimizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinimizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMinimizeSharpFilled as default } diff --git a/src/IconMinorCrashOutlinedFilled.tsx b/src/IconMinorCrashOutlinedFilled.tsx new file mode 100644 index 000000000..0cccd9a36 --- /dev/null +++ b/src/IconMinorCrashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMinorCrashOutlinedFilled as default } diff --git a/src/IconMinorCrashRoundedFilled.tsx b/src/IconMinorCrashRoundedFilled.tsx new file mode 100644 index 000000000..046c0bc0a --- /dev/null +++ b/src/IconMinorCrashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMinorCrashRoundedFilled as default } diff --git a/src/IconMinorCrashSharpFilled.tsx b/src/IconMinorCrashSharpFilled.tsx new file mode 100644 index 000000000..e2da23b75 --- /dev/null +++ b/src/IconMinorCrashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMinorCrashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMinorCrashSharpFilled as default } diff --git a/src/IconMintmarkOutlinedFilled.tsx b/src/IconMintmarkOutlinedFilled.tsx new file mode 100644 index 000000000..e93f33295 --- /dev/null +++ b/src/IconMintmarkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMintmarkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMintmarkOutlinedFilled as default } diff --git a/src/IconMintmarkRoundedFilled.tsx b/src/IconMintmarkRoundedFilled.tsx new file mode 100644 index 000000000..aa297d538 --- /dev/null +++ b/src/IconMintmarkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMintmarkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMintmarkRoundedFilled as default } diff --git a/src/IconMintmarkSharpFilled.tsx b/src/IconMintmarkSharpFilled.tsx new file mode 100644 index 000000000..66dcac0e7 --- /dev/null +++ b/src/IconMintmarkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMintmarkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMintmarkSharpFilled as default } diff --git a/src/IconMissedVideoCallOutlinedFilled.tsx b/src/IconMissedVideoCallOutlinedFilled.tsx new file mode 100644 index 000000000..7737a1a4c --- /dev/null +++ b/src/IconMissedVideoCallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMissedVideoCallOutlinedFilled as default } diff --git a/src/IconMissedVideoCallRoundedFilled.tsx b/src/IconMissedVideoCallRoundedFilled.tsx new file mode 100644 index 000000000..debbcf4bc --- /dev/null +++ b/src/IconMissedVideoCallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMissedVideoCallRoundedFilled as default } diff --git a/src/IconMissedVideoCallSharpFilled.tsx b/src/IconMissedVideoCallSharpFilled.tsx new file mode 100644 index 000000000..8bf12c5f2 --- /dev/null +++ b/src/IconMissedVideoCallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissedVideoCallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMissedVideoCallSharpFilled as default } diff --git a/src/IconMissingControllerOutlinedFilled.tsx b/src/IconMissingControllerOutlinedFilled.tsx new file mode 100644 index 000000000..a334fb0fd --- /dev/null +++ b/src/IconMissingControllerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissingControllerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMissingControllerOutlinedFilled as default } diff --git a/src/IconMissingControllerRoundedFilled.tsx b/src/IconMissingControllerRoundedFilled.tsx new file mode 100644 index 000000000..482e6df4c --- /dev/null +++ b/src/IconMissingControllerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissingControllerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMissingControllerRoundedFilled as default } diff --git a/src/IconMissingControllerSharpFilled.tsx b/src/IconMissingControllerSharpFilled.tsx new file mode 100644 index 000000000..050b73bd9 --- /dev/null +++ b/src/IconMissingControllerSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMissingControllerSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMissingControllerSharpFilled as default } diff --git a/src/IconMistOutlinedFilled.tsx b/src/IconMistOutlinedFilled.tsx new file mode 100644 index 000000000..4d5333ed6 --- /dev/null +++ b/src/IconMistOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMistOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMistOutlinedFilled as default } diff --git a/src/IconMistRoundedFilled.tsx b/src/IconMistRoundedFilled.tsx new file mode 100644 index 000000000..847871d97 --- /dev/null +++ b/src/IconMistRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMistRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMistRoundedFilled as default } diff --git a/src/IconMistSharpFilled.tsx b/src/IconMistSharpFilled.tsx new file mode 100644 index 000000000..4258fe797 --- /dev/null +++ b/src/IconMistSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMistSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMistSharpFilled as default } diff --git a/src/IconMitreOutlinedFilled.tsx b/src/IconMitreOutlinedFilled.tsx new file mode 100644 index 000000000..1e307d3a2 --- /dev/null +++ b/src/IconMitreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMitreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMitreOutlinedFilled as default } diff --git a/src/IconMitreRoundedFilled.tsx b/src/IconMitreRoundedFilled.tsx new file mode 100644 index 000000000..3d7373d27 --- /dev/null +++ b/src/IconMitreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMitreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMitreRoundedFilled as default } diff --git a/src/IconMitreSharpFilled.tsx b/src/IconMitreSharpFilled.tsx new file mode 100644 index 000000000..87c752b1c --- /dev/null +++ b/src/IconMitreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMitreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMitreSharpFilled as default } diff --git a/src/IconMixtureMedOutlinedFilled.tsx b/src/IconMixtureMedOutlinedFilled.tsx new file mode 100644 index 000000000..edaf2818f --- /dev/null +++ b/src/IconMixtureMedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMixtureMedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMixtureMedOutlinedFilled as default } diff --git a/src/IconMixtureMedRoundedFilled.tsx b/src/IconMixtureMedRoundedFilled.tsx new file mode 100644 index 000000000..9571e2f2a --- /dev/null +++ b/src/IconMixtureMedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMixtureMedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMixtureMedRoundedFilled as default } diff --git a/src/IconMixtureMedSharpFilled.tsx b/src/IconMixtureMedSharpFilled.tsx new file mode 100644 index 000000000..d0f580955 --- /dev/null +++ b/src/IconMixtureMedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMixtureMedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMixtureMedSharpFilled as default } diff --git a/src/IconMmsOutlinedFilled.tsx b/src/IconMmsOutlinedFilled.tsx new file mode 100644 index 000000000..ae07512b6 --- /dev/null +++ b/src/IconMmsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMmsOutlinedFilled as default } diff --git a/src/IconMmsRoundedFilled.tsx b/src/IconMmsRoundedFilled.tsx new file mode 100644 index 000000000..9abf40c1d --- /dev/null +++ b/src/IconMmsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMmsRoundedFilled as default } diff --git a/src/IconMmsSharpFilled.tsx b/src/IconMmsSharpFilled.tsx new file mode 100644 index 000000000..f5d0207cd --- /dev/null +++ b/src/IconMmsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMmsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMmsSharpFilled as default } diff --git a/src/IconMobileFriendlyOutlinedFilled.tsx b/src/IconMobileFriendlyOutlinedFilled.tsx new file mode 100644 index 000000000..c182b6c50 --- /dev/null +++ b/src/IconMobileFriendlyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileFriendlyOutlinedFilled as default } diff --git a/src/IconMobileFriendlyRoundedFilled.tsx b/src/IconMobileFriendlyRoundedFilled.tsx new file mode 100644 index 000000000..8d62d1d15 --- /dev/null +++ b/src/IconMobileFriendlyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileFriendlyRoundedFilled as default } diff --git a/src/IconMobileFriendlySharpFilled.tsx b/src/IconMobileFriendlySharpFilled.tsx new file mode 100644 index 000000000..e01ffb5ee --- /dev/null +++ b/src/IconMobileFriendlySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileFriendlySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileFriendlySharpFilled as default } diff --git a/src/IconMobileOffOutlinedFilled.tsx b/src/IconMobileOffOutlinedFilled.tsx new file mode 100644 index 000000000..16f864896 --- /dev/null +++ b/src/IconMobileOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileOffOutlinedFilled as default } diff --git a/src/IconMobileOffRoundedFilled.tsx b/src/IconMobileOffRoundedFilled.tsx new file mode 100644 index 000000000..a834a9557 --- /dev/null +++ b/src/IconMobileOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileOffRoundedFilled as default } diff --git a/src/IconMobileOffSharpFilled.tsx b/src/IconMobileOffSharpFilled.tsx new file mode 100644 index 000000000..a717a7a93 --- /dev/null +++ b/src/IconMobileOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileOffSharpFilled as default } diff --git a/src/IconMobileScreenShareOutlinedFilled.tsx b/src/IconMobileScreenShareOutlinedFilled.tsx new file mode 100644 index 000000000..11068d1e8 --- /dev/null +++ b/src/IconMobileScreenShareOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileScreenShareOutlinedFilled as default } diff --git a/src/IconMobileScreenShareRoundedFilled.tsx b/src/IconMobileScreenShareRoundedFilled.tsx new file mode 100644 index 000000000..5b31da449 --- /dev/null +++ b/src/IconMobileScreenShareRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileScreenShareRoundedFilled as default } diff --git a/src/IconMobileScreenShareSharpFilled.tsx b/src/IconMobileScreenShareSharpFilled.tsx new file mode 100644 index 000000000..becb2ec8a --- /dev/null +++ b/src/IconMobileScreenShareSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobileScreenShareSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMobileScreenShareSharpFilled as default } diff --git a/src/IconMobiledataOffOutlinedFilled.tsx b/src/IconMobiledataOffOutlinedFilled.tsx new file mode 100644 index 000000000..4352c566b --- /dev/null +++ b/src/IconMobiledataOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobiledataOffOutlinedFilled as default } diff --git a/src/IconMobiledataOffRoundedFilled.tsx b/src/IconMobiledataOffRoundedFilled.tsx new file mode 100644 index 000000000..9dc6baadd --- /dev/null +++ b/src/IconMobiledataOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobiledataOffRoundedFilled as default } diff --git a/src/IconMobiledataOffSharpFilled.tsx b/src/IconMobiledataOffSharpFilled.tsx new file mode 100644 index 000000000..e965eabc0 --- /dev/null +++ b/src/IconMobiledataOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMobiledataOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMobiledataOffSharpFilled as default } diff --git a/src/IconModeCommentOutlinedFilled.tsx b/src/IconModeCommentOutlinedFilled.tsx new file mode 100644 index 000000000..b6512c608 --- /dev/null +++ b/src/IconModeCommentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCommentOutlinedFilled as default } diff --git a/src/IconModeCommentRoundedFilled.tsx b/src/IconModeCommentRoundedFilled.tsx new file mode 100644 index 000000000..7fa58d884 --- /dev/null +++ b/src/IconModeCommentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCommentRoundedFilled as default } diff --git a/src/IconModeCommentSharpFilled.tsx b/src/IconModeCommentSharpFilled.tsx new file mode 100644 index 000000000..c08cbb321 --- /dev/null +++ b/src/IconModeCommentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCommentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCommentSharpFilled as default } diff --git a/src/IconModeCoolOffOutlinedFilled.tsx b/src/IconModeCoolOffOutlinedFilled.tsx new file mode 100644 index 000000000..ba3ff1eaa --- /dev/null +++ b/src/IconModeCoolOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCoolOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCoolOffOutlinedFilled as default } diff --git a/src/IconModeCoolOffRoundedFilled.tsx b/src/IconModeCoolOffRoundedFilled.tsx new file mode 100644 index 000000000..f91b62252 --- /dev/null +++ b/src/IconModeCoolOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCoolOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCoolOffRoundedFilled as default } diff --git a/src/IconModeCoolOffSharpFilled.tsx b/src/IconModeCoolOffSharpFilled.tsx new file mode 100644 index 000000000..f5258b8b6 --- /dev/null +++ b/src/IconModeCoolOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCoolOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCoolOffSharpFilled as default } diff --git a/src/IconModeCoolOutlinedFilled.tsx b/src/IconModeCoolOutlinedFilled.tsx new file mode 100644 index 000000000..bf1bb4598 --- /dev/null +++ b/src/IconModeCoolOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCoolOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCoolOutlinedFilled as default } diff --git a/src/IconModeCoolRoundedFilled.tsx b/src/IconModeCoolRoundedFilled.tsx new file mode 100644 index 000000000..08529786b --- /dev/null +++ b/src/IconModeCoolRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCoolRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCoolRoundedFilled as default } diff --git a/src/IconModeCoolSharpFilled.tsx b/src/IconModeCoolSharpFilled.tsx new file mode 100644 index 000000000..9789a536e --- /dev/null +++ b/src/IconModeCoolSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeCoolSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeCoolSharpFilled as default } diff --git a/src/IconModeDualOutlinedFilled.tsx b/src/IconModeDualOutlinedFilled.tsx new file mode 100644 index 000000000..b3428ab70 --- /dev/null +++ b/src/IconModeDualOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeDualOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeDualOutlinedFilled as default } diff --git a/src/IconModeDualRoundedFilled.tsx b/src/IconModeDualRoundedFilled.tsx new file mode 100644 index 000000000..b626a8ed1 --- /dev/null +++ b/src/IconModeDualRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeDualRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeDualRoundedFilled as default } diff --git a/src/IconModeDualSharpFilled.tsx b/src/IconModeDualSharpFilled.tsx new file mode 100644 index 000000000..7e1ad4436 --- /dev/null +++ b/src/IconModeDualSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeDualSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeDualSharpFilled as default } diff --git a/src/IconModeFanOffOutlinedFilled.tsx b/src/IconModeFanOffOutlinedFilled.tsx new file mode 100644 index 000000000..7c3460b8c --- /dev/null +++ b/src/IconModeFanOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeFanOffOutlinedFilled as default } diff --git a/src/IconModeFanOffRoundedFilled.tsx b/src/IconModeFanOffRoundedFilled.tsx new file mode 100644 index 000000000..49f6ebdf9 --- /dev/null +++ b/src/IconModeFanOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeFanOffRoundedFilled as default } diff --git a/src/IconModeFanOffSharpFilled.tsx b/src/IconModeFanOffSharpFilled.tsx new file mode 100644 index 000000000..e093a1272 --- /dev/null +++ b/src/IconModeFanOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeFanOffSharpFilled as default } diff --git a/src/IconModeFanOutlinedFilled.tsx b/src/IconModeFanOutlinedFilled.tsx new file mode 100644 index 000000000..ae4385599 --- /dev/null +++ b/src/IconModeFanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeFanOutlinedFilled as default } diff --git a/src/IconModeFanRoundedFilled.tsx b/src/IconModeFanRoundedFilled.tsx new file mode 100644 index 000000000..69594a0ce --- /dev/null +++ b/src/IconModeFanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeFanRoundedFilled as default } diff --git a/src/IconModeFanSharpFilled.tsx b/src/IconModeFanSharpFilled.tsx new file mode 100644 index 000000000..cbbc740a4 --- /dev/null +++ b/src/IconModeFanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeFanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeFanSharpFilled as default } diff --git a/src/IconModeHeatCoolOutlinedFilled.tsx b/src/IconModeHeatCoolOutlinedFilled.tsx new file mode 100644 index 000000000..59a255886 --- /dev/null +++ b/src/IconModeHeatCoolOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatCoolOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatCoolOutlinedFilled as default } diff --git a/src/IconModeHeatCoolRoundedFilled.tsx b/src/IconModeHeatCoolRoundedFilled.tsx new file mode 100644 index 000000000..260f0b3a9 --- /dev/null +++ b/src/IconModeHeatCoolRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatCoolRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatCoolRoundedFilled as default } diff --git a/src/IconModeHeatCoolSharpFilled.tsx b/src/IconModeHeatCoolSharpFilled.tsx new file mode 100644 index 000000000..20b3ed02d --- /dev/null +++ b/src/IconModeHeatCoolSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatCoolSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatCoolSharpFilled as default } diff --git a/src/IconModeHeatOffOutlinedFilled.tsx b/src/IconModeHeatOffOutlinedFilled.tsx new file mode 100644 index 000000000..cc00409b3 --- /dev/null +++ b/src/IconModeHeatOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatOffOutlinedFilled as default } diff --git a/src/IconModeHeatOffRoundedFilled.tsx b/src/IconModeHeatOffRoundedFilled.tsx new file mode 100644 index 000000000..dc9ee7318 --- /dev/null +++ b/src/IconModeHeatOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatOffRoundedFilled as default } diff --git a/src/IconModeHeatOffSharpFilled.tsx b/src/IconModeHeatOffSharpFilled.tsx new file mode 100644 index 000000000..f669434f6 --- /dev/null +++ b/src/IconModeHeatOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatOffSharpFilled as default } diff --git a/src/IconModeHeatOutlinedFilled.tsx b/src/IconModeHeatOutlinedFilled.tsx new file mode 100644 index 000000000..ad176b3ba --- /dev/null +++ b/src/IconModeHeatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatOutlinedFilled as default } diff --git a/src/IconModeHeatRoundedFilled.tsx b/src/IconModeHeatRoundedFilled.tsx new file mode 100644 index 000000000..c5183f552 --- /dev/null +++ b/src/IconModeHeatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatRoundedFilled as default } diff --git a/src/IconModeHeatSharpFilled.tsx b/src/IconModeHeatSharpFilled.tsx new file mode 100644 index 000000000..f1005dbb2 --- /dev/null +++ b/src/IconModeHeatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeHeatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeHeatSharpFilled as default } diff --git a/src/IconModeNightOutlinedFilled.tsx b/src/IconModeNightOutlinedFilled.tsx new file mode 100644 index 000000000..5629054a9 --- /dev/null +++ b/src/IconModeNightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeNightOutlinedFilled as default } diff --git a/src/IconModeNightRoundedFilled.tsx b/src/IconModeNightRoundedFilled.tsx new file mode 100644 index 000000000..4754a554b --- /dev/null +++ b/src/IconModeNightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeNightRoundedFilled as default } diff --git a/src/IconModeNightSharpFilled.tsx b/src/IconModeNightSharpFilled.tsx new file mode 100644 index 000000000..b79fbe359 --- /dev/null +++ b/src/IconModeNightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeNightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeNightSharpFilled as default } diff --git a/src/IconModeOfTravelOutlinedFilled.tsx b/src/IconModeOfTravelOutlinedFilled.tsx new file mode 100644 index 000000000..9a6202e54 --- /dev/null +++ b/src/IconModeOfTravelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeOfTravelOutlinedFilled as default } diff --git a/src/IconModeOfTravelRoundedFilled.tsx b/src/IconModeOfTravelRoundedFilled.tsx new file mode 100644 index 000000000..b9f3b0e09 --- /dev/null +++ b/src/IconModeOfTravelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeOfTravelRoundedFilled as default } diff --git a/src/IconModeOfTravelSharpFilled.tsx b/src/IconModeOfTravelSharpFilled.tsx new file mode 100644 index 000000000..7dbea6d8c --- /dev/null +++ b/src/IconModeOfTravelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOfTravelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeOfTravelSharpFilled as default } diff --git a/src/IconModeOffOnOutlinedFilled.tsx b/src/IconModeOffOnOutlinedFilled.tsx new file mode 100644 index 000000000..c94a761af --- /dev/null +++ b/src/IconModeOffOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOffOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeOffOnOutlinedFilled as default } diff --git a/src/IconModeOffOnRoundedFilled.tsx b/src/IconModeOffOnRoundedFilled.tsx new file mode 100644 index 000000000..d700dba08 --- /dev/null +++ b/src/IconModeOffOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOffOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeOffOnRoundedFilled as default } diff --git a/src/IconModeOffOnSharpFilled.tsx b/src/IconModeOffOnSharpFilled.tsx new file mode 100644 index 000000000..1ba0bb870 --- /dev/null +++ b/src/IconModeOffOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeOffOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeOffOnSharpFilled as default } diff --git a/src/IconModeStandbyOutlinedFilled.tsx b/src/IconModeStandbyOutlinedFilled.tsx new file mode 100644 index 000000000..662b317cf --- /dev/null +++ b/src/IconModeStandbyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeStandbyOutlinedFilled as default } diff --git a/src/IconModeStandbyRoundedFilled.tsx b/src/IconModeStandbyRoundedFilled.tsx new file mode 100644 index 000000000..8c6beb583 --- /dev/null +++ b/src/IconModeStandbyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeStandbyRoundedFilled as default } diff --git a/src/IconModeStandbySharpFilled.tsx b/src/IconModeStandbySharpFilled.tsx new file mode 100644 index 000000000..8b8fadd2f --- /dev/null +++ b/src/IconModeStandbySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModeStandbySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModeStandbySharpFilled as default } diff --git a/src/IconModelTrainingOutlinedFilled.tsx b/src/IconModelTrainingOutlinedFilled.tsx new file mode 100644 index 000000000..20f04999b --- /dev/null +++ b/src/IconModelTrainingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModelTrainingOutlinedFilled as default } diff --git a/src/IconModelTrainingRoundedFilled.tsx b/src/IconModelTrainingRoundedFilled.tsx new file mode 100644 index 000000000..8044a4f1d --- /dev/null +++ b/src/IconModelTrainingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModelTrainingRoundedFilled as default } diff --git a/src/IconModelTrainingSharpFilled.tsx b/src/IconModelTrainingSharpFilled.tsx new file mode 100644 index 000000000..cf4bd786b --- /dev/null +++ b/src/IconModelTrainingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconModelTrainingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconModelTrainingSharpFilled as default } diff --git a/src/IconMoneyOffOutlinedFilled.tsx b/src/IconMoneyOffOutlinedFilled.tsx new file mode 100644 index 000000000..2d34e830a --- /dev/null +++ b/src/IconMoneyOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyOffOutlinedFilled as default } diff --git a/src/IconMoneyOffRoundedFilled.tsx b/src/IconMoneyOffRoundedFilled.tsx new file mode 100644 index 000000000..ba37a31dd --- /dev/null +++ b/src/IconMoneyOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyOffRoundedFilled as default } diff --git a/src/IconMoneyOffSharpFilled.tsx b/src/IconMoneyOffSharpFilled.tsx new file mode 100644 index 000000000..4c0df8585 --- /dev/null +++ b/src/IconMoneyOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyOffSharpFilled as default } diff --git a/src/IconMoneyOutlinedFilled.tsx b/src/IconMoneyOutlinedFilled.tsx new file mode 100644 index 000000000..c80cce9e7 --- /dev/null +++ b/src/IconMoneyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyOutlinedFilled as default } diff --git a/src/IconMoneyRoundedFilled.tsx b/src/IconMoneyRoundedFilled.tsx new file mode 100644 index 000000000..7daacecbd --- /dev/null +++ b/src/IconMoneyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneyRoundedFilled as default } diff --git a/src/IconMoneySharpFilled.tsx b/src/IconMoneySharpFilled.tsx new file mode 100644 index 000000000..c85341475 --- /dev/null +++ b/src/IconMoneySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoneySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoneySharpFilled as default } diff --git a/src/IconMonitorHeartOutlinedFilled.tsx b/src/IconMonitorHeartOutlinedFilled.tsx new file mode 100644 index 000000000..9ab91d084 --- /dev/null +++ b/src/IconMonitorHeartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorHeartOutlinedFilled as default } diff --git a/src/IconMonitorHeartRoundedFilled.tsx b/src/IconMonitorHeartRoundedFilled.tsx new file mode 100644 index 000000000..709a08e35 --- /dev/null +++ b/src/IconMonitorHeartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorHeartRoundedFilled as default } diff --git a/src/IconMonitorHeartSharpFilled.tsx b/src/IconMonitorHeartSharpFilled.tsx new file mode 100644 index 000000000..3746747a7 --- /dev/null +++ b/src/IconMonitorHeartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorHeartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorHeartSharpFilled as default } diff --git a/src/IconMonitorOutlinedFilled.tsx b/src/IconMonitorOutlinedFilled.tsx new file mode 100644 index 000000000..4f203b0d2 --- /dev/null +++ b/src/IconMonitorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorOutlinedFilled as default } diff --git a/src/IconMonitorRoundedFilled.tsx b/src/IconMonitorRoundedFilled.tsx new file mode 100644 index 000000000..3d889ba86 --- /dev/null +++ b/src/IconMonitorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorRoundedFilled as default } diff --git a/src/IconMonitorSharpFilled.tsx b/src/IconMonitorSharpFilled.tsx new file mode 100644 index 000000000..9d177c479 --- /dev/null +++ b/src/IconMonitorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorSharpFilled as default } diff --git a/src/IconMonitorWeightGainOutlinedFilled.tsx b/src/IconMonitorWeightGainOutlinedFilled.tsx new file mode 100644 index 000000000..3dceb5b4d --- /dev/null +++ b/src/IconMonitorWeightGainOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightGainOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightGainOutlinedFilled as default } diff --git a/src/IconMonitorWeightGainRoundedFilled.tsx b/src/IconMonitorWeightGainRoundedFilled.tsx new file mode 100644 index 000000000..1e1429769 --- /dev/null +++ b/src/IconMonitorWeightGainRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightGainRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightGainRoundedFilled as default } diff --git a/src/IconMonitorWeightGainSharpFilled.tsx b/src/IconMonitorWeightGainSharpFilled.tsx new file mode 100644 index 000000000..4c593ce3b --- /dev/null +++ b/src/IconMonitorWeightGainSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightGainSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightGainSharpFilled as default } diff --git a/src/IconMonitorWeightLossOutlinedFilled.tsx b/src/IconMonitorWeightLossOutlinedFilled.tsx new file mode 100644 index 000000000..5dfe97a79 --- /dev/null +++ b/src/IconMonitorWeightLossOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightLossOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightLossOutlinedFilled as default } diff --git a/src/IconMonitorWeightLossRoundedFilled.tsx b/src/IconMonitorWeightLossRoundedFilled.tsx new file mode 100644 index 000000000..0e101adc6 --- /dev/null +++ b/src/IconMonitorWeightLossRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightLossRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightLossRoundedFilled as default } diff --git a/src/IconMonitorWeightLossSharpFilled.tsx b/src/IconMonitorWeightLossSharpFilled.tsx new file mode 100644 index 000000000..34cced669 --- /dev/null +++ b/src/IconMonitorWeightLossSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightLossSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightLossSharpFilled as default } diff --git a/src/IconMonitorWeightOutlinedFilled.tsx b/src/IconMonitorWeightOutlinedFilled.tsx new file mode 100644 index 000000000..e8d92dc24 --- /dev/null +++ b/src/IconMonitorWeightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightOutlinedFilled as default } diff --git a/src/IconMonitorWeightRoundedFilled.tsx b/src/IconMonitorWeightRoundedFilled.tsx new file mode 100644 index 000000000..10fbde238 --- /dev/null +++ b/src/IconMonitorWeightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightRoundedFilled as default } diff --git a/src/IconMonitorWeightSharpFilled.tsx b/src/IconMonitorWeightSharpFilled.tsx new file mode 100644 index 000000000..ff530865c --- /dev/null +++ b/src/IconMonitorWeightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitorWeightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitorWeightSharpFilled as default } diff --git a/src/IconMonitoringOutlinedFilled.tsx b/src/IconMonitoringOutlinedFilled.tsx new file mode 100644 index 000000000..e765eb8f8 --- /dev/null +++ b/src/IconMonitoringOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitoringOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitoringOutlinedFilled as default } diff --git a/src/IconMonitoringRoundedFilled.tsx b/src/IconMonitoringRoundedFilled.tsx new file mode 100644 index 000000000..934685299 --- /dev/null +++ b/src/IconMonitoringRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitoringRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitoringRoundedFilled as default } diff --git a/src/IconMonitoringSharpFilled.tsx b/src/IconMonitoringSharpFilled.tsx new file mode 100644 index 000000000..7ef274927 --- /dev/null +++ b/src/IconMonitoringSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonitoringSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonitoringSharpFilled as default } diff --git a/src/IconMonochromePhotosOutlinedFilled.tsx b/src/IconMonochromePhotosOutlinedFilled.tsx new file mode 100644 index 000000000..18e949b31 --- /dev/null +++ b/src/IconMonochromePhotosOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonochromePhotosOutlinedFilled as default } diff --git a/src/IconMonochromePhotosRoundedFilled.tsx b/src/IconMonochromePhotosRoundedFilled.tsx new file mode 100644 index 000000000..a3d6858bd --- /dev/null +++ b/src/IconMonochromePhotosRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMonochromePhotosRoundedFilled as default } diff --git a/src/IconMonochromePhotosSharpFilled.tsx b/src/IconMonochromePhotosSharpFilled.tsx new file mode 100644 index 000000000..cfa4637f3 --- /dev/null +++ b/src/IconMonochromePhotosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonochromePhotosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonochromePhotosSharpFilled as default } diff --git a/src/IconMonorailOutlinedFilled.tsx b/src/IconMonorailOutlinedFilled.tsx new file mode 100644 index 000000000..b0c56d795 --- /dev/null +++ b/src/IconMonorailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonorailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonorailOutlinedFilled as default } diff --git a/src/IconMonorailRoundedFilled.tsx b/src/IconMonorailRoundedFilled.tsx new file mode 100644 index 000000000..65ca106b5 --- /dev/null +++ b/src/IconMonorailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonorailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonorailRoundedFilled as default } diff --git a/src/IconMonorailSharpFilled.tsx b/src/IconMonorailSharpFilled.tsx new file mode 100644 index 000000000..f33ce22ed --- /dev/null +++ b/src/IconMonorailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMonorailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMonorailSharpFilled as default } diff --git a/src/IconMoodBadOutlinedFilled.tsx b/src/IconMoodBadOutlinedFilled.tsx new file mode 100644 index 000000000..bf6c2e1a3 --- /dev/null +++ b/src/IconMoodBadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoodBadOutlinedFilled as default } diff --git a/src/IconMoodBadRoundedFilled.tsx b/src/IconMoodBadRoundedFilled.tsx new file mode 100644 index 000000000..8ee9c95d4 --- /dev/null +++ b/src/IconMoodBadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoodBadRoundedFilled as default } diff --git a/src/IconMoodBadSharpFilled.tsx b/src/IconMoodBadSharpFilled.tsx new file mode 100644 index 000000000..196e4b1fe --- /dev/null +++ b/src/IconMoodBadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodBadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoodBadSharpFilled as default } diff --git a/src/IconMoodOutlinedFilled.tsx b/src/IconMoodOutlinedFilled.tsx new file mode 100644 index 000000000..01116b9f6 --- /dev/null +++ b/src/IconMoodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoodOutlinedFilled as default } diff --git a/src/IconMoodRoundedFilled.tsx b/src/IconMoodRoundedFilled.tsx new file mode 100644 index 000000000..442ec5c54 --- /dev/null +++ b/src/IconMoodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoodRoundedFilled as default } diff --git a/src/IconMoodSharpFilled.tsx b/src/IconMoodSharpFilled.tsx new file mode 100644 index 000000000..9ad0f6d1d --- /dev/null +++ b/src/IconMoodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoodSharpFilled as default } diff --git a/src/IconMopOutlinedFilled.tsx b/src/IconMopOutlinedFilled.tsx new file mode 100644 index 000000000..bbb4fb418 --- /dev/null +++ b/src/IconMopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMopOutlinedFilled as default } diff --git a/src/IconMopRoundedFilled.tsx b/src/IconMopRoundedFilled.tsx new file mode 100644 index 000000000..55cc3c1e6 --- /dev/null +++ b/src/IconMopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMopRoundedFilled as default } diff --git a/src/IconMopSharpFilled.tsx b/src/IconMopSharpFilled.tsx new file mode 100644 index 000000000..218094f7a --- /dev/null +++ b/src/IconMopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMopSharpFilled as default } diff --git a/src/IconMoreDownOutlinedFilled.tsx b/src/IconMoreDownOutlinedFilled.tsx new file mode 100644 index 000000000..dbc4bfbdc --- /dev/null +++ b/src/IconMoreDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreDownOutlinedFilled as default } diff --git a/src/IconMoreDownRoundedFilled.tsx b/src/IconMoreDownRoundedFilled.tsx new file mode 100644 index 000000000..7b84b2a03 --- /dev/null +++ b/src/IconMoreDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreDownRoundedFilled as default } diff --git a/src/IconMoreDownSharpFilled.tsx b/src/IconMoreDownSharpFilled.tsx new file mode 100644 index 000000000..3b7f033aa --- /dev/null +++ b/src/IconMoreDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreDownSharpFilled as default } diff --git a/src/IconMoreHorizOutlinedFilled.tsx b/src/IconMoreHorizOutlinedFilled.tsx new file mode 100644 index 000000000..57845318a --- /dev/null +++ b/src/IconMoreHorizOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreHorizOutlinedFilled as default } diff --git a/src/IconMoreHorizRoundedFilled.tsx b/src/IconMoreHorizRoundedFilled.tsx new file mode 100644 index 000000000..3d1838688 --- /dev/null +++ b/src/IconMoreHorizRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreHorizRoundedFilled as default } diff --git a/src/IconMoreHorizSharpFilled.tsx b/src/IconMoreHorizSharpFilled.tsx new file mode 100644 index 000000000..fb919721d --- /dev/null +++ b/src/IconMoreHorizSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreHorizSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreHorizSharpFilled as default } diff --git a/src/IconMoreOutlinedFilled.tsx b/src/IconMoreOutlinedFilled.tsx new file mode 100644 index 000000000..cb51a1cbc --- /dev/null +++ b/src/IconMoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreOutlinedFilled as default } diff --git a/src/IconMoreRoundedFilled.tsx b/src/IconMoreRoundedFilled.tsx new file mode 100644 index 000000000..7e9321b74 --- /dev/null +++ b/src/IconMoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreRoundedFilled as default } diff --git a/src/IconMoreSharpFilled.tsx b/src/IconMoreSharpFilled.tsx new file mode 100644 index 000000000..543c222db --- /dev/null +++ b/src/IconMoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreSharpFilled as default } diff --git a/src/IconMoreTimeOutlinedFilled.tsx b/src/IconMoreTimeOutlinedFilled.tsx new file mode 100644 index 000000000..279c49a59 --- /dev/null +++ b/src/IconMoreTimeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreTimeOutlinedFilled as default } diff --git a/src/IconMoreTimeRoundedFilled.tsx b/src/IconMoreTimeRoundedFilled.tsx new file mode 100644 index 000000000..d08ac0eee --- /dev/null +++ b/src/IconMoreTimeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreTimeRoundedFilled as default } diff --git a/src/IconMoreTimeSharpFilled.tsx b/src/IconMoreTimeSharpFilled.tsx new file mode 100644 index 000000000..87ebcb8d4 --- /dev/null +++ b/src/IconMoreTimeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreTimeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreTimeSharpFilled as default } diff --git a/src/IconMoreUpOutlinedFilled.tsx b/src/IconMoreUpOutlinedFilled.tsx new file mode 100644 index 000000000..d69a5fe60 --- /dev/null +++ b/src/IconMoreUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreUpOutlinedFilled as default } diff --git a/src/IconMoreUpRoundedFilled.tsx b/src/IconMoreUpRoundedFilled.tsx new file mode 100644 index 000000000..ed79ff237 --- /dev/null +++ b/src/IconMoreUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreUpRoundedFilled as default } diff --git a/src/IconMoreUpSharpFilled.tsx b/src/IconMoreUpSharpFilled.tsx new file mode 100644 index 000000000..bb931f0fe --- /dev/null +++ b/src/IconMoreUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreUpSharpFilled as default } diff --git a/src/IconMoreVertOutlinedFilled.tsx b/src/IconMoreVertOutlinedFilled.tsx new file mode 100644 index 000000000..d2055021d --- /dev/null +++ b/src/IconMoreVertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreVertOutlinedFilled as default } diff --git a/src/IconMoreVertRoundedFilled.tsx b/src/IconMoreVertRoundedFilled.tsx new file mode 100644 index 000000000..c7b01aba0 --- /dev/null +++ b/src/IconMoreVertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreVertRoundedFilled as default } diff --git a/src/IconMoreVertSharpFilled.tsx b/src/IconMoreVertSharpFilled.tsx new file mode 100644 index 000000000..e4c0aa51a --- /dev/null +++ b/src/IconMoreVertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoreVertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoreVertSharpFilled as default } diff --git a/src/IconMosqueOutlinedFilled.tsx b/src/IconMosqueOutlinedFilled.tsx new file mode 100644 index 000000000..fdb82df34 --- /dev/null +++ b/src/IconMosqueOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMosqueOutlinedFilled as default } diff --git a/src/IconMosqueRoundedFilled.tsx b/src/IconMosqueRoundedFilled.tsx new file mode 100644 index 000000000..0d5438e42 --- /dev/null +++ b/src/IconMosqueRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMosqueRoundedFilled as default } diff --git a/src/IconMosqueSharpFilled.tsx b/src/IconMosqueSharpFilled.tsx new file mode 100644 index 000000000..29c83900c --- /dev/null +++ b/src/IconMosqueSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMosqueSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMosqueSharpFilled as default } diff --git a/src/IconMotionBlurOutlinedFilled.tsx b/src/IconMotionBlurOutlinedFilled.tsx new file mode 100644 index 000000000..7413694c5 --- /dev/null +++ b/src/IconMotionBlurOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionBlurOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionBlurOutlinedFilled as default } diff --git a/src/IconMotionBlurRoundedFilled.tsx b/src/IconMotionBlurRoundedFilled.tsx new file mode 100644 index 000000000..ea6e133f3 --- /dev/null +++ b/src/IconMotionBlurRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionBlurRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionBlurRoundedFilled as default } diff --git a/src/IconMotionBlurSharpFilled.tsx b/src/IconMotionBlurSharpFilled.tsx new file mode 100644 index 000000000..744e24fef --- /dev/null +++ b/src/IconMotionBlurSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionBlurSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionBlurSharpFilled as default } diff --git a/src/IconMotionModeOutlinedFilled.tsx b/src/IconMotionModeOutlinedFilled.tsx new file mode 100644 index 000000000..8b4ffc4e8 --- /dev/null +++ b/src/IconMotionModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionModeOutlinedFilled as default } diff --git a/src/IconMotionModeRoundedFilled.tsx b/src/IconMotionModeRoundedFilled.tsx new file mode 100644 index 000000000..a47a121d9 --- /dev/null +++ b/src/IconMotionModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionModeRoundedFilled as default } diff --git a/src/IconMotionModeSharpFilled.tsx b/src/IconMotionModeSharpFilled.tsx new file mode 100644 index 000000000..10702da6a --- /dev/null +++ b/src/IconMotionModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionModeSharpFilled as default } diff --git a/src/IconMotionPhotosAutoOutlinedFilled.tsx b/src/IconMotionPhotosAutoOutlinedFilled.tsx new file mode 100644 index 000000000..ba2af0c16 --- /dev/null +++ b/src/IconMotionPhotosAutoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosAutoOutlinedFilled as default } diff --git a/src/IconMotionPhotosAutoRoundedFilled.tsx b/src/IconMotionPhotosAutoRoundedFilled.tsx new file mode 100644 index 000000000..5b7b8ae15 --- /dev/null +++ b/src/IconMotionPhotosAutoRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosAutoRoundedFilled as default } diff --git a/src/IconMotionPhotosAutoSharpFilled.tsx b/src/IconMotionPhotosAutoSharpFilled.tsx new file mode 100644 index 000000000..2afb747a6 --- /dev/null +++ b/src/IconMotionPhotosAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosAutoSharpFilled as default } diff --git a/src/IconMotionPhotosOffOutlinedFilled.tsx b/src/IconMotionPhotosOffOutlinedFilled.tsx new file mode 100644 index 000000000..dd76a744d --- /dev/null +++ b/src/IconMotionPhotosOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosOffOutlinedFilled as default } diff --git a/src/IconMotionPhotosOffRoundedFilled.tsx b/src/IconMotionPhotosOffRoundedFilled.tsx new file mode 100644 index 000000000..e42c7a502 --- /dev/null +++ b/src/IconMotionPhotosOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosOffRoundedFilled as default } diff --git a/src/IconMotionPhotosOffSharpFilled.tsx b/src/IconMotionPhotosOffSharpFilled.tsx new file mode 100644 index 000000000..0e23ee0f6 --- /dev/null +++ b/src/IconMotionPhotosOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosOffSharpFilled as default } diff --git a/src/IconMotionPhotosOnOutlinedFilled.tsx b/src/IconMotionPhotosOnOutlinedFilled.tsx new file mode 100644 index 000000000..dbb9cab61 --- /dev/null +++ b/src/IconMotionPhotosOnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosOnOutlinedFilled as default } diff --git a/src/IconMotionPhotosOnRoundedFilled.tsx b/src/IconMotionPhotosOnRoundedFilled.tsx new file mode 100644 index 000000000..ab4b47b33 --- /dev/null +++ b/src/IconMotionPhotosOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosOnRoundedFilled as default } diff --git a/src/IconMotionPhotosOnSharpFilled.tsx b/src/IconMotionPhotosOnSharpFilled.tsx new file mode 100644 index 000000000..ea0d20dbb --- /dev/null +++ b/src/IconMotionPhotosOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosOnSharpFilled as default } diff --git a/src/IconMotionPhotosPausedOutlinedFilled.tsx b/src/IconMotionPhotosPausedOutlinedFilled.tsx new file mode 100644 index 000000000..ba2cd9929 --- /dev/null +++ b/src/IconMotionPhotosPausedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosPausedOutlinedFilled as default } diff --git a/src/IconMotionPhotosPausedRoundedFilled.tsx b/src/IconMotionPhotosPausedRoundedFilled.tsx new file mode 100644 index 000000000..c2233ec36 --- /dev/null +++ b/src/IconMotionPhotosPausedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosPausedRoundedFilled as default } diff --git a/src/IconMotionPhotosPausedSharpFilled.tsx b/src/IconMotionPhotosPausedSharpFilled.tsx new file mode 100644 index 000000000..3e45712a1 --- /dev/null +++ b/src/IconMotionPhotosPausedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPhotosPausedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPhotosPausedSharpFilled as default } diff --git a/src/IconMotionPlayOutlinedFilled.tsx b/src/IconMotionPlayOutlinedFilled.tsx new file mode 100644 index 000000000..b4a17e4b2 --- /dev/null +++ b/src/IconMotionPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPlayOutlinedFilled as default } diff --git a/src/IconMotionPlayRoundedFilled.tsx b/src/IconMotionPlayRoundedFilled.tsx new file mode 100644 index 000000000..0b99af0b8 --- /dev/null +++ b/src/IconMotionPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPlayRoundedFilled as default } diff --git a/src/IconMotionPlaySharpFilled.tsx b/src/IconMotionPlaySharpFilled.tsx new file mode 100644 index 000000000..9e507d0fd --- /dev/null +++ b/src/IconMotionPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionPlaySharpFilled as default } diff --git a/src/IconMotionSensorActiveOutlinedFilled.tsx b/src/IconMotionSensorActiveOutlinedFilled.tsx new file mode 100644 index 000000000..ec7662d18 --- /dev/null +++ b/src/IconMotionSensorActiveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorActiveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorActiveOutlinedFilled as default } diff --git a/src/IconMotionSensorActiveRoundedFilled.tsx b/src/IconMotionSensorActiveRoundedFilled.tsx new file mode 100644 index 000000000..abec83641 --- /dev/null +++ b/src/IconMotionSensorActiveRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorActiveRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorActiveRoundedFilled as default } diff --git a/src/IconMotionSensorActiveSharpFilled.tsx b/src/IconMotionSensorActiveSharpFilled.tsx new file mode 100644 index 000000000..027cc3844 --- /dev/null +++ b/src/IconMotionSensorActiveSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorActiveSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorActiveSharpFilled as default } diff --git a/src/IconMotionSensorAlertOutlinedFilled.tsx b/src/IconMotionSensorAlertOutlinedFilled.tsx new file mode 100644 index 000000000..00ea82504 --- /dev/null +++ b/src/IconMotionSensorAlertOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorAlertOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorAlertOutlinedFilled as default } diff --git a/src/IconMotionSensorAlertRoundedFilled.tsx b/src/IconMotionSensorAlertRoundedFilled.tsx new file mode 100644 index 000000000..e7b1a151a --- /dev/null +++ b/src/IconMotionSensorAlertRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorAlertRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorAlertRoundedFilled as default } diff --git a/src/IconMotionSensorAlertSharpFilled.tsx b/src/IconMotionSensorAlertSharpFilled.tsx new file mode 100644 index 000000000..7651d228d --- /dev/null +++ b/src/IconMotionSensorAlertSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorAlertSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorAlertSharpFilled as default } diff --git a/src/IconMotionSensorIdleOutlinedFilled.tsx b/src/IconMotionSensorIdleOutlinedFilled.tsx new file mode 100644 index 000000000..0bf519a11 --- /dev/null +++ b/src/IconMotionSensorIdleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorIdleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorIdleOutlinedFilled as default } diff --git a/src/IconMotionSensorIdleRoundedFilled.tsx b/src/IconMotionSensorIdleRoundedFilled.tsx new file mode 100644 index 000000000..d5bcf66e5 --- /dev/null +++ b/src/IconMotionSensorIdleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorIdleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorIdleRoundedFilled as default } diff --git a/src/IconMotionSensorIdleSharpFilled.tsx b/src/IconMotionSensorIdleSharpFilled.tsx new file mode 100644 index 000000000..2e5dd5a73 --- /dev/null +++ b/src/IconMotionSensorIdleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorIdleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorIdleSharpFilled as default } diff --git a/src/IconMotionSensorUrgentOutlinedFilled.tsx b/src/IconMotionSensorUrgentOutlinedFilled.tsx new file mode 100644 index 000000000..34c65c094 --- /dev/null +++ b/src/IconMotionSensorUrgentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorUrgentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorUrgentOutlinedFilled as default } diff --git a/src/IconMotionSensorUrgentRoundedFilled.tsx b/src/IconMotionSensorUrgentRoundedFilled.tsx new file mode 100644 index 000000000..d57fa16c9 --- /dev/null +++ b/src/IconMotionSensorUrgentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorUrgentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorUrgentRoundedFilled as default } diff --git a/src/IconMotionSensorUrgentSharpFilled.tsx b/src/IconMotionSensorUrgentSharpFilled.tsx new file mode 100644 index 000000000..cab8a8695 --- /dev/null +++ b/src/IconMotionSensorUrgentSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotionSensorUrgentSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMotionSensorUrgentSharpFilled as default } diff --git a/src/IconMotorcycleOutlinedFilled.tsx b/src/IconMotorcycleOutlinedFilled.tsx new file mode 100644 index 000000000..5d48e764c --- /dev/null +++ b/src/IconMotorcycleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotorcycleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotorcycleOutlinedFilled as default } diff --git a/src/IconMotorcycleRoundedFilled.tsx b/src/IconMotorcycleRoundedFilled.tsx new file mode 100644 index 000000000..08e9f0f0f --- /dev/null +++ b/src/IconMotorcycleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotorcycleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotorcycleRoundedFilled as default } diff --git a/src/IconMotorcycleSharpFilled.tsx b/src/IconMotorcycleSharpFilled.tsx new file mode 100644 index 000000000..aa05bb241 --- /dev/null +++ b/src/IconMotorcycleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMotorcycleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMotorcycleSharpFilled as default } diff --git a/src/IconMountainFlagOutlinedFilled.tsx b/src/IconMountainFlagOutlinedFilled.tsx new file mode 100644 index 000000000..456c00a6e --- /dev/null +++ b/src/IconMountainFlagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMountainFlagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMountainFlagOutlinedFilled as default } diff --git a/src/IconMountainFlagRoundedFilled.tsx b/src/IconMountainFlagRoundedFilled.tsx new file mode 100644 index 000000000..1380544a9 --- /dev/null +++ b/src/IconMountainFlagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMountainFlagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMountainFlagRoundedFilled as default } diff --git a/src/IconMountainFlagSharpFilled.tsx b/src/IconMountainFlagSharpFilled.tsx new file mode 100644 index 000000000..a1b64e7bf --- /dev/null +++ b/src/IconMountainFlagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMountainFlagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMountainFlagSharpFilled as default } diff --git a/src/IconMouseLockOffOutlinedFilled.tsx b/src/IconMouseLockOffOutlinedFilled.tsx new file mode 100644 index 000000000..5d2d38eb1 --- /dev/null +++ b/src/IconMouseLockOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseLockOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseLockOffOutlinedFilled as default } diff --git a/src/IconMouseLockOffRoundedFilled.tsx b/src/IconMouseLockOffRoundedFilled.tsx new file mode 100644 index 000000000..7e6baf164 --- /dev/null +++ b/src/IconMouseLockOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseLockOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseLockOffRoundedFilled as default } diff --git a/src/IconMouseLockOffSharpFilled.tsx b/src/IconMouseLockOffSharpFilled.tsx new file mode 100644 index 000000000..78324d1bb --- /dev/null +++ b/src/IconMouseLockOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseLockOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseLockOffSharpFilled as default } diff --git a/src/IconMouseLockOutlinedFilled.tsx b/src/IconMouseLockOutlinedFilled.tsx new file mode 100644 index 000000000..3fe273200 --- /dev/null +++ b/src/IconMouseLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseLockOutlinedFilled as default } diff --git a/src/IconMouseLockRoundedFilled.tsx b/src/IconMouseLockRoundedFilled.tsx new file mode 100644 index 000000000..09ec160d0 --- /dev/null +++ b/src/IconMouseLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseLockRoundedFilled as default } diff --git a/src/IconMouseLockSharpFilled.tsx b/src/IconMouseLockSharpFilled.tsx new file mode 100644 index 000000000..d77614d41 --- /dev/null +++ b/src/IconMouseLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseLockSharpFilled as default } diff --git a/src/IconMouseOutlinedFilled.tsx b/src/IconMouseOutlinedFilled.tsx new file mode 100644 index 000000000..a9ff34e12 --- /dev/null +++ b/src/IconMouseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseOutlinedFilled as default } diff --git a/src/IconMouseRoundedFilled.tsx b/src/IconMouseRoundedFilled.tsx new file mode 100644 index 000000000..127ce7d55 --- /dev/null +++ b/src/IconMouseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseRoundedFilled as default } diff --git a/src/IconMouseSharpFilled.tsx b/src/IconMouseSharpFilled.tsx new file mode 100644 index 000000000..5337ad227 --- /dev/null +++ b/src/IconMouseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMouseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMouseSharpFilled as default } diff --git a/src/IconMoveDownOutlinedFilled.tsx b/src/IconMoveDownOutlinedFilled.tsx new file mode 100644 index 000000000..bedb74053 --- /dev/null +++ b/src/IconMoveDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveDownOutlinedFilled as default } diff --git a/src/IconMoveDownRoundedFilled.tsx b/src/IconMoveDownRoundedFilled.tsx new file mode 100644 index 000000000..ae40dbe68 --- /dev/null +++ b/src/IconMoveDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveDownRoundedFilled as default } diff --git a/src/IconMoveDownSharpFilled.tsx b/src/IconMoveDownSharpFilled.tsx new file mode 100644 index 000000000..e2da8e948 --- /dev/null +++ b/src/IconMoveDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveDownSharpFilled as default } diff --git a/src/IconMoveGroupOutlinedFilled.tsx b/src/IconMoveGroupOutlinedFilled.tsx new file mode 100644 index 000000000..5bd9c71c7 --- /dev/null +++ b/src/IconMoveGroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveGroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveGroupOutlinedFilled as default } diff --git a/src/IconMoveGroupRoundedFilled.tsx b/src/IconMoveGroupRoundedFilled.tsx new file mode 100644 index 000000000..280997caf --- /dev/null +++ b/src/IconMoveGroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveGroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveGroupRoundedFilled as default } diff --git a/src/IconMoveGroupSharpFilled.tsx b/src/IconMoveGroupSharpFilled.tsx new file mode 100644 index 000000000..2c9b69991 --- /dev/null +++ b/src/IconMoveGroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveGroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveGroupSharpFilled as default } diff --git a/src/IconMoveItemOutlinedFilled.tsx b/src/IconMoveItemOutlinedFilled.tsx new file mode 100644 index 000000000..c7ce3fc71 --- /dev/null +++ b/src/IconMoveItemOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveItemOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveItemOutlinedFilled as default } diff --git a/src/IconMoveItemRoundedFilled.tsx b/src/IconMoveItemRoundedFilled.tsx new file mode 100644 index 000000000..764c739e6 --- /dev/null +++ b/src/IconMoveItemRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveItemRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveItemRoundedFilled as default } diff --git a/src/IconMoveItemSharpFilled.tsx b/src/IconMoveItemSharpFilled.tsx new file mode 100644 index 000000000..d2f4de450 --- /dev/null +++ b/src/IconMoveItemSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveItemSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveItemSharpFilled as default } diff --git a/src/IconMoveLocationOutlinedFilled.tsx b/src/IconMoveLocationOutlinedFilled.tsx new file mode 100644 index 000000000..dc25d40a0 --- /dev/null +++ b/src/IconMoveLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveLocationOutlinedFilled as default } diff --git a/src/IconMoveLocationRoundedFilled.tsx b/src/IconMoveLocationRoundedFilled.tsx new file mode 100644 index 000000000..6bcdb6e43 --- /dev/null +++ b/src/IconMoveLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveLocationRoundedFilled as default } diff --git a/src/IconMoveLocationSharpFilled.tsx b/src/IconMoveLocationSharpFilled.tsx new file mode 100644 index 000000000..144344d7a --- /dev/null +++ b/src/IconMoveLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveLocationSharpFilled as default } diff --git a/src/IconMoveOutlinedFilled.tsx b/src/IconMoveOutlinedFilled.tsx new file mode 100644 index 000000000..7cae8f96c --- /dev/null +++ b/src/IconMoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveOutlinedFilled as default } diff --git a/src/IconMoveRoundedFilled.tsx b/src/IconMoveRoundedFilled.tsx new file mode 100644 index 000000000..e90defca5 --- /dev/null +++ b/src/IconMoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveRoundedFilled as default } diff --git a/src/IconMoveSelectionDownOutlinedFilled.tsx b/src/IconMoveSelectionDownOutlinedFilled.tsx new file mode 100644 index 000000000..eed0abf0a --- /dev/null +++ b/src/IconMoveSelectionDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionDownOutlinedFilled as default } diff --git a/src/IconMoveSelectionDownRoundedFilled.tsx b/src/IconMoveSelectionDownRoundedFilled.tsx new file mode 100644 index 000000000..1a134c6e5 --- /dev/null +++ b/src/IconMoveSelectionDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionDownRoundedFilled as default } diff --git a/src/IconMoveSelectionDownSharpFilled.tsx b/src/IconMoveSelectionDownSharpFilled.tsx new file mode 100644 index 000000000..87231072e --- /dev/null +++ b/src/IconMoveSelectionDownSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionDownSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionDownSharpFilled as default } diff --git a/src/IconMoveSelectionLeftOutlinedFilled.tsx b/src/IconMoveSelectionLeftOutlinedFilled.tsx new file mode 100644 index 000000000..ced10e41e --- /dev/null +++ b/src/IconMoveSelectionLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionLeftOutlinedFilled as default } diff --git a/src/IconMoveSelectionLeftRoundedFilled.tsx b/src/IconMoveSelectionLeftRoundedFilled.tsx new file mode 100644 index 000000000..2b110963c --- /dev/null +++ b/src/IconMoveSelectionLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionLeftRoundedFilled as default } diff --git a/src/IconMoveSelectionLeftSharpFilled.tsx b/src/IconMoveSelectionLeftSharpFilled.tsx new file mode 100644 index 000000000..509d6babb --- /dev/null +++ b/src/IconMoveSelectionLeftSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionLeftSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionLeftSharpFilled as default } diff --git a/src/IconMoveSelectionRightOutlinedFilled.tsx b/src/IconMoveSelectionRightOutlinedFilled.tsx new file mode 100644 index 000000000..a89fe8e89 --- /dev/null +++ b/src/IconMoveSelectionRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionRightOutlinedFilled as default } diff --git a/src/IconMoveSelectionRightRoundedFilled.tsx b/src/IconMoveSelectionRightRoundedFilled.tsx new file mode 100644 index 000000000..c5cc77663 --- /dev/null +++ b/src/IconMoveSelectionRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionRightRoundedFilled as default } diff --git a/src/IconMoveSelectionRightSharpFilled.tsx b/src/IconMoveSelectionRightSharpFilled.tsx new file mode 100644 index 000000000..97ef1500a --- /dev/null +++ b/src/IconMoveSelectionRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionRightSharpFilled as default } diff --git a/src/IconMoveSelectionUpOutlinedFilled.tsx b/src/IconMoveSelectionUpOutlinedFilled.tsx new file mode 100644 index 000000000..d6d095f89 --- /dev/null +++ b/src/IconMoveSelectionUpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionUpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionUpOutlinedFilled as default } diff --git a/src/IconMoveSelectionUpRoundedFilled.tsx b/src/IconMoveSelectionUpRoundedFilled.tsx new file mode 100644 index 000000000..264e8c26a --- /dev/null +++ b/src/IconMoveSelectionUpRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionUpRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionUpRoundedFilled as default } diff --git a/src/IconMoveSelectionUpSharpFilled.tsx b/src/IconMoveSelectionUpSharpFilled.tsx new file mode 100644 index 000000000..f4aba2c2f --- /dev/null +++ b/src/IconMoveSelectionUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSelectionUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSelectionUpSharpFilled as default } diff --git a/src/IconMoveSharpFilled.tsx b/src/IconMoveSharpFilled.tsx new file mode 100644 index 000000000..d870bd5b6 --- /dev/null +++ b/src/IconMoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveSharpFilled as default } diff --git a/src/IconMoveToInboxOutlinedFilled.tsx b/src/IconMoveToInboxOutlinedFilled.tsx new file mode 100644 index 000000000..b284afe14 --- /dev/null +++ b/src/IconMoveToInboxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveToInboxOutlinedFilled as default } diff --git a/src/IconMoveToInboxRoundedFilled.tsx b/src/IconMoveToInboxRoundedFilled.tsx new file mode 100644 index 000000000..8c42fb3a4 --- /dev/null +++ b/src/IconMoveToInboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveToInboxRoundedFilled as default } diff --git a/src/IconMoveToInboxSharpFilled.tsx b/src/IconMoveToInboxSharpFilled.tsx new file mode 100644 index 000000000..39a1ce388 --- /dev/null +++ b/src/IconMoveToInboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveToInboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveToInboxSharpFilled as default } diff --git a/src/IconMoveUpOutlinedFilled.tsx b/src/IconMoveUpOutlinedFilled.tsx new file mode 100644 index 000000000..21e5cc25f --- /dev/null +++ b/src/IconMoveUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveUpOutlinedFilled as default } diff --git a/src/IconMoveUpRoundedFilled.tsx b/src/IconMoveUpRoundedFilled.tsx new file mode 100644 index 000000000..9fa099b9a --- /dev/null +++ b/src/IconMoveUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveUpRoundedFilled as default } diff --git a/src/IconMoveUpSharpFilled.tsx b/src/IconMoveUpSharpFilled.tsx new file mode 100644 index 000000000..7129bc0b6 --- /dev/null +++ b/src/IconMoveUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMoveUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMoveUpSharpFilled as default } diff --git a/src/IconMovedLocationOutlinedFilled.tsx b/src/IconMovedLocationOutlinedFilled.tsx new file mode 100644 index 000000000..d357cb571 --- /dev/null +++ b/src/IconMovedLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovedLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovedLocationOutlinedFilled as default } diff --git a/src/IconMovedLocationRoundedFilled.tsx b/src/IconMovedLocationRoundedFilled.tsx new file mode 100644 index 000000000..a1b595178 --- /dev/null +++ b/src/IconMovedLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovedLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovedLocationRoundedFilled as default } diff --git a/src/IconMovedLocationSharpFilled.tsx b/src/IconMovedLocationSharpFilled.tsx new file mode 100644 index 000000000..4d3b34096 --- /dev/null +++ b/src/IconMovedLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovedLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovedLocationSharpFilled as default } diff --git a/src/IconMovieEditOutlinedFilled.tsx b/src/IconMovieEditOutlinedFilled.tsx new file mode 100644 index 000000000..21443175d --- /dev/null +++ b/src/IconMovieEditOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieEditOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieEditOutlinedFilled as default } diff --git a/src/IconMovieEditRoundedFilled.tsx b/src/IconMovieEditRoundedFilled.tsx new file mode 100644 index 000000000..04ec5b3fc --- /dev/null +++ b/src/IconMovieEditRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieEditRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieEditRoundedFilled as default } diff --git a/src/IconMovieEditSharpFilled.tsx b/src/IconMovieEditSharpFilled.tsx new file mode 100644 index 000000000..4d840ec05 --- /dev/null +++ b/src/IconMovieEditSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieEditSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieEditSharpFilled as default } diff --git a/src/IconMovieInfoOutlinedFilled.tsx b/src/IconMovieInfoOutlinedFilled.tsx new file mode 100644 index 000000000..1a5b04db8 --- /dev/null +++ b/src/IconMovieInfoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieInfoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieInfoOutlinedFilled as default } diff --git a/src/IconMovieInfoRoundedFilled.tsx b/src/IconMovieInfoRoundedFilled.tsx new file mode 100644 index 000000000..5ae8bf22b --- /dev/null +++ b/src/IconMovieInfoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieInfoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieInfoRoundedFilled as default } diff --git a/src/IconMovieInfoSharpFilled.tsx b/src/IconMovieInfoSharpFilled.tsx new file mode 100644 index 000000000..02d2ae1be --- /dev/null +++ b/src/IconMovieInfoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieInfoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieInfoSharpFilled as default } diff --git a/src/IconMovieOffOutlinedFilled.tsx b/src/IconMovieOffOutlinedFilled.tsx new file mode 100644 index 000000000..d2f172734 --- /dev/null +++ b/src/IconMovieOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieOffOutlinedFilled as default } diff --git a/src/IconMovieOffRoundedFilled.tsx b/src/IconMovieOffRoundedFilled.tsx new file mode 100644 index 000000000..56f1fe87b --- /dev/null +++ b/src/IconMovieOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieOffRoundedFilled as default } diff --git a/src/IconMovieOffSharpFilled.tsx b/src/IconMovieOffSharpFilled.tsx new file mode 100644 index 000000000..ef15c143a --- /dev/null +++ b/src/IconMovieOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieOffSharpFilled as default } diff --git a/src/IconMovieOutlinedFilled.tsx b/src/IconMovieOutlinedFilled.tsx new file mode 100644 index 000000000..af26ff429 --- /dev/null +++ b/src/IconMovieOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieOutlinedFilled as default } diff --git a/src/IconMovieRoundedFilled.tsx b/src/IconMovieRoundedFilled.tsx new file mode 100644 index 000000000..32249443e --- /dev/null +++ b/src/IconMovieRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieRoundedFilled as default } diff --git a/src/IconMovieSharpFilled.tsx b/src/IconMovieSharpFilled.tsx new file mode 100644 index 000000000..74f5dca45 --- /dev/null +++ b/src/IconMovieSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovieSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovieSharpFilled as default } diff --git a/src/IconMovingBedsOutlinedFilled.tsx b/src/IconMovingBedsOutlinedFilled.tsx new file mode 100644 index 000000000..100a9ca3e --- /dev/null +++ b/src/IconMovingBedsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingBedsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingBedsOutlinedFilled as default } diff --git a/src/IconMovingBedsRoundedFilled.tsx b/src/IconMovingBedsRoundedFilled.tsx new file mode 100644 index 000000000..85d2dc3ba --- /dev/null +++ b/src/IconMovingBedsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingBedsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingBedsRoundedFilled as default } diff --git a/src/IconMovingBedsSharpFilled.tsx b/src/IconMovingBedsSharpFilled.tsx new file mode 100644 index 000000000..4d1657b18 --- /dev/null +++ b/src/IconMovingBedsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingBedsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingBedsSharpFilled as default } diff --git a/src/IconMovingMinistryOutlinedFilled.tsx b/src/IconMovingMinistryOutlinedFilled.tsx new file mode 100644 index 000000000..23f1c3c59 --- /dev/null +++ b/src/IconMovingMinistryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingMinistryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingMinistryOutlinedFilled as default } diff --git a/src/IconMovingMinistryRoundedFilled.tsx b/src/IconMovingMinistryRoundedFilled.tsx new file mode 100644 index 000000000..bf95c5de5 --- /dev/null +++ b/src/IconMovingMinistryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingMinistryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingMinistryRoundedFilled as default } diff --git a/src/IconMovingMinistrySharpFilled.tsx b/src/IconMovingMinistrySharpFilled.tsx new file mode 100644 index 000000000..77c6cb068 --- /dev/null +++ b/src/IconMovingMinistrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingMinistrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingMinistrySharpFilled as default } diff --git a/src/IconMovingOutlinedFilled.tsx b/src/IconMovingOutlinedFilled.tsx new file mode 100644 index 000000000..46f2728bc --- /dev/null +++ b/src/IconMovingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingOutlinedFilled as default } diff --git a/src/IconMovingRoundedFilled.tsx b/src/IconMovingRoundedFilled.tsx new file mode 100644 index 000000000..81322b567 --- /dev/null +++ b/src/IconMovingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingRoundedFilled as default } diff --git a/src/IconMovingSharpFilled.tsx b/src/IconMovingSharpFilled.tsx new file mode 100644 index 000000000..c6f8a46b5 --- /dev/null +++ b/src/IconMovingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMovingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMovingSharpFilled as default } diff --git a/src/IconMpOutlinedFilled.tsx b/src/IconMpOutlinedFilled.tsx new file mode 100644 index 000000000..a7997d9c0 --- /dev/null +++ b/src/IconMpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMpOutlinedFilled as default } diff --git a/src/IconMpRoundedFilled.tsx b/src/IconMpRoundedFilled.tsx new file mode 100644 index 000000000..657c994a3 --- /dev/null +++ b/src/IconMpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMpRoundedFilled as default } diff --git a/src/IconMpSharpFilled.tsx b/src/IconMpSharpFilled.tsx new file mode 100644 index 000000000..b7e86d2e5 --- /dev/null +++ b/src/IconMpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMpSharpFilled as default } diff --git a/src/IconMulticookerOutlinedFilled.tsx b/src/IconMulticookerOutlinedFilled.tsx new file mode 100644 index 000000000..e0c741ad1 --- /dev/null +++ b/src/IconMulticookerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMulticookerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMulticookerOutlinedFilled as default } diff --git a/src/IconMulticookerRoundedFilled.tsx b/src/IconMulticookerRoundedFilled.tsx new file mode 100644 index 000000000..3e48a2dd6 --- /dev/null +++ b/src/IconMulticookerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMulticookerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMulticookerRoundedFilled as default } diff --git a/src/IconMulticookerSharpFilled.tsx b/src/IconMulticookerSharpFilled.tsx new file mode 100644 index 000000000..316668d8c --- /dev/null +++ b/src/IconMulticookerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMulticookerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMulticookerSharpFilled as default } diff --git a/src/IconMultilineChartOutlinedFilled.tsx b/src/IconMultilineChartOutlinedFilled.tsx new file mode 100644 index 000000000..641314cf1 --- /dev/null +++ b/src/IconMultilineChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMultilineChartOutlinedFilled as default } diff --git a/src/IconMultilineChartRoundedFilled.tsx b/src/IconMultilineChartRoundedFilled.tsx new file mode 100644 index 000000000..9c4dde392 --- /dev/null +++ b/src/IconMultilineChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMultilineChartRoundedFilled as default } diff --git a/src/IconMultilineChartSharpFilled.tsx b/src/IconMultilineChartSharpFilled.tsx new file mode 100644 index 000000000..ba4ab098d --- /dev/null +++ b/src/IconMultilineChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultilineChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMultilineChartSharpFilled as default } diff --git a/src/IconMultimodalHandEyeOutlinedFilled.tsx b/src/IconMultimodalHandEyeOutlinedFilled.tsx new file mode 100644 index 000000000..10e54c65a --- /dev/null +++ b/src/IconMultimodalHandEyeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultimodalHandEyeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMultimodalHandEyeOutlinedFilled as default } diff --git a/src/IconMultimodalHandEyeRoundedFilled.tsx b/src/IconMultimodalHandEyeRoundedFilled.tsx new file mode 100644 index 000000000..9e1d27e2b --- /dev/null +++ b/src/IconMultimodalHandEyeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultimodalHandEyeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMultimodalHandEyeRoundedFilled as default } diff --git a/src/IconMultimodalHandEyeSharpFilled.tsx b/src/IconMultimodalHandEyeSharpFilled.tsx new file mode 100644 index 000000000..4568d24d4 --- /dev/null +++ b/src/IconMultimodalHandEyeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultimodalHandEyeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconMultimodalHandEyeSharpFilled as default } diff --git a/src/IconMultipleStopOutlinedFilled.tsx b/src/IconMultipleStopOutlinedFilled.tsx new file mode 100644 index 000000000..105f6f9bf --- /dev/null +++ b/src/IconMultipleStopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMultipleStopOutlinedFilled as default } diff --git a/src/IconMultipleStopRoundedFilled.tsx b/src/IconMultipleStopRoundedFilled.tsx new file mode 100644 index 000000000..943d1c042 --- /dev/null +++ b/src/IconMultipleStopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMultipleStopRoundedFilled as default } diff --git a/src/IconMultipleStopSharpFilled.tsx b/src/IconMultipleStopSharpFilled.tsx new file mode 100644 index 000000000..92b2c3a0d --- /dev/null +++ b/src/IconMultipleStopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMultipleStopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMultipleStopSharpFilled as default } diff --git a/src/IconMuseumOutlinedFilled.tsx b/src/IconMuseumOutlinedFilled.tsx new file mode 100644 index 000000000..6374170af --- /dev/null +++ b/src/IconMuseumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMuseumOutlinedFilled as default } diff --git a/src/IconMuseumRoundedFilled.tsx b/src/IconMuseumRoundedFilled.tsx new file mode 100644 index 000000000..56aa40fd4 --- /dev/null +++ b/src/IconMuseumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMuseumRoundedFilled as default } diff --git a/src/IconMuseumSharpFilled.tsx b/src/IconMuseumSharpFilled.tsx new file mode 100644 index 000000000..5d1b6ec8b --- /dev/null +++ b/src/IconMuseumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMuseumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMuseumSharpFilled as default } diff --git a/src/IconMusicCastOutlinedFilled.tsx b/src/IconMusicCastOutlinedFilled.tsx new file mode 100644 index 000000000..b1e618d42 --- /dev/null +++ b/src/IconMusicCastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicCastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicCastOutlinedFilled as default } diff --git a/src/IconMusicCastRoundedFilled.tsx b/src/IconMusicCastRoundedFilled.tsx new file mode 100644 index 000000000..3d6047562 --- /dev/null +++ b/src/IconMusicCastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicCastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicCastRoundedFilled as default } diff --git a/src/IconMusicCastSharpFilled.tsx b/src/IconMusicCastSharpFilled.tsx new file mode 100644 index 000000000..07d6ffc49 --- /dev/null +++ b/src/IconMusicCastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicCastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicCastSharpFilled as default } diff --git a/src/IconMusicNoteOutlinedFilled.tsx b/src/IconMusicNoteOutlinedFilled.tsx new file mode 100644 index 000000000..ffd86f775 --- /dev/null +++ b/src/IconMusicNoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicNoteOutlinedFilled as default } diff --git a/src/IconMusicNoteRoundedFilled.tsx b/src/IconMusicNoteRoundedFilled.tsx new file mode 100644 index 000000000..f37c48a77 --- /dev/null +++ b/src/IconMusicNoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicNoteRoundedFilled as default } diff --git a/src/IconMusicNoteSharpFilled.tsx b/src/IconMusicNoteSharpFilled.tsx new file mode 100644 index 000000000..a600245d9 --- /dev/null +++ b/src/IconMusicNoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicNoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicNoteSharpFilled as default } diff --git a/src/IconMusicOffOutlinedFilled.tsx b/src/IconMusicOffOutlinedFilled.tsx new file mode 100644 index 000000000..bb842e5e2 --- /dev/null +++ b/src/IconMusicOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicOffOutlinedFilled as default } diff --git a/src/IconMusicOffRoundedFilled.tsx b/src/IconMusicOffRoundedFilled.tsx new file mode 100644 index 000000000..fd9476826 --- /dev/null +++ b/src/IconMusicOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicOffRoundedFilled as default } diff --git a/src/IconMusicOffSharpFilled.tsx b/src/IconMusicOffSharpFilled.tsx new file mode 100644 index 000000000..271086324 --- /dev/null +++ b/src/IconMusicOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicOffSharpFilled as default } diff --git a/src/IconMusicVideoOutlinedFilled.tsx b/src/IconMusicVideoOutlinedFilled.tsx new file mode 100644 index 000000000..2dbfadd44 --- /dev/null +++ b/src/IconMusicVideoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicVideoOutlinedFilled as default } diff --git a/src/IconMusicVideoRoundedFilled.tsx b/src/IconMusicVideoRoundedFilled.tsx new file mode 100644 index 000000000..c36c8ca9b --- /dev/null +++ b/src/IconMusicVideoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicVideoRoundedFilled as default } diff --git a/src/IconMusicVideoSharpFilled.tsx b/src/IconMusicVideoSharpFilled.tsx new file mode 100644 index 000000000..6276e77d6 --- /dev/null +++ b/src/IconMusicVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMusicVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMusicVideoSharpFilled as default } diff --git a/src/IconMyLocationOutlinedFilled.tsx b/src/IconMyLocationOutlinedFilled.tsx new file mode 100644 index 000000000..5a7f22386 --- /dev/null +++ b/src/IconMyLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMyLocationOutlinedFilled as default } diff --git a/src/IconMyLocationRoundedFilled.tsx b/src/IconMyLocationRoundedFilled.tsx new file mode 100644 index 000000000..f15e16fa2 --- /dev/null +++ b/src/IconMyLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMyLocationRoundedFilled as default } diff --git a/src/IconMyLocationSharpFilled.tsx b/src/IconMyLocationSharpFilled.tsx new file mode 100644 index 000000000..cf1656312 --- /dev/null +++ b/src/IconMyLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMyLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMyLocationSharpFilled as default } diff --git a/src/IconMysteryOutlinedFilled.tsx b/src/IconMysteryOutlinedFilled.tsx new file mode 100644 index 000000000..28106f23a --- /dev/null +++ b/src/IconMysteryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMysteryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMysteryOutlinedFilled as default } diff --git a/src/IconMysteryRoundedFilled.tsx b/src/IconMysteryRoundedFilled.tsx new file mode 100644 index 000000000..99b10d084 --- /dev/null +++ b/src/IconMysteryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMysteryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMysteryRoundedFilled as default } diff --git a/src/IconMysterySharpFilled.tsx b/src/IconMysterySharpFilled.tsx new file mode 100644 index 000000000..57e13f3d8 --- /dev/null +++ b/src/IconMysterySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconMysterySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconMysterySharpFilled as default } diff --git a/src/IconNatOutlinedFilled.tsx b/src/IconNatOutlinedFilled.tsx new file mode 100644 index 000000000..e99daf15f --- /dev/null +++ b/src/IconNatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNatOutlinedFilled as default } diff --git a/src/IconNatRoundedFilled.tsx b/src/IconNatRoundedFilled.tsx new file mode 100644 index 000000000..2a47c2314 --- /dev/null +++ b/src/IconNatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNatRoundedFilled as default } diff --git a/src/IconNatSharpFilled.tsx b/src/IconNatSharpFilled.tsx new file mode 100644 index 000000000..3dfd41a5a --- /dev/null +++ b/src/IconNatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNatSharpFilled as default } diff --git a/src/IconNatureOutlinedFilled.tsx b/src/IconNatureOutlinedFilled.tsx new file mode 100644 index 000000000..96dc8a1f9 --- /dev/null +++ b/src/IconNatureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNatureOutlinedFilled as default } diff --git a/src/IconNaturePeopleOutlinedFilled.tsx b/src/IconNaturePeopleOutlinedFilled.tsx new file mode 100644 index 000000000..a0edb5e99 --- /dev/null +++ b/src/IconNaturePeopleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNaturePeopleOutlinedFilled as default } diff --git a/src/IconNaturePeopleRoundedFilled.tsx b/src/IconNaturePeopleRoundedFilled.tsx new file mode 100644 index 000000000..facb9e222 --- /dev/null +++ b/src/IconNaturePeopleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNaturePeopleRoundedFilled as default } diff --git a/src/IconNaturePeopleSharpFilled.tsx b/src/IconNaturePeopleSharpFilled.tsx new file mode 100644 index 000000000..84af4fe5b --- /dev/null +++ b/src/IconNaturePeopleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNaturePeopleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNaturePeopleSharpFilled as default } diff --git a/src/IconNatureRoundedFilled.tsx b/src/IconNatureRoundedFilled.tsx new file mode 100644 index 000000000..7dddff9fa --- /dev/null +++ b/src/IconNatureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNatureRoundedFilled as default } diff --git a/src/IconNatureSharpFilled.tsx b/src/IconNatureSharpFilled.tsx new file mode 100644 index 000000000..930b137c7 --- /dev/null +++ b/src/IconNatureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNatureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNatureSharpFilled as default } diff --git a/src/IconNavigationOutlinedFilled.tsx b/src/IconNavigationOutlinedFilled.tsx new file mode 100644 index 000000000..4816892e4 --- /dev/null +++ b/src/IconNavigationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNavigationOutlinedFilled as default } diff --git a/src/IconNavigationRoundedFilled.tsx b/src/IconNavigationRoundedFilled.tsx new file mode 100644 index 000000000..e63f3b664 --- /dev/null +++ b/src/IconNavigationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNavigationRoundedFilled as default } diff --git a/src/IconNavigationSharpFilled.tsx b/src/IconNavigationSharpFilled.tsx new file mode 100644 index 000000000..e5dbacd3e --- /dev/null +++ b/src/IconNavigationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNavigationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNavigationSharpFilled as default } diff --git a/src/IconNearMeDisabledOutlinedFilled.tsx b/src/IconNearMeDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..a9efbf07c --- /dev/null +++ b/src/IconNearMeDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNearMeDisabledOutlinedFilled as default } diff --git a/src/IconNearMeDisabledRoundedFilled.tsx b/src/IconNearMeDisabledRoundedFilled.tsx new file mode 100644 index 000000000..2842d441e --- /dev/null +++ b/src/IconNearMeDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearMeDisabledRoundedFilled as default } diff --git a/src/IconNearMeDisabledSharpFilled.tsx b/src/IconNearMeDisabledSharpFilled.tsx new file mode 100644 index 000000000..f77dfd6ca --- /dev/null +++ b/src/IconNearMeDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearMeDisabledSharpFilled as default } diff --git a/src/IconNearMeOutlinedFilled.tsx b/src/IconNearMeOutlinedFilled.tsx new file mode 100644 index 000000000..8a27b3734 --- /dev/null +++ b/src/IconNearMeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearMeOutlinedFilled as default } diff --git a/src/IconNearMeRoundedFilled.tsx b/src/IconNearMeRoundedFilled.tsx new file mode 100644 index 000000000..7c57c6ba1 --- /dev/null +++ b/src/IconNearMeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearMeRoundedFilled as default } diff --git a/src/IconNearMeSharpFilled.tsx b/src/IconNearMeSharpFilled.tsx new file mode 100644 index 000000000..02dbb5e01 --- /dev/null +++ b/src/IconNearMeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearMeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearMeSharpFilled as default } diff --git a/src/IconNearbyErrorOutlinedFilled.tsx b/src/IconNearbyErrorOutlinedFilled.tsx new file mode 100644 index 000000000..533ff6e03 --- /dev/null +++ b/src/IconNearbyErrorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyErrorOutlinedFilled as default } diff --git a/src/IconNearbyErrorRoundedFilled.tsx b/src/IconNearbyErrorRoundedFilled.tsx new file mode 100644 index 000000000..37cbbac08 --- /dev/null +++ b/src/IconNearbyErrorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyErrorRoundedFilled as default } diff --git a/src/IconNearbyErrorSharpFilled.tsx b/src/IconNearbyErrorSharpFilled.tsx new file mode 100644 index 000000000..5b15eb36e --- /dev/null +++ b/src/IconNearbyErrorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyErrorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyErrorSharpFilled as default } diff --git a/src/IconNearbyOffOutlinedFilled.tsx b/src/IconNearbyOffOutlinedFilled.tsx new file mode 100644 index 000000000..864acd09e --- /dev/null +++ b/src/IconNearbyOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyOffOutlinedFilled as default } diff --git a/src/IconNearbyOffRoundedFilled.tsx b/src/IconNearbyOffRoundedFilled.tsx new file mode 100644 index 000000000..9823989f8 --- /dev/null +++ b/src/IconNearbyOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyOffRoundedFilled as default } diff --git a/src/IconNearbyOffSharpFilled.tsx b/src/IconNearbyOffSharpFilled.tsx new file mode 100644 index 000000000..be453efb6 --- /dev/null +++ b/src/IconNearbyOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyOffSharpFilled as default } diff --git a/src/IconNearbyOutlinedFilled.tsx b/src/IconNearbyOutlinedFilled.tsx new file mode 100644 index 000000000..7aa457e19 --- /dev/null +++ b/src/IconNearbyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyOutlinedFilled as default } diff --git a/src/IconNearbyRoundedFilled.tsx b/src/IconNearbyRoundedFilled.tsx new file mode 100644 index 000000000..d6cbb12d6 --- /dev/null +++ b/src/IconNearbyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbyRoundedFilled as default } diff --git a/src/IconNearbySharpFilled.tsx b/src/IconNearbySharpFilled.tsx new file mode 100644 index 000000000..f582cad4b --- /dev/null +++ b/src/IconNearbySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNearbySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNearbySharpFilled as default } diff --git a/src/IconNephrologyOutlinedFilled.tsx b/src/IconNephrologyOutlinedFilled.tsx new file mode 100644 index 000000000..9d37a66db --- /dev/null +++ b/src/IconNephrologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNephrologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNephrologyOutlinedFilled as default } diff --git a/src/IconNephrologyRoundedFilled.tsx b/src/IconNephrologyRoundedFilled.tsx new file mode 100644 index 000000000..405386628 --- /dev/null +++ b/src/IconNephrologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNephrologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNephrologyRoundedFilled as default } diff --git a/src/IconNephrologySharpFilled.tsx b/src/IconNephrologySharpFilled.tsx new file mode 100644 index 000000000..eac7d5a06 --- /dev/null +++ b/src/IconNephrologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNephrologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNephrologySharpFilled as default } diff --git a/src/IconNestAudioOutlinedFilled.tsx b/src/IconNestAudioOutlinedFilled.tsx new file mode 100644 index 000000000..742d1bfd8 --- /dev/null +++ b/src/IconNestAudioOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestAudioOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestAudioOutlinedFilled as default } diff --git a/src/IconNestAudioRoundedFilled.tsx b/src/IconNestAudioRoundedFilled.tsx new file mode 100644 index 000000000..81852509a --- /dev/null +++ b/src/IconNestAudioRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestAudioRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestAudioRoundedFilled as default } diff --git a/src/IconNestAudioSharpFilled.tsx b/src/IconNestAudioSharpFilled.tsx new file mode 100644 index 000000000..e125c279a --- /dev/null +++ b/src/IconNestAudioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestAudioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestAudioSharpFilled as default } diff --git a/src/IconNestCamFloodlightOutlinedFilled.tsx b/src/IconNestCamFloodlightOutlinedFilled.tsx new file mode 100644 index 000000000..eda29ac0e --- /dev/null +++ b/src/IconNestCamFloodlightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamFloodlightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamFloodlightOutlinedFilled as default } diff --git a/src/IconNestCamFloodlightRoundedFilled.tsx b/src/IconNestCamFloodlightRoundedFilled.tsx new file mode 100644 index 000000000..8a1530b51 --- /dev/null +++ b/src/IconNestCamFloodlightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamFloodlightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamFloodlightRoundedFilled as default } diff --git a/src/IconNestCamFloodlightSharpFilled.tsx b/src/IconNestCamFloodlightSharpFilled.tsx new file mode 100644 index 000000000..a3b0bbfa3 --- /dev/null +++ b/src/IconNestCamFloodlightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamFloodlightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamFloodlightSharpFilled as default } diff --git a/src/IconNestCamIndoorOutlinedFilled.tsx b/src/IconNestCamIndoorOutlinedFilled.tsx new file mode 100644 index 000000000..2c2d4270f --- /dev/null +++ b/src/IconNestCamIndoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIndoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIndoorOutlinedFilled as default } diff --git a/src/IconNestCamIndoorRoundedFilled.tsx b/src/IconNestCamIndoorRoundedFilled.tsx new file mode 100644 index 000000000..fa8da861f --- /dev/null +++ b/src/IconNestCamIndoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIndoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIndoorRoundedFilled as default } diff --git a/src/IconNestCamIndoorSharpFilled.tsx b/src/IconNestCamIndoorSharpFilled.tsx new file mode 100644 index 000000000..d69963294 --- /dev/null +++ b/src/IconNestCamIndoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIndoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIndoorSharpFilled as default } diff --git a/src/IconNestCamIqOutdoorOutlinedFilled.tsx b/src/IconNestCamIqOutdoorOutlinedFilled.tsx new file mode 100644 index 000000000..661b202d0 --- /dev/null +++ b/src/IconNestCamIqOutdoorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIqOutdoorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIqOutdoorOutlinedFilled as default } diff --git a/src/IconNestCamIqOutdoorRoundedFilled.tsx b/src/IconNestCamIqOutdoorRoundedFilled.tsx new file mode 100644 index 000000000..b25b56cbe --- /dev/null +++ b/src/IconNestCamIqOutdoorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIqOutdoorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIqOutdoorRoundedFilled as default } diff --git a/src/IconNestCamIqOutdoorSharpFilled.tsx b/src/IconNestCamIqOutdoorSharpFilled.tsx new file mode 100644 index 000000000..40602fc05 --- /dev/null +++ b/src/IconNestCamIqOutdoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIqOutdoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIqOutdoorSharpFilled as default } diff --git a/src/IconNestCamIqOutlinedFilled.tsx b/src/IconNestCamIqOutlinedFilled.tsx new file mode 100644 index 000000000..1f2fb3792 --- /dev/null +++ b/src/IconNestCamIqOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIqOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIqOutlinedFilled as default } diff --git a/src/IconNestCamIqRoundedFilled.tsx b/src/IconNestCamIqRoundedFilled.tsx new file mode 100644 index 000000000..2abc88fc2 --- /dev/null +++ b/src/IconNestCamIqRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIqRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIqRoundedFilled as default } diff --git a/src/IconNestCamIqSharpFilled.tsx b/src/IconNestCamIqSharpFilled.tsx new file mode 100644 index 000000000..894ff6da4 --- /dev/null +++ b/src/IconNestCamIqSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamIqSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamIqSharpFilled as default } diff --git a/src/IconNestCamMagnetMountOutlinedFilled.tsx b/src/IconNestCamMagnetMountOutlinedFilled.tsx new file mode 100644 index 000000000..d414f45be --- /dev/null +++ b/src/IconNestCamMagnetMountOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamMagnetMountOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamMagnetMountOutlinedFilled as default } diff --git a/src/IconNestCamMagnetMountRoundedFilled.tsx b/src/IconNestCamMagnetMountRoundedFilled.tsx new file mode 100644 index 000000000..68b133560 --- /dev/null +++ b/src/IconNestCamMagnetMountRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamMagnetMountRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamMagnetMountRoundedFilled as default } diff --git a/src/IconNestCamMagnetMountSharpFilled.tsx b/src/IconNestCamMagnetMountSharpFilled.tsx new file mode 100644 index 000000000..5f0ff8165 --- /dev/null +++ b/src/IconNestCamMagnetMountSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamMagnetMountSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamMagnetMountSharpFilled as default } diff --git a/src/IconNestCamOutdoorOutlinedFilled.tsx b/src/IconNestCamOutdoorOutlinedFilled.tsx new file mode 100644 index 000000000..c223ae3c1 --- /dev/null +++ b/src/IconNestCamOutdoorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamOutdoorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamOutdoorOutlinedFilled as default } diff --git a/src/IconNestCamOutdoorRoundedFilled.tsx b/src/IconNestCamOutdoorRoundedFilled.tsx new file mode 100644 index 000000000..5e8a3302d --- /dev/null +++ b/src/IconNestCamOutdoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamOutdoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamOutdoorRoundedFilled as default } diff --git a/src/IconNestCamOutdoorSharpFilled.tsx b/src/IconNestCamOutdoorSharpFilled.tsx new file mode 100644 index 000000000..591a40915 --- /dev/null +++ b/src/IconNestCamOutdoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamOutdoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamOutdoorSharpFilled as default } diff --git a/src/IconNestCamStandOutlinedFilled.tsx b/src/IconNestCamStandOutlinedFilled.tsx new file mode 100644 index 000000000..5a96798b0 --- /dev/null +++ b/src/IconNestCamStandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamStandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamStandOutlinedFilled as default } diff --git a/src/IconNestCamStandRoundedFilled.tsx b/src/IconNestCamStandRoundedFilled.tsx new file mode 100644 index 000000000..c81354288 --- /dev/null +++ b/src/IconNestCamStandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamStandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamStandRoundedFilled as default } diff --git a/src/IconNestCamStandSharpFilled.tsx b/src/IconNestCamStandSharpFilled.tsx new file mode 100644 index 000000000..51c1e62df --- /dev/null +++ b/src/IconNestCamStandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamStandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamStandSharpFilled as default } diff --git a/src/IconNestCamWallMountOutlinedFilled.tsx b/src/IconNestCamWallMountOutlinedFilled.tsx new file mode 100644 index 000000000..4411b1bc0 --- /dev/null +++ b/src/IconNestCamWallMountOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWallMountOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamWallMountOutlinedFilled as default } diff --git a/src/IconNestCamWallMountRoundedFilled.tsx b/src/IconNestCamWallMountRoundedFilled.tsx new file mode 100644 index 000000000..18c96b559 --- /dev/null +++ b/src/IconNestCamWallMountRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWallMountRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamWallMountRoundedFilled as default } diff --git a/src/IconNestCamWallMountSharpFilled.tsx b/src/IconNestCamWallMountSharpFilled.tsx new file mode 100644 index 000000000..185684ac0 --- /dev/null +++ b/src/IconNestCamWallMountSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWallMountSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamWallMountSharpFilled as default } diff --git a/src/IconNestCamWiredStandOutlinedFilled.tsx b/src/IconNestCamWiredStandOutlinedFilled.tsx new file mode 100644 index 000000000..f91bcbeb7 --- /dev/null +++ b/src/IconNestCamWiredStandOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamWiredStandOutlinedFilled as default } diff --git a/src/IconNestCamWiredStandRoundedFilled.tsx b/src/IconNestCamWiredStandRoundedFilled.tsx new file mode 100644 index 000000000..3bf6c0d7f --- /dev/null +++ b/src/IconNestCamWiredStandRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamWiredStandRoundedFilled as default } diff --git a/src/IconNestCamWiredStandSharpFilled.tsx b/src/IconNestCamWiredStandSharpFilled.tsx new file mode 100644 index 000000000..6beb69a33 --- /dev/null +++ b/src/IconNestCamWiredStandSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestCamWiredStandSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestCamWiredStandSharpFilled as default } diff --git a/src/IconNestClockFarsightAnalogOutlinedFilled.tsx b/src/IconNestClockFarsightAnalogOutlinedFilled.tsx new file mode 100644 index 000000000..67fde4744 --- /dev/null +++ b/src/IconNestClockFarsightAnalogOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestClockFarsightAnalogOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestClockFarsightAnalogOutlinedFilled as default } diff --git a/src/IconNestClockFarsightAnalogRoundedFilled.tsx b/src/IconNestClockFarsightAnalogRoundedFilled.tsx new file mode 100644 index 000000000..bd92d7bf5 --- /dev/null +++ b/src/IconNestClockFarsightAnalogRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestClockFarsightAnalogRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestClockFarsightAnalogRoundedFilled as default } diff --git a/src/IconNestClockFarsightAnalogSharpFilled.tsx b/src/IconNestClockFarsightAnalogSharpFilled.tsx new file mode 100644 index 000000000..65cb3542a --- /dev/null +++ b/src/IconNestClockFarsightAnalogSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestClockFarsightAnalogSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestClockFarsightAnalogSharpFilled as default } diff --git a/src/IconNestClockFarsightDigitalOutlinedFilled.tsx b/src/IconNestClockFarsightDigitalOutlinedFilled.tsx new file mode 100644 index 000000000..2706adb62 --- /dev/null +++ b/src/IconNestClockFarsightDigitalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestClockFarsightDigitalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestClockFarsightDigitalOutlinedFilled as default } diff --git a/src/IconNestClockFarsightDigitalRoundedFilled.tsx b/src/IconNestClockFarsightDigitalRoundedFilled.tsx new file mode 100644 index 000000000..162ecee2b --- /dev/null +++ b/src/IconNestClockFarsightDigitalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestClockFarsightDigitalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestClockFarsightDigitalRoundedFilled as default } diff --git a/src/IconNestClockFarsightDigitalSharpFilled.tsx b/src/IconNestClockFarsightDigitalSharpFilled.tsx new file mode 100644 index 000000000..b73ca4113 --- /dev/null +++ b/src/IconNestClockFarsightDigitalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestClockFarsightDigitalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestClockFarsightDigitalSharpFilled as default } diff --git a/src/IconNestConnectOutlinedFilled.tsx b/src/IconNestConnectOutlinedFilled.tsx new file mode 100644 index 000000000..dd9fc65b6 --- /dev/null +++ b/src/IconNestConnectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestConnectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestConnectOutlinedFilled as default } diff --git a/src/IconNestConnectRoundedFilled.tsx b/src/IconNestConnectRoundedFilled.tsx new file mode 100644 index 000000000..007c5c0c4 --- /dev/null +++ b/src/IconNestConnectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestConnectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestConnectRoundedFilled as default } diff --git a/src/IconNestConnectSharpFilled.tsx b/src/IconNestConnectSharpFilled.tsx new file mode 100644 index 000000000..dedcaa3ff --- /dev/null +++ b/src/IconNestConnectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestConnectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestConnectSharpFilled as default } diff --git a/src/IconNestDetectOutlinedFilled.tsx b/src/IconNestDetectOutlinedFilled.tsx new file mode 100644 index 000000000..524e92070 --- /dev/null +++ b/src/IconNestDetectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDetectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDetectOutlinedFilled as default } diff --git a/src/IconNestDetectRoundedFilled.tsx b/src/IconNestDetectRoundedFilled.tsx new file mode 100644 index 000000000..b5f24431b --- /dev/null +++ b/src/IconNestDetectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDetectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDetectRoundedFilled as default } diff --git a/src/IconNestDetectSharpFilled.tsx b/src/IconNestDetectSharpFilled.tsx new file mode 100644 index 000000000..8222bceb8 --- /dev/null +++ b/src/IconNestDetectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDetectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDetectSharpFilled as default } diff --git a/src/IconNestDisplayMaxOutlinedFilled.tsx b/src/IconNestDisplayMaxOutlinedFilled.tsx new file mode 100644 index 000000000..620e33d9a --- /dev/null +++ b/src/IconNestDisplayMaxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDisplayMaxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDisplayMaxOutlinedFilled as default } diff --git a/src/IconNestDisplayMaxRoundedFilled.tsx b/src/IconNestDisplayMaxRoundedFilled.tsx new file mode 100644 index 000000000..f534dec29 --- /dev/null +++ b/src/IconNestDisplayMaxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDisplayMaxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDisplayMaxRoundedFilled as default } diff --git a/src/IconNestDisplayMaxSharpFilled.tsx b/src/IconNestDisplayMaxSharpFilled.tsx new file mode 100644 index 000000000..e4dcde37a --- /dev/null +++ b/src/IconNestDisplayMaxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDisplayMaxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDisplayMaxSharpFilled as default } diff --git a/src/IconNestDisplayOutlinedFilled.tsx b/src/IconNestDisplayOutlinedFilled.tsx new file mode 100644 index 000000000..12621cecf --- /dev/null +++ b/src/IconNestDisplayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDisplayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDisplayOutlinedFilled as default } diff --git a/src/IconNestDisplayRoundedFilled.tsx b/src/IconNestDisplayRoundedFilled.tsx new file mode 100644 index 000000000..35fdf2241 --- /dev/null +++ b/src/IconNestDisplayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDisplayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDisplayRoundedFilled as default } diff --git a/src/IconNestDisplaySharpFilled.tsx b/src/IconNestDisplaySharpFilled.tsx new file mode 100644 index 000000000..1fdadcde3 --- /dev/null +++ b/src/IconNestDisplaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDisplaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDisplaySharpFilled as default } diff --git a/src/IconNestDoorbellVisitorOutlinedFilled.tsx b/src/IconNestDoorbellVisitorOutlinedFilled.tsx new file mode 100644 index 000000000..c3e3754b3 --- /dev/null +++ b/src/IconNestDoorbellVisitorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDoorbellVisitorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDoorbellVisitorOutlinedFilled as default } diff --git a/src/IconNestDoorbellVisitorRoundedFilled.tsx b/src/IconNestDoorbellVisitorRoundedFilled.tsx new file mode 100644 index 000000000..48566bffa --- /dev/null +++ b/src/IconNestDoorbellVisitorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDoorbellVisitorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDoorbellVisitorRoundedFilled as default } diff --git a/src/IconNestDoorbellVisitorSharpFilled.tsx b/src/IconNestDoorbellVisitorSharpFilled.tsx new file mode 100644 index 000000000..c48bb34ae --- /dev/null +++ b/src/IconNestDoorbellVisitorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestDoorbellVisitorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestDoorbellVisitorSharpFilled as default } diff --git a/src/IconNestEcoLeafOutlinedFilled.tsx b/src/IconNestEcoLeafOutlinedFilled.tsx new file mode 100644 index 000000000..90faa7392 --- /dev/null +++ b/src/IconNestEcoLeafOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestEcoLeafOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestEcoLeafOutlinedFilled as default } diff --git a/src/IconNestEcoLeafRoundedFilled.tsx b/src/IconNestEcoLeafRoundedFilled.tsx new file mode 100644 index 000000000..5370dbdd3 --- /dev/null +++ b/src/IconNestEcoLeafRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestEcoLeafRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestEcoLeafRoundedFilled as default } diff --git a/src/IconNestEcoLeafSharpFilled.tsx b/src/IconNestEcoLeafSharpFilled.tsx new file mode 100644 index 000000000..0b26a12d0 --- /dev/null +++ b/src/IconNestEcoLeafSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestEcoLeafSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestEcoLeafSharpFilled as default } diff --git a/src/IconNestFarsightWeatherOutlinedFilled.tsx b/src/IconNestFarsightWeatherOutlinedFilled.tsx new file mode 100644 index 000000000..663e2ef5d --- /dev/null +++ b/src/IconNestFarsightWeatherOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestFarsightWeatherOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestFarsightWeatherOutlinedFilled as default } diff --git a/src/IconNestFarsightWeatherRoundedFilled.tsx b/src/IconNestFarsightWeatherRoundedFilled.tsx new file mode 100644 index 000000000..b93277b0b --- /dev/null +++ b/src/IconNestFarsightWeatherRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestFarsightWeatherRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestFarsightWeatherRoundedFilled as default } diff --git a/src/IconNestFarsightWeatherSharpFilled.tsx b/src/IconNestFarsightWeatherSharpFilled.tsx new file mode 100644 index 000000000..24c78c45e --- /dev/null +++ b/src/IconNestFarsightWeatherSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestFarsightWeatherSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestFarsightWeatherSharpFilled as default } diff --git a/src/IconNestFoundSavingsOutlinedFilled.tsx b/src/IconNestFoundSavingsOutlinedFilled.tsx new file mode 100644 index 000000000..e6554b13b --- /dev/null +++ b/src/IconNestFoundSavingsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestFoundSavingsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestFoundSavingsOutlinedFilled as default } diff --git a/src/IconNestFoundSavingsRoundedFilled.tsx b/src/IconNestFoundSavingsRoundedFilled.tsx new file mode 100644 index 000000000..23855c8a5 --- /dev/null +++ b/src/IconNestFoundSavingsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestFoundSavingsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestFoundSavingsRoundedFilled as default } diff --git a/src/IconNestFoundSavingsSharpFilled.tsx b/src/IconNestFoundSavingsSharpFilled.tsx new file mode 100644 index 000000000..1456b10c5 --- /dev/null +++ b/src/IconNestFoundSavingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestFoundSavingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestFoundSavingsSharpFilled as default } diff --git a/src/IconNestGaleWifiOutlinedFilled.tsx b/src/IconNestGaleWifiOutlinedFilled.tsx new file mode 100644 index 000000000..8b6a7bccb --- /dev/null +++ b/src/IconNestGaleWifiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestGaleWifiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestGaleWifiOutlinedFilled as default } diff --git a/src/IconNestGaleWifiRoundedFilled.tsx b/src/IconNestGaleWifiRoundedFilled.tsx new file mode 100644 index 000000000..68b442b49 --- /dev/null +++ b/src/IconNestGaleWifiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestGaleWifiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestGaleWifiRoundedFilled as default } diff --git a/src/IconNestGaleWifiSharpFilled.tsx b/src/IconNestGaleWifiSharpFilled.tsx new file mode 100644 index 000000000..9003a9926 --- /dev/null +++ b/src/IconNestGaleWifiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestGaleWifiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestGaleWifiSharpFilled as default } diff --git a/src/IconNestHeatLinkEOutlinedFilled.tsx b/src/IconNestHeatLinkEOutlinedFilled.tsx new file mode 100644 index 000000000..7049583ff --- /dev/null +++ b/src/IconNestHeatLinkEOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHeatLinkEOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHeatLinkEOutlinedFilled as default } diff --git a/src/IconNestHeatLinkERoundedFilled.tsx b/src/IconNestHeatLinkERoundedFilled.tsx new file mode 100644 index 000000000..783c788ac --- /dev/null +++ b/src/IconNestHeatLinkERoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHeatLinkERoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHeatLinkERoundedFilled as default } diff --git a/src/IconNestHeatLinkESharpFilled.tsx b/src/IconNestHeatLinkESharpFilled.tsx new file mode 100644 index 000000000..1d6f2c497 --- /dev/null +++ b/src/IconNestHeatLinkESharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHeatLinkESharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHeatLinkESharpFilled as default } diff --git a/src/IconNestHeatLinkGen3OutlinedFilled.tsx b/src/IconNestHeatLinkGen3OutlinedFilled.tsx new file mode 100644 index 000000000..b5455d8ff --- /dev/null +++ b/src/IconNestHeatLinkGen3OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHeatLinkGen3OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHeatLinkGen3OutlinedFilled as default } diff --git a/src/IconNestHeatLinkGen3RoundedFilled.tsx b/src/IconNestHeatLinkGen3RoundedFilled.tsx new file mode 100644 index 000000000..ade5ad5fa --- /dev/null +++ b/src/IconNestHeatLinkGen3RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHeatLinkGen3RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHeatLinkGen3RoundedFilled as default } diff --git a/src/IconNestHeatLinkGen3SharpFilled.tsx b/src/IconNestHeatLinkGen3SharpFilled.tsx new file mode 100644 index 000000000..f6c075bdb --- /dev/null +++ b/src/IconNestHeatLinkGen3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHeatLinkGen3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHeatLinkGen3SharpFilled as default } diff --git a/src/IconNestHelloDoorbellOutlinedFilled.tsx b/src/IconNestHelloDoorbellOutlinedFilled.tsx new file mode 100644 index 000000000..0676e08e8 --- /dev/null +++ b/src/IconNestHelloDoorbellOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHelloDoorbellOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHelloDoorbellOutlinedFilled as default } diff --git a/src/IconNestHelloDoorbellRoundedFilled.tsx b/src/IconNestHelloDoorbellRoundedFilled.tsx new file mode 100644 index 000000000..41cc7894b --- /dev/null +++ b/src/IconNestHelloDoorbellRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHelloDoorbellRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHelloDoorbellRoundedFilled as default } diff --git a/src/IconNestHelloDoorbellSharpFilled.tsx b/src/IconNestHelloDoorbellSharpFilled.tsx new file mode 100644 index 000000000..e28f9a4cf --- /dev/null +++ b/src/IconNestHelloDoorbellSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestHelloDoorbellSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestHelloDoorbellSharpFilled as default } diff --git a/src/IconNestMiniOutlinedFilled.tsx b/src/IconNestMiniOutlinedFilled.tsx new file mode 100644 index 000000000..7b3607142 --- /dev/null +++ b/src/IconNestMiniOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestMiniOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestMiniOutlinedFilled as default } diff --git a/src/IconNestMiniRoundedFilled.tsx b/src/IconNestMiniRoundedFilled.tsx new file mode 100644 index 000000000..25e278212 --- /dev/null +++ b/src/IconNestMiniRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestMiniRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestMiniRoundedFilled as default } diff --git a/src/IconNestMiniSharpFilled.tsx b/src/IconNestMiniSharpFilled.tsx new file mode 100644 index 000000000..408822b57 --- /dev/null +++ b/src/IconNestMiniSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestMiniSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestMiniSharpFilled as default } diff --git a/src/IconNestMultiRoomOutlinedFilled.tsx b/src/IconNestMultiRoomOutlinedFilled.tsx new file mode 100644 index 000000000..7f11a05af --- /dev/null +++ b/src/IconNestMultiRoomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestMultiRoomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestMultiRoomOutlinedFilled as default } diff --git a/src/IconNestMultiRoomRoundedFilled.tsx b/src/IconNestMultiRoomRoundedFilled.tsx new file mode 100644 index 000000000..62e5057d2 --- /dev/null +++ b/src/IconNestMultiRoomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestMultiRoomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestMultiRoomRoundedFilled as default } diff --git a/src/IconNestMultiRoomSharpFilled.tsx b/src/IconNestMultiRoomSharpFilled.tsx new file mode 100644 index 000000000..bfdcfba1d --- /dev/null +++ b/src/IconNestMultiRoomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestMultiRoomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestMultiRoomSharpFilled as default } diff --git a/src/IconNestProtectOutlinedFilled.tsx b/src/IconNestProtectOutlinedFilled.tsx new file mode 100644 index 000000000..37adaaec2 --- /dev/null +++ b/src/IconNestProtectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestProtectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestProtectOutlinedFilled as default } diff --git a/src/IconNestProtectRoundedFilled.tsx b/src/IconNestProtectRoundedFilled.tsx new file mode 100644 index 000000000..f6efadb33 --- /dev/null +++ b/src/IconNestProtectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestProtectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestProtectRoundedFilled as default } diff --git a/src/IconNestProtectSharpFilled.tsx b/src/IconNestProtectSharpFilled.tsx new file mode 100644 index 000000000..71d780310 --- /dev/null +++ b/src/IconNestProtectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestProtectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestProtectSharpFilled as default } diff --git a/src/IconNestRemoteComfortSensorOutlinedFilled.tsx b/src/IconNestRemoteComfortSensorOutlinedFilled.tsx new file mode 100644 index 000000000..bb60923fa --- /dev/null +++ b/src/IconNestRemoteComfortSensorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestRemoteComfortSensorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestRemoteComfortSensorOutlinedFilled as default } diff --git a/src/IconNestRemoteComfortSensorRoundedFilled.tsx b/src/IconNestRemoteComfortSensorRoundedFilled.tsx new file mode 100644 index 000000000..4cb944128 --- /dev/null +++ b/src/IconNestRemoteComfortSensorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestRemoteComfortSensorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestRemoteComfortSensorRoundedFilled as default } diff --git a/src/IconNestRemoteComfortSensorSharpFilled.tsx b/src/IconNestRemoteComfortSensorSharpFilled.tsx new file mode 100644 index 000000000..2f1886408 --- /dev/null +++ b/src/IconNestRemoteComfortSensorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestRemoteComfortSensorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestRemoteComfortSensorSharpFilled as default } diff --git a/src/IconNestRemoteOutlinedFilled.tsx b/src/IconNestRemoteOutlinedFilled.tsx new file mode 100644 index 000000000..6306c2314 --- /dev/null +++ b/src/IconNestRemoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestRemoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestRemoteOutlinedFilled as default } diff --git a/src/IconNestRemoteRoundedFilled.tsx b/src/IconNestRemoteRoundedFilled.tsx new file mode 100644 index 000000000..82420df19 --- /dev/null +++ b/src/IconNestRemoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestRemoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestRemoteRoundedFilled as default } diff --git a/src/IconNestRemoteSharpFilled.tsx b/src/IconNestRemoteSharpFilled.tsx new file mode 100644 index 000000000..a1c3d6bdf --- /dev/null +++ b/src/IconNestRemoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestRemoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestRemoteSharpFilled as default } diff --git a/src/IconNestSecureAlarmOutlinedFilled.tsx b/src/IconNestSecureAlarmOutlinedFilled.tsx new file mode 100644 index 000000000..6a3126715 --- /dev/null +++ b/src/IconNestSecureAlarmOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestSecureAlarmOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestSecureAlarmOutlinedFilled as default } diff --git a/src/IconNestSecureAlarmRoundedFilled.tsx b/src/IconNestSecureAlarmRoundedFilled.tsx new file mode 100644 index 000000000..4cb81f486 --- /dev/null +++ b/src/IconNestSecureAlarmRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestSecureAlarmRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestSecureAlarmRoundedFilled as default } diff --git a/src/IconNestSecureAlarmSharpFilled.tsx b/src/IconNestSecureAlarmSharpFilled.tsx new file mode 100644 index 000000000..6e51dc0db --- /dev/null +++ b/src/IconNestSecureAlarmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestSecureAlarmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestSecureAlarmSharpFilled as default } diff --git a/src/IconNestSunblockOutlinedFilled.tsx b/src/IconNestSunblockOutlinedFilled.tsx new file mode 100644 index 000000000..d3b443681 --- /dev/null +++ b/src/IconNestSunblockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestSunblockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestSunblockOutlinedFilled as default } diff --git a/src/IconNestSunblockRoundedFilled.tsx b/src/IconNestSunblockRoundedFilled.tsx new file mode 100644 index 000000000..7dd3021dd --- /dev/null +++ b/src/IconNestSunblockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestSunblockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestSunblockRoundedFilled as default } diff --git a/src/IconNestSunblockSharpFilled.tsx b/src/IconNestSunblockSharpFilled.tsx new file mode 100644 index 000000000..3bf3571c6 --- /dev/null +++ b/src/IconNestSunblockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestSunblockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestSunblockSharpFilled as default } diff --git a/src/IconNestTagOutlinedFilled.tsx b/src/IconNestTagOutlinedFilled.tsx new file mode 100644 index 000000000..f003e83a4 --- /dev/null +++ b/src/IconNestTagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestTagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestTagOutlinedFilled as default } diff --git a/src/IconNestTagRoundedFilled.tsx b/src/IconNestTagRoundedFilled.tsx new file mode 100644 index 000000000..f16882eb6 --- /dev/null +++ b/src/IconNestTagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestTagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestTagRoundedFilled as default } diff --git a/src/IconNestTagSharpFilled.tsx b/src/IconNestTagSharpFilled.tsx new file mode 100644 index 000000000..2171d8995 --- /dev/null +++ b/src/IconNestTagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestTagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestTagSharpFilled as default } diff --git a/src/IconNestThermostatEEuOutlinedFilled.tsx b/src/IconNestThermostatEEuOutlinedFilled.tsx new file mode 100644 index 000000000..193e62b0b --- /dev/null +++ b/src/IconNestThermostatEEuOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatEEuOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatEEuOutlinedFilled as default } diff --git a/src/IconNestThermostatEEuRoundedFilled.tsx b/src/IconNestThermostatEEuRoundedFilled.tsx new file mode 100644 index 000000000..2fe993adb --- /dev/null +++ b/src/IconNestThermostatEEuRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatEEuRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatEEuRoundedFilled as default } diff --git a/src/IconNestThermostatEEuSharpFilled.tsx b/src/IconNestThermostatEEuSharpFilled.tsx new file mode 100644 index 000000000..663d760c2 --- /dev/null +++ b/src/IconNestThermostatEEuSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatEEuSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatEEuSharpFilled as default } diff --git a/src/IconNestThermostatGen3OutlinedFilled.tsx b/src/IconNestThermostatGen3OutlinedFilled.tsx new file mode 100644 index 000000000..6f00289c1 --- /dev/null +++ b/src/IconNestThermostatGen3OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatGen3OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatGen3OutlinedFilled as default } diff --git a/src/IconNestThermostatGen3RoundedFilled.tsx b/src/IconNestThermostatGen3RoundedFilled.tsx new file mode 100644 index 000000000..3a436772e --- /dev/null +++ b/src/IconNestThermostatGen3RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatGen3RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatGen3RoundedFilled as default } diff --git a/src/IconNestThermostatGen3SharpFilled.tsx b/src/IconNestThermostatGen3SharpFilled.tsx new file mode 100644 index 000000000..bcc9f663e --- /dev/null +++ b/src/IconNestThermostatGen3SharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatGen3SharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatGen3SharpFilled as default } diff --git a/src/IconNestThermostatOutlinedFilled.tsx b/src/IconNestThermostatOutlinedFilled.tsx new file mode 100644 index 000000000..c24f9977a --- /dev/null +++ b/src/IconNestThermostatOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatOutlinedFilled as default } diff --git a/src/IconNestThermostatRoundedFilled.tsx b/src/IconNestThermostatRoundedFilled.tsx new file mode 100644 index 000000000..14eb46749 --- /dev/null +++ b/src/IconNestThermostatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatRoundedFilled as default } diff --git a/src/IconNestThermostatSensorEuOutlinedFilled.tsx b/src/IconNestThermostatSensorEuOutlinedFilled.tsx new file mode 100644 index 000000000..3c1ef36e9 --- /dev/null +++ b/src/IconNestThermostatSensorEuOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSensorEuOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSensorEuOutlinedFilled as default } diff --git a/src/IconNestThermostatSensorEuRoundedFilled.tsx b/src/IconNestThermostatSensorEuRoundedFilled.tsx new file mode 100644 index 000000000..3a4771a64 --- /dev/null +++ b/src/IconNestThermostatSensorEuRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSensorEuRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSensorEuRoundedFilled as default } diff --git a/src/IconNestThermostatSensorEuSharpFilled.tsx b/src/IconNestThermostatSensorEuSharpFilled.tsx new file mode 100644 index 000000000..176542ec5 --- /dev/null +++ b/src/IconNestThermostatSensorEuSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSensorEuSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSensorEuSharpFilled as default } diff --git a/src/IconNestThermostatSensorOutlinedFilled.tsx b/src/IconNestThermostatSensorOutlinedFilled.tsx new file mode 100644 index 000000000..43b563e3a --- /dev/null +++ b/src/IconNestThermostatSensorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSensorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSensorOutlinedFilled as default } diff --git a/src/IconNestThermostatSensorRoundedFilled.tsx b/src/IconNestThermostatSensorRoundedFilled.tsx new file mode 100644 index 000000000..cf98ad013 --- /dev/null +++ b/src/IconNestThermostatSensorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSensorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSensorRoundedFilled as default } diff --git a/src/IconNestThermostatSensorSharpFilled.tsx b/src/IconNestThermostatSensorSharpFilled.tsx new file mode 100644 index 000000000..b91bdf069 --- /dev/null +++ b/src/IconNestThermostatSensorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSensorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSensorSharpFilled as default } diff --git a/src/IconNestThermostatSharpFilled.tsx b/src/IconNestThermostatSharpFilled.tsx new file mode 100644 index 000000000..b43e15cc4 --- /dev/null +++ b/src/IconNestThermostatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatSharpFilled as default } diff --git a/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx b/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx new file mode 100644 index 000000000..c6d167ac0 --- /dev/null +++ b/src/IconNestThermostatZirconiumEuOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatZirconiumEuOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatZirconiumEuOutlinedFilled as default } diff --git a/src/IconNestThermostatZirconiumEuRoundedFilled.tsx b/src/IconNestThermostatZirconiumEuRoundedFilled.tsx new file mode 100644 index 000000000..dddc33203 --- /dev/null +++ b/src/IconNestThermostatZirconiumEuRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatZirconiumEuRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatZirconiumEuRoundedFilled as default } diff --git a/src/IconNestThermostatZirconiumEuSharpFilled.tsx b/src/IconNestThermostatZirconiumEuSharpFilled.tsx new file mode 100644 index 000000000..c5c6ad7a4 --- /dev/null +++ b/src/IconNestThermostatZirconiumEuSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestThermostatZirconiumEuSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestThermostatZirconiumEuSharpFilled as default } diff --git a/src/IconNestTrueRadiantOutlinedFilled.tsx b/src/IconNestTrueRadiantOutlinedFilled.tsx new file mode 100644 index 000000000..1809d0e37 --- /dev/null +++ b/src/IconNestTrueRadiantOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestTrueRadiantOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestTrueRadiantOutlinedFilled as default } diff --git a/src/IconNestTrueRadiantRoundedFilled.tsx b/src/IconNestTrueRadiantRoundedFilled.tsx new file mode 100644 index 000000000..654dc778b --- /dev/null +++ b/src/IconNestTrueRadiantRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestTrueRadiantRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestTrueRadiantRoundedFilled as default } diff --git a/src/IconNestTrueRadiantSharpFilled.tsx b/src/IconNestTrueRadiantSharpFilled.tsx new file mode 100644 index 000000000..928c0e670 --- /dev/null +++ b/src/IconNestTrueRadiantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestTrueRadiantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestTrueRadiantSharpFilled as default } diff --git a/src/IconNestWakeOnApproachOutlinedFilled.tsx b/src/IconNestWakeOnApproachOutlinedFilled.tsx new file mode 100644 index 000000000..435c49c3c --- /dev/null +++ b/src/IconNestWakeOnApproachOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWakeOnApproachOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWakeOnApproachOutlinedFilled as default } diff --git a/src/IconNestWakeOnApproachRoundedFilled.tsx b/src/IconNestWakeOnApproachRoundedFilled.tsx new file mode 100644 index 000000000..1a7865833 --- /dev/null +++ b/src/IconNestWakeOnApproachRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWakeOnApproachRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWakeOnApproachRoundedFilled as default } diff --git a/src/IconNestWakeOnApproachSharpFilled.tsx b/src/IconNestWakeOnApproachSharpFilled.tsx new file mode 100644 index 000000000..313291c64 --- /dev/null +++ b/src/IconNestWakeOnApproachSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWakeOnApproachSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWakeOnApproachSharpFilled as default } diff --git a/src/IconNestWakeOnPressOutlinedFilled.tsx b/src/IconNestWakeOnPressOutlinedFilled.tsx new file mode 100644 index 000000000..419ead9fd --- /dev/null +++ b/src/IconNestWakeOnPressOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWakeOnPressOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWakeOnPressOutlinedFilled as default } diff --git a/src/IconNestWakeOnPressRoundedFilled.tsx b/src/IconNestWakeOnPressRoundedFilled.tsx new file mode 100644 index 000000000..ffcf6c113 --- /dev/null +++ b/src/IconNestWakeOnPressRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWakeOnPressRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWakeOnPressRoundedFilled as default } diff --git a/src/IconNestWakeOnPressSharpFilled.tsx b/src/IconNestWakeOnPressSharpFilled.tsx new file mode 100644 index 000000000..1bfc32cca --- /dev/null +++ b/src/IconNestWakeOnPressSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWakeOnPressSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWakeOnPressSharpFilled as default } diff --git a/src/IconNestWifiPointOutlinedFilled.tsx b/src/IconNestWifiPointOutlinedFilled.tsx new file mode 100644 index 000000000..7e0deaae2 --- /dev/null +++ b/src/IconNestWifiPointOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiPointOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiPointOutlinedFilled as default } diff --git a/src/IconNestWifiPointRoundedFilled.tsx b/src/IconNestWifiPointRoundedFilled.tsx new file mode 100644 index 000000000..691efc8cc --- /dev/null +++ b/src/IconNestWifiPointRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiPointRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiPointRoundedFilled as default } diff --git a/src/IconNestWifiPointSharpFilled.tsx b/src/IconNestWifiPointSharpFilled.tsx new file mode 100644 index 000000000..93fafe025 --- /dev/null +++ b/src/IconNestWifiPointSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiPointSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiPointSharpFilled as default } diff --git a/src/IconNestWifiPro2OutlinedFilled.tsx b/src/IconNestWifiPro2OutlinedFilled.tsx new file mode 100644 index 000000000..6ada87a3f --- /dev/null +++ b/src/IconNestWifiPro2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiPro2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiPro2OutlinedFilled as default } diff --git a/src/IconNestWifiPro2RoundedFilled.tsx b/src/IconNestWifiPro2RoundedFilled.tsx new file mode 100644 index 000000000..c28e3de89 --- /dev/null +++ b/src/IconNestWifiPro2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiPro2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiPro2RoundedFilled as default } diff --git a/src/IconNestWifiPro2SharpFilled.tsx b/src/IconNestWifiPro2SharpFilled.tsx new file mode 100644 index 000000000..bcc1f0ee8 --- /dev/null +++ b/src/IconNestWifiPro2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiPro2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiPro2SharpFilled as default } diff --git a/src/IconNestWifiProOutlinedFilled.tsx b/src/IconNestWifiProOutlinedFilled.tsx new file mode 100644 index 000000000..da2101bb5 --- /dev/null +++ b/src/IconNestWifiProOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiProOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiProOutlinedFilled as default } diff --git a/src/IconNestWifiProRoundedFilled.tsx b/src/IconNestWifiProRoundedFilled.tsx new file mode 100644 index 000000000..071524ef7 --- /dev/null +++ b/src/IconNestWifiProRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiProRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiProRoundedFilled as default } diff --git a/src/IconNestWifiProSharpFilled.tsx b/src/IconNestWifiProSharpFilled.tsx new file mode 100644 index 000000000..235a43a07 --- /dev/null +++ b/src/IconNestWifiProSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiProSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiProSharpFilled as default } diff --git a/src/IconNestWifiRouterOutlinedFilled.tsx b/src/IconNestWifiRouterOutlinedFilled.tsx new file mode 100644 index 000000000..95f38fe5e --- /dev/null +++ b/src/IconNestWifiRouterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiRouterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiRouterOutlinedFilled as default } diff --git a/src/IconNestWifiRouterRoundedFilled.tsx b/src/IconNestWifiRouterRoundedFilled.tsx new file mode 100644 index 000000000..3f9f11318 --- /dev/null +++ b/src/IconNestWifiRouterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiRouterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiRouterRoundedFilled as default } diff --git a/src/IconNestWifiRouterSharpFilled.tsx b/src/IconNestWifiRouterSharpFilled.tsx new file mode 100644 index 000000000..3fca97710 --- /dev/null +++ b/src/IconNestWifiRouterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNestWifiRouterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNestWifiRouterSharpFilled as default } diff --git a/src/IconNetworkCellOutlinedFilled.tsx b/src/IconNetworkCellOutlinedFilled.tsx new file mode 100644 index 000000000..1549dfcb4 --- /dev/null +++ b/src/IconNetworkCellOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkCellOutlinedFilled as default } diff --git a/src/IconNetworkCellRoundedFilled.tsx b/src/IconNetworkCellRoundedFilled.tsx new file mode 100644 index 000000000..140ec593f --- /dev/null +++ b/src/IconNetworkCellRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkCellRoundedFilled as default } diff --git a/src/IconNetworkCellSharpFilled.tsx b/src/IconNetworkCellSharpFilled.tsx new file mode 100644 index 000000000..e496d40b8 --- /dev/null +++ b/src/IconNetworkCellSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCellSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkCellSharpFilled as default } diff --git a/src/IconNetworkCheckOutlinedFilled.tsx b/src/IconNetworkCheckOutlinedFilled.tsx new file mode 100644 index 000000000..090fe3703 --- /dev/null +++ b/src/IconNetworkCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkCheckOutlinedFilled as default } diff --git a/src/IconNetworkCheckRoundedFilled.tsx b/src/IconNetworkCheckRoundedFilled.tsx new file mode 100644 index 000000000..f2cd11bda --- /dev/null +++ b/src/IconNetworkCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkCheckRoundedFilled as default } diff --git a/src/IconNetworkCheckSharpFilled.tsx b/src/IconNetworkCheckSharpFilled.tsx new file mode 100644 index 000000000..bd2416f85 --- /dev/null +++ b/src/IconNetworkCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkCheckSharpFilled as default } diff --git a/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx b/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..4b3b8ad59 --- /dev/null +++ b/src/IconNetworkIntelligenceHistoryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkIntelligenceHistoryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkIntelligenceHistoryOutlinedFilled as default } diff --git a/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx b/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx new file mode 100644 index 000000000..53f4c3af3 --- /dev/null +++ b/src/IconNetworkIntelligenceHistoryRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkIntelligenceHistoryRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkIntelligenceHistoryRoundedFilled as default } diff --git a/src/IconNetworkIntelligenceHistorySharpFilled.tsx b/src/IconNetworkIntelligenceHistorySharpFilled.tsx new file mode 100644 index 000000000..2d97209ca --- /dev/null +++ b/src/IconNetworkIntelligenceHistorySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkIntelligenceHistorySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkIntelligenceHistorySharpFilled as default } diff --git a/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx b/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx new file mode 100644 index 000000000..b79c00404 --- /dev/null +++ b/src/IconNetworkIntelligenceUpdateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkIntelligenceUpdateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkIntelligenceUpdateOutlinedFilled as default } diff --git a/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx b/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx new file mode 100644 index 000000000..0d148344d --- /dev/null +++ b/src/IconNetworkIntelligenceUpdateRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkIntelligenceUpdateRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkIntelligenceUpdateRoundedFilled as default } diff --git a/src/IconNetworkIntelligenceUpdateSharpFilled.tsx b/src/IconNetworkIntelligenceUpdateSharpFilled.tsx new file mode 100644 index 000000000..e59757ae6 --- /dev/null +++ b/src/IconNetworkIntelligenceUpdateSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkIntelligenceUpdateSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkIntelligenceUpdateSharpFilled as default } diff --git a/src/IconNetworkLockedOutlinedFilled.tsx b/src/IconNetworkLockedOutlinedFilled.tsx new file mode 100644 index 000000000..a2a64cf05 --- /dev/null +++ b/src/IconNetworkLockedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkLockedOutlinedFilled as default } diff --git a/src/IconNetworkLockedRoundedFilled.tsx b/src/IconNetworkLockedRoundedFilled.tsx new file mode 100644 index 000000000..e1667dd53 --- /dev/null +++ b/src/IconNetworkLockedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkLockedRoundedFilled as default } diff --git a/src/IconNetworkLockedSharpFilled.tsx b/src/IconNetworkLockedSharpFilled.tsx new file mode 100644 index 000000000..d2e0a1d95 --- /dev/null +++ b/src/IconNetworkLockedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkLockedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkLockedSharpFilled as default } diff --git a/src/IconNetworkManageOutlinedFilled.tsx b/src/IconNetworkManageOutlinedFilled.tsx new file mode 100644 index 000000000..c314c6054 --- /dev/null +++ b/src/IconNetworkManageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkManageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkManageOutlinedFilled as default } diff --git a/src/IconNetworkManageRoundedFilled.tsx b/src/IconNetworkManageRoundedFilled.tsx new file mode 100644 index 000000000..3fa6d2e84 --- /dev/null +++ b/src/IconNetworkManageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkManageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkManageRoundedFilled as default } diff --git a/src/IconNetworkManageSharpFilled.tsx b/src/IconNetworkManageSharpFilled.tsx new file mode 100644 index 000000000..fbdb79483 --- /dev/null +++ b/src/IconNetworkManageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkManageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkManageSharpFilled as default } diff --git a/src/IconNetworkNodeOutlinedFilled.tsx b/src/IconNetworkNodeOutlinedFilled.tsx new file mode 100644 index 000000000..3bfdb78a5 --- /dev/null +++ b/src/IconNetworkNodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkNodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkNodeOutlinedFilled as default } diff --git a/src/IconNetworkNodeRoundedFilled.tsx b/src/IconNetworkNodeRoundedFilled.tsx new file mode 100644 index 000000000..5d21558be --- /dev/null +++ b/src/IconNetworkNodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkNodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkNodeRoundedFilled as default } diff --git a/src/IconNetworkNodeSharpFilled.tsx b/src/IconNetworkNodeSharpFilled.tsx new file mode 100644 index 000000000..404856284 --- /dev/null +++ b/src/IconNetworkNodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkNodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkNodeSharpFilled as default } diff --git a/src/IconNetworkPingOutlinedFilled.tsx b/src/IconNetworkPingOutlinedFilled.tsx new file mode 100644 index 000000000..d347266ad --- /dev/null +++ b/src/IconNetworkPingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkPingOutlinedFilled as default } diff --git a/src/IconNetworkPingRoundedFilled.tsx b/src/IconNetworkPingRoundedFilled.tsx new file mode 100644 index 000000000..3eda17809 --- /dev/null +++ b/src/IconNetworkPingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkPingRoundedFilled as default } diff --git a/src/IconNetworkPingSharpFilled.tsx b/src/IconNetworkPingSharpFilled.tsx new file mode 100644 index 000000000..578746bcd --- /dev/null +++ b/src/IconNetworkPingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkPingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkPingSharpFilled as default } diff --git a/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx b/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx new file mode 100644 index 000000000..84416a5e1 --- /dev/null +++ b/src/IconNetworkWifi1BarLockedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarLockedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi1BarLockedOutlinedFilled as default } diff --git a/src/IconNetworkWifi1BarLockedRoundedFilled.tsx b/src/IconNetworkWifi1BarLockedRoundedFilled.tsx new file mode 100644 index 000000000..7033fced6 --- /dev/null +++ b/src/IconNetworkWifi1BarLockedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarLockedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi1BarLockedRoundedFilled as default } diff --git a/src/IconNetworkWifi1BarLockedSharpFilled.tsx b/src/IconNetworkWifi1BarLockedSharpFilled.tsx new file mode 100644 index 000000000..0123f4457 --- /dev/null +++ b/src/IconNetworkWifi1BarLockedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarLockedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi1BarLockedSharpFilled as default } diff --git a/src/IconNetworkWifi1BarOutlinedFilled.tsx b/src/IconNetworkWifi1BarOutlinedFilled.tsx new file mode 100644 index 000000000..a5fafb00d --- /dev/null +++ b/src/IconNetworkWifi1BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi1BarOutlinedFilled as default } diff --git a/src/IconNetworkWifi1BarRoundedFilled.tsx b/src/IconNetworkWifi1BarRoundedFilled.tsx new file mode 100644 index 000000000..e9505a09c --- /dev/null +++ b/src/IconNetworkWifi1BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi1BarRoundedFilled as default } diff --git a/src/IconNetworkWifi1BarSharpFilled.tsx b/src/IconNetworkWifi1BarSharpFilled.tsx new file mode 100644 index 000000000..bb938edf7 --- /dev/null +++ b/src/IconNetworkWifi1BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi1BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi1BarSharpFilled as default } diff --git a/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx b/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx new file mode 100644 index 000000000..5f6b2342d --- /dev/null +++ b/src/IconNetworkWifi2BarLockedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarLockedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi2BarLockedOutlinedFilled as default } diff --git a/src/IconNetworkWifi2BarLockedRoundedFilled.tsx b/src/IconNetworkWifi2BarLockedRoundedFilled.tsx new file mode 100644 index 000000000..1ed9a85fc --- /dev/null +++ b/src/IconNetworkWifi2BarLockedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarLockedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi2BarLockedRoundedFilled as default } diff --git a/src/IconNetworkWifi2BarLockedSharpFilled.tsx b/src/IconNetworkWifi2BarLockedSharpFilled.tsx new file mode 100644 index 000000000..0f73f2026 --- /dev/null +++ b/src/IconNetworkWifi2BarLockedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarLockedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi2BarLockedSharpFilled as default } diff --git a/src/IconNetworkWifi2BarOutlinedFilled.tsx b/src/IconNetworkWifi2BarOutlinedFilled.tsx new file mode 100644 index 000000000..425a0ee49 --- /dev/null +++ b/src/IconNetworkWifi2BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi2BarOutlinedFilled as default } diff --git a/src/IconNetworkWifi2BarRoundedFilled.tsx b/src/IconNetworkWifi2BarRoundedFilled.tsx new file mode 100644 index 000000000..414924476 --- /dev/null +++ b/src/IconNetworkWifi2BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi2BarRoundedFilled as default } diff --git a/src/IconNetworkWifi2BarSharpFilled.tsx b/src/IconNetworkWifi2BarSharpFilled.tsx new file mode 100644 index 000000000..c3d8fd1db --- /dev/null +++ b/src/IconNetworkWifi2BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi2BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi2BarSharpFilled as default } diff --git a/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx b/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx new file mode 100644 index 000000000..97666ebc8 --- /dev/null +++ b/src/IconNetworkWifi3BarLockedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarLockedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi3BarLockedOutlinedFilled as default } diff --git a/src/IconNetworkWifi3BarLockedRoundedFilled.tsx b/src/IconNetworkWifi3BarLockedRoundedFilled.tsx new file mode 100644 index 000000000..1da6bb082 --- /dev/null +++ b/src/IconNetworkWifi3BarLockedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarLockedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi3BarLockedRoundedFilled as default } diff --git a/src/IconNetworkWifi3BarLockedSharpFilled.tsx b/src/IconNetworkWifi3BarLockedSharpFilled.tsx new file mode 100644 index 000000000..d09202ff6 --- /dev/null +++ b/src/IconNetworkWifi3BarLockedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarLockedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi3BarLockedSharpFilled as default } diff --git a/src/IconNetworkWifi3BarOutlinedFilled.tsx b/src/IconNetworkWifi3BarOutlinedFilled.tsx new file mode 100644 index 000000000..a4b491de1 --- /dev/null +++ b/src/IconNetworkWifi3BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi3BarOutlinedFilled as default } diff --git a/src/IconNetworkWifi3BarRoundedFilled.tsx b/src/IconNetworkWifi3BarRoundedFilled.tsx new file mode 100644 index 000000000..269f073d6 --- /dev/null +++ b/src/IconNetworkWifi3BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi3BarRoundedFilled as default } diff --git a/src/IconNetworkWifi3BarSharpFilled.tsx b/src/IconNetworkWifi3BarSharpFilled.tsx new file mode 100644 index 000000000..4f4c80f5c --- /dev/null +++ b/src/IconNetworkWifi3BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifi3BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifi3BarSharpFilled as default } diff --git a/src/IconNetworkWifiLockedOutlinedFilled.tsx b/src/IconNetworkWifiLockedOutlinedFilled.tsx new file mode 100644 index 000000000..b640c43b5 --- /dev/null +++ b/src/IconNetworkWifiLockedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiLockedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifiLockedOutlinedFilled as default } diff --git a/src/IconNetworkWifiLockedRoundedFilled.tsx b/src/IconNetworkWifiLockedRoundedFilled.tsx new file mode 100644 index 000000000..de91be9f6 --- /dev/null +++ b/src/IconNetworkWifiLockedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiLockedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifiLockedRoundedFilled as default } diff --git a/src/IconNetworkWifiLockedSharpFilled.tsx b/src/IconNetworkWifiLockedSharpFilled.tsx new file mode 100644 index 000000000..e28cd4200 --- /dev/null +++ b/src/IconNetworkWifiLockedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiLockedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifiLockedSharpFilled as default } diff --git a/src/IconNetworkWifiOutlinedFilled.tsx b/src/IconNetworkWifiOutlinedFilled.tsx new file mode 100644 index 000000000..b6fbdbd39 --- /dev/null +++ b/src/IconNetworkWifiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifiOutlinedFilled as default } diff --git a/src/IconNetworkWifiRoundedFilled.tsx b/src/IconNetworkWifiRoundedFilled.tsx new file mode 100644 index 000000000..22261531d --- /dev/null +++ b/src/IconNetworkWifiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifiRoundedFilled as default } diff --git a/src/IconNetworkWifiSharpFilled.tsx b/src/IconNetworkWifiSharpFilled.tsx new file mode 100644 index 000000000..010f7b731 --- /dev/null +++ b/src/IconNetworkWifiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNetworkWifiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNetworkWifiSharpFilled as default } diff --git a/src/IconNeurologyOutlinedFilled.tsx b/src/IconNeurologyOutlinedFilled.tsx new file mode 100644 index 000000000..9321d9fdd --- /dev/null +++ b/src/IconNeurologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNeurologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNeurologyOutlinedFilled as default } diff --git a/src/IconNeurologyRoundedFilled.tsx b/src/IconNeurologyRoundedFilled.tsx new file mode 100644 index 000000000..a04375cd9 --- /dev/null +++ b/src/IconNeurologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNeurologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNeurologyRoundedFilled as default } diff --git a/src/IconNeurologySharpFilled.tsx b/src/IconNeurologySharpFilled.tsx new file mode 100644 index 000000000..184f5095f --- /dev/null +++ b/src/IconNeurologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNeurologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNeurologySharpFilled as default } diff --git a/src/IconNewLabelOutlinedFilled.tsx b/src/IconNewLabelOutlinedFilled.tsx new file mode 100644 index 000000000..60f88442a --- /dev/null +++ b/src/IconNewLabelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewLabelOutlinedFilled as default } diff --git a/src/IconNewLabelRoundedFilled.tsx b/src/IconNewLabelRoundedFilled.tsx new file mode 100644 index 000000000..f5c6ffdcc --- /dev/null +++ b/src/IconNewLabelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewLabelRoundedFilled as default } diff --git a/src/IconNewLabelSharpFilled.tsx b/src/IconNewLabelSharpFilled.tsx new file mode 100644 index 000000000..cb997bb17 --- /dev/null +++ b/src/IconNewLabelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewLabelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewLabelSharpFilled as default } diff --git a/src/IconNewReleasesOutlinedFilled.tsx b/src/IconNewReleasesOutlinedFilled.tsx new file mode 100644 index 000000000..518cc9510 --- /dev/null +++ b/src/IconNewReleasesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewReleasesOutlinedFilled as default } diff --git a/src/IconNewReleasesRoundedFilled.tsx b/src/IconNewReleasesRoundedFilled.tsx new file mode 100644 index 000000000..5ffffc936 --- /dev/null +++ b/src/IconNewReleasesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewReleasesRoundedFilled as default } diff --git a/src/IconNewReleasesSharpFilled.tsx b/src/IconNewReleasesSharpFilled.tsx new file mode 100644 index 000000000..7b960a197 --- /dev/null +++ b/src/IconNewReleasesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewReleasesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewReleasesSharpFilled as default } diff --git a/src/IconNewWindowOutlinedFilled.tsx b/src/IconNewWindowOutlinedFilled.tsx new file mode 100644 index 000000000..1d752d70a --- /dev/null +++ b/src/IconNewWindowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewWindowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewWindowOutlinedFilled as default } diff --git a/src/IconNewWindowRoundedFilled.tsx b/src/IconNewWindowRoundedFilled.tsx new file mode 100644 index 000000000..313ce4e6f --- /dev/null +++ b/src/IconNewWindowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewWindowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewWindowRoundedFilled as default } diff --git a/src/IconNewWindowSharpFilled.tsx b/src/IconNewWindowSharpFilled.tsx new file mode 100644 index 000000000..e6a4927bc --- /dev/null +++ b/src/IconNewWindowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewWindowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewWindowSharpFilled as default } diff --git a/src/IconNewsOutlinedFilled.tsx b/src/IconNewsOutlinedFilled.tsx new file mode 100644 index 000000000..7661081e2 --- /dev/null +++ b/src/IconNewsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsOutlinedFilled as default } diff --git a/src/IconNewsRoundedFilled.tsx b/src/IconNewsRoundedFilled.tsx new file mode 100644 index 000000000..76f40ece3 --- /dev/null +++ b/src/IconNewsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsRoundedFilled as default } diff --git a/src/IconNewsSharpFilled.tsx b/src/IconNewsSharpFilled.tsx new file mode 100644 index 000000000..4c261a85f --- /dev/null +++ b/src/IconNewsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsSharpFilled as default } diff --git a/src/IconNewsmodeOutlinedFilled.tsx b/src/IconNewsmodeOutlinedFilled.tsx new file mode 100644 index 000000000..186767e3f --- /dev/null +++ b/src/IconNewsmodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsmodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsmodeOutlinedFilled as default } diff --git a/src/IconNewsmodeRoundedFilled.tsx b/src/IconNewsmodeRoundedFilled.tsx new file mode 100644 index 000000000..b0b154528 --- /dev/null +++ b/src/IconNewsmodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsmodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsmodeRoundedFilled as default } diff --git a/src/IconNewsmodeSharpFilled.tsx b/src/IconNewsmodeSharpFilled.tsx new file mode 100644 index 000000000..12128cb69 --- /dev/null +++ b/src/IconNewsmodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsmodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsmodeSharpFilled as default } diff --git a/src/IconNewspaperOutlinedFilled.tsx b/src/IconNewspaperOutlinedFilled.tsx new file mode 100644 index 000000000..6343d2a1c --- /dev/null +++ b/src/IconNewspaperOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewspaperOutlinedFilled as default } diff --git a/src/IconNewspaperRoundedFilled.tsx b/src/IconNewspaperRoundedFilled.tsx new file mode 100644 index 000000000..17a8e5c58 --- /dev/null +++ b/src/IconNewspaperRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewspaperRoundedFilled as default } diff --git a/src/IconNewspaperSharpFilled.tsx b/src/IconNewspaperSharpFilled.tsx new file mode 100644 index 000000000..f4bc42d79 --- /dev/null +++ b/src/IconNewspaperSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewspaperSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewspaperSharpFilled as default } diff --git a/src/IconNewsstandOutlinedFilled.tsx b/src/IconNewsstandOutlinedFilled.tsx new file mode 100644 index 000000000..b6f39c3de --- /dev/null +++ b/src/IconNewsstandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsstandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsstandOutlinedFilled as default } diff --git a/src/IconNewsstandRoundedFilled.tsx b/src/IconNewsstandRoundedFilled.tsx new file mode 100644 index 000000000..df5d9e829 --- /dev/null +++ b/src/IconNewsstandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsstandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsstandRoundedFilled as default } diff --git a/src/IconNewsstandSharpFilled.tsx b/src/IconNewsstandSharpFilled.tsx new file mode 100644 index 000000000..9ef5f23a4 --- /dev/null +++ b/src/IconNewsstandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNewsstandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNewsstandSharpFilled as default } diff --git a/src/IconNextPlanOutlinedFilled.tsx b/src/IconNextPlanOutlinedFilled.tsx new file mode 100644 index 000000000..16b179ee1 --- /dev/null +++ b/src/IconNextPlanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNextPlanOutlinedFilled as default } diff --git a/src/IconNextPlanRoundedFilled.tsx b/src/IconNextPlanRoundedFilled.tsx new file mode 100644 index 000000000..6b6928e27 --- /dev/null +++ b/src/IconNextPlanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNextPlanRoundedFilled as default } diff --git a/src/IconNextPlanSharpFilled.tsx b/src/IconNextPlanSharpFilled.tsx new file mode 100644 index 000000000..cf51e4610 --- /dev/null +++ b/src/IconNextPlanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextPlanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNextPlanSharpFilled as default } diff --git a/src/IconNextWeekOutlinedFilled.tsx b/src/IconNextWeekOutlinedFilled.tsx new file mode 100644 index 000000000..d7060e10e --- /dev/null +++ b/src/IconNextWeekOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNextWeekOutlinedFilled as default } diff --git a/src/IconNextWeekRoundedFilled.tsx b/src/IconNextWeekRoundedFilled.tsx new file mode 100644 index 000000000..15695df8d --- /dev/null +++ b/src/IconNextWeekRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNextWeekRoundedFilled as default } diff --git a/src/IconNextWeekSharpFilled.tsx b/src/IconNextWeekSharpFilled.tsx new file mode 100644 index 000000000..4564fbe75 --- /dev/null +++ b/src/IconNextWeekSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNextWeekSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNextWeekSharpFilled as default } diff --git a/src/IconNfcOutlinedFilled.tsx b/src/IconNfcOutlinedFilled.tsx new file mode 100644 index 000000000..ba47f2e93 --- /dev/null +++ b/src/IconNfcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNfcOutlinedFilled as default } diff --git a/src/IconNfcRoundedFilled.tsx b/src/IconNfcRoundedFilled.tsx new file mode 100644 index 000000000..7a80fa6fe --- /dev/null +++ b/src/IconNfcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNfcRoundedFilled as default } diff --git a/src/IconNfcSharpFilled.tsx b/src/IconNfcSharpFilled.tsx new file mode 100644 index 000000000..b8d255660 --- /dev/null +++ b/src/IconNfcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNfcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNfcSharpFilled as default } diff --git a/src/IconNightShelterOutlinedFilled.tsx b/src/IconNightShelterOutlinedFilled.tsx new file mode 100644 index 000000000..64247e779 --- /dev/null +++ b/src/IconNightShelterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightShelterOutlinedFilled as default } diff --git a/src/IconNightShelterRoundedFilled.tsx b/src/IconNightShelterRoundedFilled.tsx new file mode 100644 index 000000000..66dd02552 --- /dev/null +++ b/src/IconNightShelterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightShelterRoundedFilled as default } diff --git a/src/IconNightShelterSharpFilled.tsx b/src/IconNightShelterSharpFilled.tsx new file mode 100644 index 000000000..85123fcd8 --- /dev/null +++ b/src/IconNightShelterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightShelterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightShelterSharpFilled as default } diff --git a/src/IconNightSightAutoOffOutlinedFilled.tsx b/src/IconNightSightAutoOffOutlinedFilled.tsx new file mode 100644 index 000000000..116f1d61d --- /dev/null +++ b/src/IconNightSightAutoOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightAutoOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightAutoOffOutlinedFilled as default } diff --git a/src/IconNightSightAutoOffRoundedFilled.tsx b/src/IconNightSightAutoOffRoundedFilled.tsx new file mode 100644 index 000000000..6dc668330 --- /dev/null +++ b/src/IconNightSightAutoOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightAutoOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightAutoOffRoundedFilled as default } diff --git a/src/IconNightSightAutoOffSharpFilled.tsx b/src/IconNightSightAutoOffSharpFilled.tsx new file mode 100644 index 000000000..a4dac6f54 --- /dev/null +++ b/src/IconNightSightAutoOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightAutoOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightAutoOffSharpFilled as default } diff --git a/src/IconNightSightAutoOutlinedFilled.tsx b/src/IconNightSightAutoOutlinedFilled.tsx new file mode 100644 index 000000000..e223a464d --- /dev/null +++ b/src/IconNightSightAutoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightAutoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightAutoOutlinedFilled as default } diff --git a/src/IconNightSightAutoRoundedFilled.tsx b/src/IconNightSightAutoRoundedFilled.tsx new file mode 100644 index 000000000..5d42c8eb6 --- /dev/null +++ b/src/IconNightSightAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightAutoRoundedFilled as default } diff --git a/src/IconNightSightAutoSharpFilled.tsx b/src/IconNightSightAutoSharpFilled.tsx new file mode 100644 index 000000000..1888558b0 --- /dev/null +++ b/src/IconNightSightAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightAutoSharpFilled as default } diff --git a/src/IconNightSightMaxOutlinedFilled.tsx b/src/IconNightSightMaxOutlinedFilled.tsx new file mode 100644 index 000000000..8bbfcba83 --- /dev/null +++ b/src/IconNightSightMaxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightMaxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightMaxOutlinedFilled as default } diff --git a/src/IconNightSightMaxRoundedFilled.tsx b/src/IconNightSightMaxRoundedFilled.tsx new file mode 100644 index 000000000..732052917 --- /dev/null +++ b/src/IconNightSightMaxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightMaxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightMaxRoundedFilled as default } diff --git a/src/IconNightSightMaxSharpFilled.tsx b/src/IconNightSightMaxSharpFilled.tsx new file mode 100644 index 000000000..f2b01d7d9 --- /dev/null +++ b/src/IconNightSightMaxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightSightMaxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightSightMaxSharpFilled as default } diff --git a/src/IconNightlifeOutlinedFilled.tsx b/src/IconNightlifeOutlinedFilled.tsx new file mode 100644 index 000000000..5d4884bc2 --- /dev/null +++ b/src/IconNightlifeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightlifeOutlinedFilled as default } diff --git a/src/IconNightlifeRoundedFilled.tsx b/src/IconNightlifeRoundedFilled.tsx new file mode 100644 index 000000000..646d437c9 --- /dev/null +++ b/src/IconNightlifeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightlifeRoundedFilled as default } diff --git a/src/IconNightlifeSharpFilled.tsx b/src/IconNightlifeSharpFilled.tsx new file mode 100644 index 000000000..aa4be5f26 --- /dev/null +++ b/src/IconNightlifeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlifeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightlifeSharpFilled as default } diff --git a/src/IconNightlightOutlinedFilled.tsx b/src/IconNightlightOutlinedFilled.tsx new file mode 100644 index 000000000..a27b4c5a6 --- /dev/null +++ b/src/IconNightlightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightlightOutlinedFilled as default } diff --git a/src/IconNightlightRoundedFilled.tsx b/src/IconNightlightRoundedFilled.tsx new file mode 100644 index 000000000..737bca1ac --- /dev/null +++ b/src/IconNightlightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightlightRoundedFilled as default } diff --git a/src/IconNightlightSharpFilled.tsx b/src/IconNightlightSharpFilled.tsx new file mode 100644 index 000000000..385abe8fb --- /dev/null +++ b/src/IconNightlightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightlightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightlightSharpFilled as default } diff --git a/src/IconNightsStayOutlinedFilled.tsx b/src/IconNightsStayOutlinedFilled.tsx new file mode 100644 index 000000000..c62e93490 --- /dev/null +++ b/src/IconNightsStayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightsStayOutlinedFilled as default } diff --git a/src/IconNightsStayRoundedFilled.tsx b/src/IconNightsStayRoundedFilled.tsx new file mode 100644 index 000000000..953655d4d --- /dev/null +++ b/src/IconNightsStayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightsStayRoundedFilled as default } diff --git a/src/IconNightsStaySharpFilled.tsx b/src/IconNightsStaySharpFilled.tsx new file mode 100644 index 000000000..dacfd53b7 --- /dev/null +++ b/src/IconNightsStaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNightsStaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNightsStaySharpFilled as default } diff --git a/src/IconNoAccountsOutlinedFilled.tsx b/src/IconNoAccountsOutlinedFilled.tsx new file mode 100644 index 000000000..fdd899ef1 --- /dev/null +++ b/src/IconNoAccountsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoAccountsOutlinedFilled as default } diff --git a/src/IconNoAccountsRoundedFilled.tsx b/src/IconNoAccountsRoundedFilled.tsx new file mode 100644 index 000000000..27e0c494a --- /dev/null +++ b/src/IconNoAccountsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoAccountsRoundedFilled as default } diff --git a/src/IconNoAccountsSharpFilled.tsx b/src/IconNoAccountsSharpFilled.tsx new file mode 100644 index 000000000..8c6288cb8 --- /dev/null +++ b/src/IconNoAccountsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAccountsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoAccountsSharpFilled as default } diff --git a/src/IconNoAdultContentOutlinedFilled.tsx b/src/IconNoAdultContentOutlinedFilled.tsx new file mode 100644 index 000000000..8104cd909 --- /dev/null +++ b/src/IconNoAdultContentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNoAdultContentOutlinedFilled as default } diff --git a/src/IconNoAdultContentRoundedFilled.tsx b/src/IconNoAdultContentRoundedFilled.tsx new file mode 100644 index 000000000..c9c96ab9a --- /dev/null +++ b/src/IconNoAdultContentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoAdultContentRoundedFilled as default } diff --git a/src/IconNoAdultContentSharpFilled.tsx b/src/IconNoAdultContentSharpFilled.tsx new file mode 100644 index 000000000..2268b1776 --- /dev/null +++ b/src/IconNoAdultContentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoAdultContentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoAdultContentSharpFilled as default } diff --git a/src/IconNoBackpackOutlinedFilled.tsx b/src/IconNoBackpackOutlinedFilled.tsx new file mode 100644 index 000000000..92f3e24e4 --- /dev/null +++ b/src/IconNoBackpackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoBackpackOutlinedFilled as default } diff --git a/src/IconNoBackpackRoundedFilled.tsx b/src/IconNoBackpackRoundedFilled.tsx new file mode 100644 index 000000000..adca73dd1 --- /dev/null +++ b/src/IconNoBackpackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoBackpackRoundedFilled as default } diff --git a/src/IconNoBackpackSharpFilled.tsx b/src/IconNoBackpackSharpFilled.tsx new file mode 100644 index 000000000..f0f3e6c59 --- /dev/null +++ b/src/IconNoBackpackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoBackpackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoBackpackSharpFilled as default } diff --git a/src/IconNoCrashOutlinedFilled.tsx b/src/IconNoCrashOutlinedFilled.tsx new file mode 100644 index 000000000..f5edc1a9d --- /dev/null +++ b/src/IconNoCrashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoCrashOutlinedFilled as default } diff --git a/src/IconNoCrashRoundedFilled.tsx b/src/IconNoCrashRoundedFilled.tsx new file mode 100644 index 000000000..10f6edab2 --- /dev/null +++ b/src/IconNoCrashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoCrashRoundedFilled as default } diff --git a/src/IconNoCrashSharpFilled.tsx b/src/IconNoCrashSharpFilled.tsx new file mode 100644 index 000000000..54cb305aa --- /dev/null +++ b/src/IconNoCrashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoCrashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoCrashSharpFilled as default } diff --git a/src/IconNoDrinksOutlinedFilled.tsx b/src/IconNoDrinksOutlinedFilled.tsx new file mode 100644 index 000000000..6537ced25 --- /dev/null +++ b/src/IconNoDrinksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoDrinksOutlinedFilled as default } diff --git a/src/IconNoDrinksRoundedFilled.tsx b/src/IconNoDrinksRoundedFilled.tsx new file mode 100644 index 000000000..c396f495e --- /dev/null +++ b/src/IconNoDrinksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoDrinksRoundedFilled as default } diff --git a/src/IconNoDrinksSharpFilled.tsx b/src/IconNoDrinksSharpFilled.tsx new file mode 100644 index 000000000..62d29c129 --- /dev/null +++ b/src/IconNoDrinksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoDrinksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoDrinksSharpFilled as default } diff --git a/src/IconNoEncryptionOutlinedFilled.tsx b/src/IconNoEncryptionOutlinedFilled.tsx new file mode 100644 index 000000000..fd7621839 --- /dev/null +++ b/src/IconNoEncryptionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoEncryptionOutlinedFilled as default } diff --git a/src/IconNoEncryptionRoundedFilled.tsx b/src/IconNoEncryptionRoundedFilled.tsx new file mode 100644 index 000000000..e5d1e5fad --- /dev/null +++ b/src/IconNoEncryptionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoEncryptionRoundedFilled as default } diff --git a/src/IconNoEncryptionSharpFilled.tsx b/src/IconNoEncryptionSharpFilled.tsx new file mode 100644 index 000000000..ece8778c3 --- /dev/null +++ b/src/IconNoEncryptionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoEncryptionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoEncryptionSharpFilled as default } diff --git a/src/IconNoFlashOutlinedFilled.tsx b/src/IconNoFlashOutlinedFilled.tsx new file mode 100644 index 000000000..d61e433f6 --- /dev/null +++ b/src/IconNoFlashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoFlashOutlinedFilled as default } diff --git a/src/IconNoFlashRoundedFilled.tsx b/src/IconNoFlashRoundedFilled.tsx new file mode 100644 index 000000000..256bf052d --- /dev/null +++ b/src/IconNoFlashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoFlashRoundedFilled as default } diff --git a/src/IconNoFlashSharpFilled.tsx b/src/IconNoFlashSharpFilled.tsx new file mode 100644 index 000000000..c64ca0293 --- /dev/null +++ b/src/IconNoFlashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFlashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoFlashSharpFilled as default } diff --git a/src/IconNoFoodOutlinedFilled.tsx b/src/IconNoFoodOutlinedFilled.tsx new file mode 100644 index 000000000..7bc33b252 --- /dev/null +++ b/src/IconNoFoodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoFoodOutlinedFilled as default } diff --git a/src/IconNoFoodRoundedFilled.tsx b/src/IconNoFoodRoundedFilled.tsx new file mode 100644 index 000000000..9b2a34ae1 --- /dev/null +++ b/src/IconNoFoodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoFoodRoundedFilled as default } diff --git a/src/IconNoFoodSharpFilled.tsx b/src/IconNoFoodSharpFilled.tsx new file mode 100644 index 000000000..17130b0be --- /dev/null +++ b/src/IconNoFoodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoFoodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoFoodSharpFilled as default } diff --git a/src/IconNoLuggageOutlinedFilled.tsx b/src/IconNoLuggageOutlinedFilled.tsx new file mode 100644 index 000000000..dee503d4a --- /dev/null +++ b/src/IconNoLuggageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoLuggageOutlinedFilled as default } diff --git a/src/IconNoLuggageRoundedFilled.tsx b/src/IconNoLuggageRoundedFilled.tsx new file mode 100644 index 000000000..8dea17eed --- /dev/null +++ b/src/IconNoLuggageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoLuggageRoundedFilled as default } diff --git a/src/IconNoLuggageSharpFilled.tsx b/src/IconNoLuggageSharpFilled.tsx new file mode 100644 index 000000000..0bf034fea --- /dev/null +++ b/src/IconNoLuggageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoLuggageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoLuggageSharpFilled as default } diff --git a/src/IconNoMealsOutlinedFilled.tsx b/src/IconNoMealsOutlinedFilled.tsx new file mode 100644 index 000000000..2c4eb3daf --- /dev/null +++ b/src/IconNoMealsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoMealsOutlinedFilled as default } diff --git a/src/IconNoMealsRoundedFilled.tsx b/src/IconNoMealsRoundedFilled.tsx new file mode 100644 index 000000000..cfcafb7e4 --- /dev/null +++ b/src/IconNoMealsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoMealsRoundedFilled as default } diff --git a/src/IconNoMealsSharpFilled.tsx b/src/IconNoMealsSharpFilled.tsx new file mode 100644 index 000000000..9bcd53154 --- /dev/null +++ b/src/IconNoMealsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMealsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoMealsSharpFilled as default } diff --git a/src/IconNoMeetingRoomOutlinedFilled.tsx b/src/IconNoMeetingRoomOutlinedFilled.tsx new file mode 100644 index 000000000..6498faf5c --- /dev/null +++ b/src/IconNoMeetingRoomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoMeetingRoomOutlinedFilled as default } diff --git a/src/IconNoMeetingRoomRoundedFilled.tsx b/src/IconNoMeetingRoomRoundedFilled.tsx new file mode 100644 index 000000000..96fef332f --- /dev/null +++ b/src/IconNoMeetingRoomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoMeetingRoomRoundedFilled as default } diff --git a/src/IconNoMeetingRoomSharpFilled.tsx b/src/IconNoMeetingRoomSharpFilled.tsx new file mode 100644 index 000000000..3b4a95e2d --- /dev/null +++ b/src/IconNoMeetingRoomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoMeetingRoomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoMeetingRoomSharpFilled as default } diff --git a/src/IconNoPhotographyOutlinedFilled.tsx b/src/IconNoPhotographyOutlinedFilled.tsx new file mode 100644 index 000000000..8a9ed1f06 --- /dev/null +++ b/src/IconNoPhotographyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoPhotographyOutlinedFilled as default } diff --git a/src/IconNoPhotographyRoundedFilled.tsx b/src/IconNoPhotographyRoundedFilled.tsx new file mode 100644 index 000000000..7dd9286b9 --- /dev/null +++ b/src/IconNoPhotographyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoPhotographyRoundedFilled as default } diff --git a/src/IconNoPhotographySharpFilled.tsx b/src/IconNoPhotographySharpFilled.tsx new file mode 100644 index 000000000..b67c2d204 --- /dev/null +++ b/src/IconNoPhotographySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoPhotographySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoPhotographySharpFilled as default } diff --git a/src/IconNoSimOutlinedFilled.tsx b/src/IconNoSimOutlinedFilled.tsx new file mode 100644 index 000000000..ad570de5d --- /dev/null +++ b/src/IconNoSimOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoSimOutlinedFilled as default } diff --git a/src/IconNoSimRoundedFilled.tsx b/src/IconNoSimRoundedFilled.tsx new file mode 100644 index 000000000..7381464de --- /dev/null +++ b/src/IconNoSimRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoSimRoundedFilled as default } diff --git a/src/IconNoSimSharpFilled.tsx b/src/IconNoSimSharpFilled.tsx new file mode 100644 index 000000000..ef9176e63 --- /dev/null +++ b/src/IconNoSimSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSimSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoSimSharpFilled as default } diff --git a/src/IconNoSoundOutlinedFilled.tsx b/src/IconNoSoundOutlinedFilled.tsx new file mode 100644 index 000000000..af476f499 --- /dev/null +++ b/src/IconNoSoundOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSoundOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoSoundOutlinedFilled as default } diff --git a/src/IconNoSoundRoundedFilled.tsx b/src/IconNoSoundRoundedFilled.tsx new file mode 100644 index 000000000..146fccc5c --- /dev/null +++ b/src/IconNoSoundRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSoundRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoSoundRoundedFilled as default } diff --git a/src/IconNoSoundSharpFilled.tsx b/src/IconNoSoundSharpFilled.tsx new file mode 100644 index 000000000..b5ef4289c --- /dev/null +++ b/src/IconNoSoundSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoSoundSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoSoundSharpFilled as default } diff --git a/src/IconNoStrollerOutlinedFilled.tsx b/src/IconNoStrollerOutlinedFilled.tsx new file mode 100644 index 000000000..347db8ab4 --- /dev/null +++ b/src/IconNoStrollerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoStrollerOutlinedFilled as default } diff --git a/src/IconNoStrollerRoundedFilled.tsx b/src/IconNoStrollerRoundedFilled.tsx new file mode 100644 index 000000000..cd1e27a27 --- /dev/null +++ b/src/IconNoStrollerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoStrollerRoundedFilled as default } diff --git a/src/IconNoStrollerSharpFilled.tsx b/src/IconNoStrollerSharpFilled.tsx new file mode 100644 index 000000000..0d52bd9b4 --- /dev/null +++ b/src/IconNoStrollerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoStrollerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoStrollerSharpFilled as default } diff --git a/src/IconNoTransferOutlinedFilled.tsx b/src/IconNoTransferOutlinedFilled.tsx new file mode 100644 index 000000000..70b46db94 --- /dev/null +++ b/src/IconNoTransferOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoTransferOutlinedFilled as default } diff --git a/src/IconNoTransferRoundedFilled.tsx b/src/IconNoTransferRoundedFilled.tsx new file mode 100644 index 000000000..debf60dc1 --- /dev/null +++ b/src/IconNoTransferRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoTransferRoundedFilled as default } diff --git a/src/IconNoTransferSharpFilled.tsx b/src/IconNoTransferSharpFilled.tsx new file mode 100644 index 000000000..8b994cea0 --- /dev/null +++ b/src/IconNoTransferSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoTransferSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoTransferSharpFilled as default } diff --git a/src/IconNoiseAwareOutlinedFilled.tsx b/src/IconNoiseAwareOutlinedFilled.tsx new file mode 100644 index 000000000..012a13607 --- /dev/null +++ b/src/IconNoiseAwareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseAwareOutlinedFilled as default } diff --git a/src/IconNoiseAwareRoundedFilled.tsx b/src/IconNoiseAwareRoundedFilled.tsx new file mode 100644 index 000000000..712144fa3 --- /dev/null +++ b/src/IconNoiseAwareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseAwareRoundedFilled as default } diff --git a/src/IconNoiseAwareSharpFilled.tsx b/src/IconNoiseAwareSharpFilled.tsx new file mode 100644 index 000000000..c4d90e427 --- /dev/null +++ b/src/IconNoiseAwareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseAwareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseAwareSharpFilled as default } diff --git a/src/IconNoiseControlOffOutlinedFilled.tsx b/src/IconNoiseControlOffOutlinedFilled.tsx new file mode 100644 index 000000000..bc5bd33e7 --- /dev/null +++ b/src/IconNoiseControlOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseControlOffOutlinedFilled as default } diff --git a/src/IconNoiseControlOffRoundedFilled.tsx b/src/IconNoiseControlOffRoundedFilled.tsx new file mode 100644 index 000000000..12e161202 --- /dev/null +++ b/src/IconNoiseControlOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseControlOffRoundedFilled as default } diff --git a/src/IconNoiseControlOffSharpFilled.tsx b/src/IconNoiseControlOffSharpFilled.tsx new file mode 100644 index 000000000..e3e09b408 --- /dev/null +++ b/src/IconNoiseControlOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseControlOffSharpFilled as default } diff --git a/src/IconNoiseControlOnOutlinedFilled.tsx b/src/IconNoiseControlOnOutlinedFilled.tsx new file mode 100644 index 000000000..3092d245e --- /dev/null +++ b/src/IconNoiseControlOnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseControlOnOutlinedFilled as default } diff --git a/src/IconNoiseControlOnRoundedFilled.tsx b/src/IconNoiseControlOnRoundedFilled.tsx new file mode 100644 index 000000000..4ef843946 --- /dev/null +++ b/src/IconNoiseControlOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseControlOnRoundedFilled as default } diff --git a/src/IconNoiseControlOnSharpFilled.tsx b/src/IconNoiseControlOnSharpFilled.tsx new file mode 100644 index 000000000..99d2f218d --- /dev/null +++ b/src/IconNoiseControlOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoiseControlOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoiseControlOnSharpFilled as default } diff --git a/src/IconNordicWalkingOutlinedFilled.tsx b/src/IconNordicWalkingOutlinedFilled.tsx new file mode 100644 index 000000000..92b01bdc5 --- /dev/null +++ b/src/IconNordicWalkingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNordicWalkingOutlinedFilled as default } diff --git a/src/IconNordicWalkingRoundedFilled.tsx b/src/IconNordicWalkingRoundedFilled.tsx new file mode 100644 index 000000000..32f25287f --- /dev/null +++ b/src/IconNordicWalkingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNordicWalkingRoundedFilled as default } diff --git a/src/IconNordicWalkingSharpFilled.tsx b/src/IconNordicWalkingSharpFilled.tsx new file mode 100644 index 000000000..dd2fc3e34 --- /dev/null +++ b/src/IconNordicWalkingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNordicWalkingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNordicWalkingSharpFilled as default } diff --git a/src/IconNorthEastOutlinedFilled.tsx b/src/IconNorthEastOutlinedFilled.tsx new file mode 100644 index 000000000..4582c5da1 --- /dev/null +++ b/src/IconNorthEastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthEastOutlinedFilled as default } diff --git a/src/IconNorthEastRoundedFilled.tsx b/src/IconNorthEastRoundedFilled.tsx new file mode 100644 index 000000000..253e23548 --- /dev/null +++ b/src/IconNorthEastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthEastRoundedFilled as default } diff --git a/src/IconNorthEastSharpFilled.tsx b/src/IconNorthEastSharpFilled.tsx new file mode 100644 index 000000000..88a7b2491 --- /dev/null +++ b/src/IconNorthEastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthEastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthEastSharpFilled as default } diff --git a/src/IconNorthOutlinedFilled.tsx b/src/IconNorthOutlinedFilled.tsx new file mode 100644 index 000000000..d23b00fba --- /dev/null +++ b/src/IconNorthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthOutlinedFilled as default } diff --git a/src/IconNorthRoundedFilled.tsx b/src/IconNorthRoundedFilled.tsx new file mode 100644 index 000000000..103fecd40 --- /dev/null +++ b/src/IconNorthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthRoundedFilled as default } diff --git a/src/IconNorthSharpFilled.tsx b/src/IconNorthSharpFilled.tsx new file mode 100644 index 000000000..43f2ac9b8 --- /dev/null +++ b/src/IconNorthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthSharpFilled as default } diff --git a/src/IconNorthWestOutlinedFilled.tsx b/src/IconNorthWestOutlinedFilled.tsx new file mode 100644 index 000000000..0a608a732 --- /dev/null +++ b/src/IconNorthWestOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthWestOutlinedFilled as default } diff --git a/src/IconNorthWestRoundedFilled.tsx b/src/IconNorthWestRoundedFilled.tsx new file mode 100644 index 000000000..c40091a19 --- /dev/null +++ b/src/IconNorthWestRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthWestRoundedFilled as default } diff --git a/src/IconNorthWestSharpFilled.tsx b/src/IconNorthWestSharpFilled.tsx new file mode 100644 index 000000000..3e7857f90 --- /dev/null +++ b/src/IconNorthWestSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNorthWestSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNorthWestSharpFilled as default } diff --git a/src/IconNotAccessibleForwardOutlinedFilled.tsx b/src/IconNotAccessibleForwardOutlinedFilled.tsx new file mode 100644 index 000000000..94f69ca0c --- /dev/null +++ b/src/IconNotAccessibleForwardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleForwardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotAccessibleForwardOutlinedFilled as default } diff --git a/src/IconNotAccessibleForwardRoundedFilled.tsx b/src/IconNotAccessibleForwardRoundedFilled.tsx new file mode 100644 index 000000000..149fd6bad --- /dev/null +++ b/src/IconNotAccessibleForwardRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleForwardRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotAccessibleForwardRoundedFilled as default } diff --git a/src/IconNotAccessibleForwardSharpFilled.tsx b/src/IconNotAccessibleForwardSharpFilled.tsx new file mode 100644 index 000000000..dc4cef55d --- /dev/null +++ b/src/IconNotAccessibleForwardSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleForwardSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotAccessibleForwardSharpFilled as default } diff --git a/src/IconNotAccessibleOutlinedFilled.tsx b/src/IconNotAccessibleOutlinedFilled.tsx new file mode 100644 index 000000000..4c52deaf4 --- /dev/null +++ b/src/IconNotAccessibleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotAccessibleOutlinedFilled as default } diff --git a/src/IconNotAccessibleRoundedFilled.tsx b/src/IconNotAccessibleRoundedFilled.tsx new file mode 100644 index 000000000..4cc63a6e5 --- /dev/null +++ b/src/IconNotAccessibleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotAccessibleRoundedFilled as default } diff --git a/src/IconNotAccessibleSharpFilled.tsx b/src/IconNotAccessibleSharpFilled.tsx new file mode 100644 index 000000000..e644419e1 --- /dev/null +++ b/src/IconNotAccessibleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotAccessibleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotAccessibleSharpFilled as default } diff --git a/src/IconNotListedLocationOutlinedFilled.tsx b/src/IconNotListedLocationOutlinedFilled.tsx new file mode 100644 index 000000000..5fb5b01d2 --- /dev/null +++ b/src/IconNotListedLocationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotListedLocationOutlinedFilled as default } diff --git a/src/IconNotListedLocationRoundedFilled.tsx b/src/IconNotListedLocationRoundedFilled.tsx new file mode 100644 index 000000000..97cf9bf70 --- /dev/null +++ b/src/IconNotListedLocationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotListedLocationRoundedFilled as default } diff --git a/src/IconNotListedLocationSharpFilled.tsx b/src/IconNotListedLocationSharpFilled.tsx new file mode 100644 index 000000000..1d471f1d5 --- /dev/null +++ b/src/IconNotListedLocationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotListedLocationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotListedLocationSharpFilled as default } diff --git a/src/IconNotStartedOutlinedFilled.tsx b/src/IconNotStartedOutlinedFilled.tsx new file mode 100644 index 000000000..8e6340a59 --- /dev/null +++ b/src/IconNotStartedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotStartedOutlinedFilled as default } diff --git a/src/IconNotStartedRoundedFilled.tsx b/src/IconNotStartedRoundedFilled.tsx new file mode 100644 index 000000000..58512b01e --- /dev/null +++ b/src/IconNotStartedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotStartedRoundedFilled as default } diff --git a/src/IconNotStartedSharpFilled.tsx b/src/IconNotStartedSharpFilled.tsx new file mode 100644 index 000000000..bedcc4f54 --- /dev/null +++ b/src/IconNotStartedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotStartedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotStartedSharpFilled as default } diff --git a/src/IconNoteAddOutlinedFilled.tsx b/src/IconNoteAddOutlinedFilled.tsx new file mode 100644 index 000000000..e8dc806a1 --- /dev/null +++ b/src/IconNoteAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteAddOutlinedFilled as default } diff --git a/src/IconNoteAddRoundedFilled.tsx b/src/IconNoteAddRoundedFilled.tsx new file mode 100644 index 000000000..ae2a2b895 --- /dev/null +++ b/src/IconNoteAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteAddRoundedFilled as default } diff --git a/src/IconNoteAddSharpFilled.tsx b/src/IconNoteAddSharpFilled.tsx new file mode 100644 index 000000000..21882ea58 --- /dev/null +++ b/src/IconNoteAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteAddSharpFilled as default } diff --git a/src/IconNoteAltOutlinedFilled.tsx b/src/IconNoteAltOutlinedFilled.tsx new file mode 100644 index 000000000..881294b8f --- /dev/null +++ b/src/IconNoteAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteAltOutlinedFilled as default } diff --git a/src/IconNoteAltRoundedFilled.tsx b/src/IconNoteAltRoundedFilled.tsx new file mode 100644 index 000000000..bb91f736f --- /dev/null +++ b/src/IconNoteAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteAltRoundedFilled as default } diff --git a/src/IconNoteAltSharpFilled.tsx b/src/IconNoteAltSharpFilled.tsx new file mode 100644 index 000000000..e31cc3f08 --- /dev/null +++ b/src/IconNoteAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteAltSharpFilled as default } diff --git a/src/IconNoteStackAddOutlinedFilled.tsx b/src/IconNoteStackAddOutlinedFilled.tsx new file mode 100644 index 000000000..8001b771e --- /dev/null +++ b/src/IconNoteStackAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteStackAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteStackAddOutlinedFilled as default } diff --git a/src/IconNoteStackAddRoundedFilled.tsx b/src/IconNoteStackAddRoundedFilled.tsx new file mode 100644 index 000000000..48b1c88d2 --- /dev/null +++ b/src/IconNoteStackAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteStackAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteStackAddRoundedFilled as default } diff --git a/src/IconNoteStackAddSharpFilled.tsx b/src/IconNoteStackAddSharpFilled.tsx new file mode 100644 index 000000000..ab8ccfecf --- /dev/null +++ b/src/IconNoteStackAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteStackAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteStackAddSharpFilled as default } diff --git a/src/IconNoteStackOutlinedFilled.tsx b/src/IconNoteStackOutlinedFilled.tsx new file mode 100644 index 000000000..fb5d1bcd9 --- /dev/null +++ b/src/IconNoteStackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteStackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteStackOutlinedFilled as default } diff --git a/src/IconNoteStackRoundedFilled.tsx b/src/IconNoteStackRoundedFilled.tsx new file mode 100644 index 000000000..484be51c0 --- /dev/null +++ b/src/IconNoteStackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteStackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteStackRoundedFilled as default } diff --git a/src/IconNoteStackSharpFilled.tsx b/src/IconNoteStackSharpFilled.tsx new file mode 100644 index 000000000..faf377aab --- /dev/null +++ b/src/IconNoteStackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNoteStackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNoteStackSharpFilled as default } diff --git a/src/IconNotesOutlinedFilled.tsx b/src/IconNotesOutlinedFilled.tsx new file mode 100644 index 000000000..2f73fe00a --- /dev/null +++ b/src/IconNotesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotesOutlinedFilled as default } diff --git a/src/IconNotesRoundedFilled.tsx b/src/IconNotesRoundedFilled.tsx new file mode 100644 index 000000000..135769e88 --- /dev/null +++ b/src/IconNotesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotesRoundedFilled as default } diff --git a/src/IconNotesSharpFilled.tsx b/src/IconNotesSharpFilled.tsx new file mode 100644 index 000000000..038725480 --- /dev/null +++ b/src/IconNotesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotesSharpFilled as default } diff --git a/src/IconNotificationAddOutlinedFilled.tsx b/src/IconNotificationAddOutlinedFilled.tsx new file mode 100644 index 000000000..eb2c8df31 --- /dev/null +++ b/src/IconNotificationAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationAddOutlinedFilled as default } diff --git a/src/IconNotificationAddRoundedFilled.tsx b/src/IconNotificationAddRoundedFilled.tsx new file mode 100644 index 000000000..8223dfdb9 --- /dev/null +++ b/src/IconNotificationAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationAddRoundedFilled as default } diff --git a/src/IconNotificationAddSharpFilled.tsx b/src/IconNotificationAddSharpFilled.tsx new file mode 100644 index 000000000..1098229e1 --- /dev/null +++ b/src/IconNotificationAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationAddSharpFilled as default } diff --git a/src/IconNotificationImportantOutlinedFilled.tsx b/src/IconNotificationImportantOutlinedFilled.tsx new file mode 100644 index 000000000..bd88daf82 --- /dev/null +++ b/src/IconNotificationImportantOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationImportantOutlinedFilled as default } diff --git a/src/IconNotificationImportantRoundedFilled.tsx b/src/IconNotificationImportantRoundedFilled.tsx new file mode 100644 index 000000000..2ce35bb7c --- /dev/null +++ b/src/IconNotificationImportantRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationImportantRoundedFilled as default } diff --git a/src/IconNotificationImportantSharpFilled.tsx b/src/IconNotificationImportantSharpFilled.tsx new file mode 100644 index 000000000..b511a606f --- /dev/null +++ b/src/IconNotificationImportantSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationImportantSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationImportantSharpFilled as default } diff --git a/src/IconNotificationMultipleOutlinedFilled.tsx b/src/IconNotificationMultipleOutlinedFilled.tsx new file mode 100644 index 000000000..2c036c111 --- /dev/null +++ b/src/IconNotificationMultipleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationMultipleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationMultipleOutlinedFilled as default } diff --git a/src/IconNotificationMultipleRoundedFilled.tsx b/src/IconNotificationMultipleRoundedFilled.tsx new file mode 100644 index 000000000..1712d27cf --- /dev/null +++ b/src/IconNotificationMultipleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationMultipleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationMultipleRoundedFilled as default } diff --git a/src/IconNotificationMultipleSharpFilled.tsx b/src/IconNotificationMultipleSharpFilled.tsx new file mode 100644 index 000000000..431facbba --- /dev/null +++ b/src/IconNotificationMultipleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationMultipleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationMultipleSharpFilled as default } diff --git a/src/IconNotificationsActiveOutlinedFilled.tsx b/src/IconNotificationsActiveOutlinedFilled.tsx new file mode 100644 index 000000000..80e91c0ec --- /dev/null +++ b/src/IconNotificationsActiveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsActiveOutlinedFilled as default } diff --git a/src/IconNotificationsActiveRoundedFilled.tsx b/src/IconNotificationsActiveRoundedFilled.tsx new file mode 100644 index 000000000..3c5f7b3a3 --- /dev/null +++ b/src/IconNotificationsActiveRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsActiveRoundedFilled as default } diff --git a/src/IconNotificationsActiveSharpFilled.tsx b/src/IconNotificationsActiveSharpFilled.tsx new file mode 100644 index 000000000..8db71b5b1 --- /dev/null +++ b/src/IconNotificationsActiveSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsActiveSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsActiveSharpFilled as default } diff --git a/src/IconNotificationsOffOutlinedFilled.tsx b/src/IconNotificationsOffOutlinedFilled.tsx new file mode 100644 index 000000000..c73e765f9 --- /dev/null +++ b/src/IconNotificationsOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsOffOutlinedFilled as default } diff --git a/src/IconNotificationsOffRoundedFilled.tsx b/src/IconNotificationsOffRoundedFilled.tsx new file mode 100644 index 000000000..03e52e9ea --- /dev/null +++ b/src/IconNotificationsOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsOffRoundedFilled as default } diff --git a/src/IconNotificationsOffSharpFilled.tsx b/src/IconNotificationsOffSharpFilled.tsx new file mode 100644 index 000000000..e5b62c79f --- /dev/null +++ b/src/IconNotificationsOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsOffSharpFilled as default } diff --git a/src/IconNotificationsOutlinedFilled.tsx b/src/IconNotificationsOutlinedFilled.tsx new file mode 100644 index 000000000..441fba78d --- /dev/null +++ b/src/IconNotificationsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsOutlinedFilled as default } diff --git a/src/IconNotificationsPausedOutlinedFilled.tsx b/src/IconNotificationsPausedOutlinedFilled.tsx new file mode 100644 index 000000000..96c6d6346 --- /dev/null +++ b/src/IconNotificationsPausedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsPausedOutlinedFilled as default } diff --git a/src/IconNotificationsPausedRoundedFilled.tsx b/src/IconNotificationsPausedRoundedFilled.tsx new file mode 100644 index 000000000..5a522562f --- /dev/null +++ b/src/IconNotificationsPausedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsPausedRoundedFilled as default } diff --git a/src/IconNotificationsPausedSharpFilled.tsx b/src/IconNotificationsPausedSharpFilled.tsx new file mode 100644 index 000000000..5c5b8cc58 --- /dev/null +++ b/src/IconNotificationsPausedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsPausedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsPausedSharpFilled as default } diff --git a/src/IconNotificationsRoundedFilled.tsx b/src/IconNotificationsRoundedFilled.tsx new file mode 100644 index 000000000..e8e6e5fa9 --- /dev/null +++ b/src/IconNotificationsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsRoundedFilled as default } diff --git a/src/IconNotificationsSharpFilled.tsx b/src/IconNotificationsSharpFilled.tsx new file mode 100644 index 000000000..ab2b2b970 --- /dev/null +++ b/src/IconNotificationsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsSharpFilled as default } diff --git a/src/IconNotificationsUnreadOutlinedFilled.tsx b/src/IconNotificationsUnreadOutlinedFilled.tsx new file mode 100644 index 000000000..651bf85fe --- /dev/null +++ b/src/IconNotificationsUnreadOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsUnreadOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsUnreadOutlinedFilled as default } diff --git a/src/IconNotificationsUnreadRoundedFilled.tsx b/src/IconNotificationsUnreadRoundedFilled.tsx new file mode 100644 index 000000000..273f780b4 --- /dev/null +++ b/src/IconNotificationsUnreadRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsUnreadRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsUnreadRoundedFilled as default } diff --git a/src/IconNotificationsUnreadSharpFilled.tsx b/src/IconNotificationsUnreadSharpFilled.tsx new file mode 100644 index 000000000..830ea5d6f --- /dev/null +++ b/src/IconNotificationsUnreadSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNotificationsUnreadSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconNotificationsUnreadSharpFilled as default } diff --git a/src/IconNumbersOutlinedFilled.tsx b/src/IconNumbersOutlinedFilled.tsx new file mode 100644 index 000000000..a529ffc9c --- /dev/null +++ b/src/IconNumbersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNumbersOutlinedFilled as default } diff --git a/src/IconNumbersRoundedFilled.tsx b/src/IconNumbersRoundedFilled.tsx new file mode 100644 index 000000000..6bc623656 --- /dev/null +++ b/src/IconNumbersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNumbersRoundedFilled as default } diff --git a/src/IconNumbersSharpFilled.tsx b/src/IconNumbersSharpFilled.tsx new file mode 100644 index 000000000..57349c252 --- /dev/null +++ b/src/IconNumbersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNumbersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNumbersSharpFilled as default } diff --git a/src/IconNutritionOutlinedFilled.tsx b/src/IconNutritionOutlinedFilled.tsx new file mode 100644 index 000000000..687a341cd --- /dev/null +++ b/src/IconNutritionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNutritionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNutritionOutlinedFilled as default } diff --git a/src/IconNutritionRoundedFilled.tsx b/src/IconNutritionRoundedFilled.tsx new file mode 100644 index 000000000..df2006a1a --- /dev/null +++ b/src/IconNutritionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNutritionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNutritionRoundedFilled as default } diff --git a/src/IconNutritionSharpFilled.tsx b/src/IconNutritionSharpFilled.tsx new file mode 100644 index 000000000..8e3809281 --- /dev/null +++ b/src/IconNutritionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconNutritionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconNutritionSharpFilled as default } diff --git a/src/IconOdsOutlinedFilled.tsx b/src/IconOdsOutlinedFilled.tsx new file mode 100644 index 000000000..848348d0f --- /dev/null +++ b/src/IconOdsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOdsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOdsOutlinedFilled as default } diff --git a/src/IconOdsRoundedFilled.tsx b/src/IconOdsRoundedFilled.tsx new file mode 100644 index 000000000..bb3759700 --- /dev/null +++ b/src/IconOdsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOdsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOdsRoundedFilled as default } diff --git a/src/IconOdsSharpFilled.tsx b/src/IconOdsSharpFilled.tsx new file mode 100644 index 000000000..d8af44a78 --- /dev/null +++ b/src/IconOdsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOdsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOdsSharpFilled as default } diff --git a/src/IconOdtOutlinedFilled.tsx b/src/IconOdtOutlinedFilled.tsx new file mode 100644 index 000000000..0290d6ca6 --- /dev/null +++ b/src/IconOdtOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOdtOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOdtOutlinedFilled as default } diff --git a/src/IconOdtRoundedFilled.tsx b/src/IconOdtRoundedFilled.tsx new file mode 100644 index 000000000..d9461d89f --- /dev/null +++ b/src/IconOdtRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOdtRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOdtRoundedFilled as default } diff --git a/src/IconOdtSharpFilled.tsx b/src/IconOdtSharpFilled.tsx new file mode 100644 index 000000000..ce2674012 --- /dev/null +++ b/src/IconOdtSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOdtSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOdtSharpFilled as default } diff --git a/src/IconOfflineBoltOutlinedFilled.tsx b/src/IconOfflineBoltOutlinedFilled.tsx new file mode 100644 index 000000000..eaf1ab027 --- /dev/null +++ b/src/IconOfflineBoltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflineBoltOutlinedFilled as default } diff --git a/src/IconOfflineBoltRoundedFilled.tsx b/src/IconOfflineBoltRoundedFilled.tsx new file mode 100644 index 000000000..95e01e055 --- /dev/null +++ b/src/IconOfflineBoltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflineBoltRoundedFilled as default } diff --git a/src/IconOfflineBoltSharpFilled.tsx b/src/IconOfflineBoltSharpFilled.tsx new file mode 100644 index 000000000..995f62878 --- /dev/null +++ b/src/IconOfflineBoltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineBoltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflineBoltSharpFilled as default } diff --git a/src/IconOfflinePinOffOutlinedFilled.tsx b/src/IconOfflinePinOffOutlinedFilled.tsx new file mode 100644 index 000000000..497cc59b2 --- /dev/null +++ b/src/IconOfflinePinOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflinePinOffOutlinedFilled as default } diff --git a/src/IconOfflinePinOffRoundedFilled.tsx b/src/IconOfflinePinOffRoundedFilled.tsx new file mode 100644 index 000000000..b86ea71d0 --- /dev/null +++ b/src/IconOfflinePinOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflinePinOffRoundedFilled as default } diff --git a/src/IconOfflinePinOffSharpFilled.tsx b/src/IconOfflinePinOffSharpFilled.tsx new file mode 100644 index 000000000..1f2b6097d --- /dev/null +++ b/src/IconOfflinePinOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflinePinOffSharpFilled as default } diff --git a/src/IconOfflinePinOutlinedFilled.tsx b/src/IconOfflinePinOutlinedFilled.tsx new file mode 100644 index 000000000..baa9fec66 --- /dev/null +++ b/src/IconOfflinePinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflinePinOutlinedFilled as default } diff --git a/src/IconOfflinePinRoundedFilled.tsx b/src/IconOfflinePinRoundedFilled.tsx new file mode 100644 index 000000000..47278096d --- /dev/null +++ b/src/IconOfflinePinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflinePinRoundedFilled as default } diff --git a/src/IconOfflinePinSharpFilled.tsx b/src/IconOfflinePinSharpFilled.tsx new file mode 100644 index 000000000..2a34086b2 --- /dev/null +++ b/src/IconOfflinePinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflinePinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflinePinSharpFilled as default } diff --git a/src/IconOfflineShareOutlinedFilled.tsx b/src/IconOfflineShareOutlinedFilled.tsx new file mode 100644 index 000000000..1d2a2d3c0 --- /dev/null +++ b/src/IconOfflineShareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflineShareOutlinedFilled as default } diff --git a/src/IconOfflineShareRoundedFilled.tsx b/src/IconOfflineShareRoundedFilled.tsx new file mode 100644 index 000000000..cefb1dad4 --- /dev/null +++ b/src/IconOfflineShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflineShareRoundedFilled as default } diff --git a/src/IconOfflineShareSharpFilled.tsx b/src/IconOfflineShareSharpFilled.tsx new file mode 100644 index 000000000..4e36a2d0d --- /dev/null +++ b/src/IconOfflineShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOfflineShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOfflineShareSharpFilled as default } diff --git a/src/IconOilBarrelOutlinedFilled.tsx b/src/IconOilBarrelOutlinedFilled.tsx new file mode 100644 index 000000000..17ebf60f2 --- /dev/null +++ b/src/IconOilBarrelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOilBarrelOutlinedFilled as default } diff --git a/src/IconOilBarrelRoundedFilled.tsx b/src/IconOilBarrelRoundedFilled.tsx new file mode 100644 index 000000000..4f5e3e088 --- /dev/null +++ b/src/IconOilBarrelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOilBarrelRoundedFilled as default } diff --git a/src/IconOilBarrelSharpFilled.tsx b/src/IconOilBarrelSharpFilled.tsx new file mode 100644 index 000000000..535990c0b --- /dev/null +++ b/src/IconOilBarrelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOilBarrelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOilBarrelSharpFilled as default } diff --git a/src/IconOnDeviceTrainingOutlinedFilled.tsx b/src/IconOnDeviceTrainingOutlinedFilled.tsx new file mode 100644 index 000000000..361ce31e4 --- /dev/null +++ b/src/IconOnDeviceTrainingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOnDeviceTrainingOutlinedFilled as default } diff --git a/src/IconOnDeviceTrainingRoundedFilled.tsx b/src/IconOnDeviceTrainingRoundedFilled.tsx new file mode 100644 index 000000000..3b68583f8 --- /dev/null +++ b/src/IconOnDeviceTrainingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOnDeviceTrainingRoundedFilled as default } diff --git a/src/IconOnDeviceTrainingSharpFilled.tsx b/src/IconOnDeviceTrainingSharpFilled.tsx new file mode 100644 index 000000000..6ea642446 --- /dev/null +++ b/src/IconOnDeviceTrainingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnDeviceTrainingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnDeviceTrainingSharpFilled as default } diff --git a/src/IconOnHubDeviceOutlinedFilled.tsx b/src/IconOnHubDeviceOutlinedFilled.tsx new file mode 100644 index 000000000..c445848a3 --- /dev/null +++ b/src/IconOnHubDeviceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnHubDeviceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnHubDeviceOutlinedFilled as default } diff --git a/src/IconOnHubDeviceRoundedFilled.tsx b/src/IconOnHubDeviceRoundedFilled.tsx new file mode 100644 index 000000000..42408b04f --- /dev/null +++ b/src/IconOnHubDeviceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnHubDeviceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnHubDeviceRoundedFilled as default } diff --git a/src/IconOnHubDeviceSharpFilled.tsx b/src/IconOnHubDeviceSharpFilled.tsx new file mode 100644 index 000000000..5618979a8 --- /dev/null +++ b/src/IconOnHubDeviceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnHubDeviceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnHubDeviceSharpFilled as default } diff --git a/src/IconOncologyOutlinedFilled.tsx b/src/IconOncologyOutlinedFilled.tsx new file mode 100644 index 000000000..5b997b2c4 --- /dev/null +++ b/src/IconOncologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOncologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOncologyOutlinedFilled as default } diff --git a/src/IconOncologyRoundedFilled.tsx b/src/IconOncologyRoundedFilled.tsx new file mode 100644 index 000000000..1a251e7bb --- /dev/null +++ b/src/IconOncologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOncologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOncologyRoundedFilled as default } diff --git a/src/IconOncologySharpFilled.tsx b/src/IconOncologySharpFilled.tsx new file mode 100644 index 000000000..97ae0a605 --- /dev/null +++ b/src/IconOncologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOncologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOncologySharpFilled as default } diff --git a/src/IconOnlinePredictionOutlinedFilled.tsx b/src/IconOnlinePredictionOutlinedFilled.tsx new file mode 100644 index 000000000..4552765e1 --- /dev/null +++ b/src/IconOnlinePredictionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOnlinePredictionOutlinedFilled as default } diff --git a/src/IconOnlinePredictionRoundedFilled.tsx b/src/IconOnlinePredictionRoundedFilled.tsx new file mode 100644 index 000000000..b3141e0e2 --- /dev/null +++ b/src/IconOnlinePredictionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOnlinePredictionRoundedFilled as default } diff --git a/src/IconOnlinePredictionSharpFilled.tsx b/src/IconOnlinePredictionSharpFilled.tsx new file mode 100644 index 000000000..64b6c8729 --- /dev/null +++ b/src/IconOnlinePredictionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnlinePredictionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnlinePredictionSharpFilled as default } diff --git a/src/IconOnsenOutlinedFilled.tsx b/src/IconOnsenOutlinedFilled.tsx new file mode 100644 index 000000000..206413fd5 --- /dev/null +++ b/src/IconOnsenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnsenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnsenOutlinedFilled as default } diff --git a/src/IconOnsenRoundedFilled.tsx b/src/IconOnsenRoundedFilled.tsx new file mode 100644 index 000000000..92cf8864f --- /dev/null +++ b/src/IconOnsenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnsenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnsenRoundedFilled as default } diff --git a/src/IconOnsenSharpFilled.tsx b/src/IconOnsenSharpFilled.tsx new file mode 100644 index 000000000..fcfaa8d98 --- /dev/null +++ b/src/IconOnsenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOnsenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOnsenSharpFilled as default } diff --git a/src/IconOpacityOutlinedFilled.tsx b/src/IconOpacityOutlinedFilled.tsx new file mode 100644 index 000000000..78374b8a1 --- /dev/null +++ b/src/IconOpacityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpacityOutlinedFilled as default } diff --git a/src/IconOpacityRoundedFilled.tsx b/src/IconOpacityRoundedFilled.tsx new file mode 100644 index 000000000..28f89c98e --- /dev/null +++ b/src/IconOpacityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpacityRoundedFilled as default } diff --git a/src/IconOpacitySharpFilled.tsx b/src/IconOpacitySharpFilled.tsx new file mode 100644 index 000000000..b0190b767 --- /dev/null +++ b/src/IconOpacitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpacitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpacitySharpFilled as default } diff --git a/src/IconOpenInBrowserOutlinedFilled.tsx b/src/IconOpenInBrowserOutlinedFilled.tsx new file mode 100644 index 000000000..cce115f69 --- /dev/null +++ b/src/IconOpenInBrowserOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInBrowserOutlinedFilled as default } diff --git a/src/IconOpenInBrowserRoundedFilled.tsx b/src/IconOpenInBrowserRoundedFilled.tsx new file mode 100644 index 000000000..5cb67c3c3 --- /dev/null +++ b/src/IconOpenInBrowserRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInBrowserRoundedFilled as default } diff --git a/src/IconOpenInBrowserSharpFilled.tsx b/src/IconOpenInBrowserSharpFilled.tsx new file mode 100644 index 000000000..f0d9927ea --- /dev/null +++ b/src/IconOpenInBrowserSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInBrowserSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInBrowserSharpFilled as default } diff --git a/src/IconOpenInFullOutlinedFilled.tsx b/src/IconOpenInFullOutlinedFilled.tsx new file mode 100644 index 000000000..1f139edd7 --- /dev/null +++ b/src/IconOpenInFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInFullOutlinedFilled as default } diff --git a/src/IconOpenInFullRoundedFilled.tsx b/src/IconOpenInFullRoundedFilled.tsx new file mode 100644 index 000000000..0f91535ef --- /dev/null +++ b/src/IconOpenInFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInFullRoundedFilled as default } diff --git a/src/IconOpenInFullSharpFilled.tsx b/src/IconOpenInFullSharpFilled.tsx new file mode 100644 index 000000000..d7b1dbe37 --- /dev/null +++ b/src/IconOpenInFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInFullSharpFilled as default } diff --git a/src/IconOpenInNewDownOutlinedFilled.tsx b/src/IconOpenInNewDownOutlinedFilled.tsx new file mode 100644 index 000000000..4cc65b92e --- /dev/null +++ b/src/IconOpenInNewDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewDownOutlinedFilled as default } diff --git a/src/IconOpenInNewDownRoundedFilled.tsx b/src/IconOpenInNewDownRoundedFilled.tsx new file mode 100644 index 000000000..a7b4f0840 --- /dev/null +++ b/src/IconOpenInNewDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewDownRoundedFilled as default } diff --git a/src/IconOpenInNewDownSharpFilled.tsx b/src/IconOpenInNewDownSharpFilled.tsx new file mode 100644 index 000000000..b27d040f1 --- /dev/null +++ b/src/IconOpenInNewDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewDownSharpFilled as default } diff --git a/src/IconOpenInNewOffOutlinedFilled.tsx b/src/IconOpenInNewOffOutlinedFilled.tsx new file mode 100644 index 000000000..3e5ece2a5 --- /dev/null +++ b/src/IconOpenInNewOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewOffOutlinedFilled as default } diff --git a/src/IconOpenInNewOffRoundedFilled.tsx b/src/IconOpenInNewOffRoundedFilled.tsx new file mode 100644 index 000000000..8fca9661a --- /dev/null +++ b/src/IconOpenInNewOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewOffRoundedFilled as default } diff --git a/src/IconOpenInNewOffSharpFilled.tsx b/src/IconOpenInNewOffSharpFilled.tsx new file mode 100644 index 000000000..f6e7f71ee --- /dev/null +++ b/src/IconOpenInNewOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewOffSharpFilled as default } diff --git a/src/IconOpenInNewOutlinedFilled.tsx b/src/IconOpenInNewOutlinedFilled.tsx new file mode 100644 index 000000000..758ffca89 --- /dev/null +++ b/src/IconOpenInNewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewOutlinedFilled as default } diff --git a/src/IconOpenInNewRoundedFilled.tsx b/src/IconOpenInNewRoundedFilled.tsx new file mode 100644 index 000000000..874e54613 --- /dev/null +++ b/src/IconOpenInNewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewRoundedFilled as default } diff --git a/src/IconOpenInNewSharpFilled.tsx b/src/IconOpenInNewSharpFilled.tsx new file mode 100644 index 000000000..6d478b406 --- /dev/null +++ b/src/IconOpenInNewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInNewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInNewSharpFilled as default } diff --git a/src/IconOpenInPhoneOutlinedFilled.tsx b/src/IconOpenInPhoneOutlinedFilled.tsx new file mode 100644 index 000000000..8759de3da --- /dev/null +++ b/src/IconOpenInPhoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInPhoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInPhoneOutlinedFilled as default } diff --git a/src/IconOpenInPhoneRoundedFilled.tsx b/src/IconOpenInPhoneRoundedFilled.tsx new file mode 100644 index 000000000..bbe6f32e0 --- /dev/null +++ b/src/IconOpenInPhoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInPhoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInPhoneRoundedFilled as default } diff --git a/src/IconOpenInPhoneSharpFilled.tsx b/src/IconOpenInPhoneSharpFilled.tsx new file mode 100644 index 000000000..377b834e2 --- /dev/null +++ b/src/IconOpenInPhoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenInPhoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenInPhoneSharpFilled as default } diff --git a/src/IconOpenJamOutlinedFilled.tsx b/src/IconOpenJamOutlinedFilled.tsx new file mode 100644 index 000000000..89e91b77f --- /dev/null +++ b/src/IconOpenJamOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenJamOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenJamOutlinedFilled as default } diff --git a/src/IconOpenJamRoundedFilled.tsx b/src/IconOpenJamRoundedFilled.tsx new file mode 100644 index 000000000..4786fb2d7 --- /dev/null +++ b/src/IconOpenJamRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenJamRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenJamRoundedFilled as default } diff --git a/src/IconOpenJamSharpFilled.tsx b/src/IconOpenJamSharpFilled.tsx new file mode 100644 index 000000000..35c7aebca --- /dev/null +++ b/src/IconOpenJamSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenJamSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenJamSharpFilled as default } diff --git a/src/IconOpenRunOutlinedFilled.tsx b/src/IconOpenRunOutlinedFilled.tsx new file mode 100644 index 000000000..4fc7c2304 --- /dev/null +++ b/src/IconOpenRunOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenRunOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenRunOutlinedFilled as default } diff --git a/src/IconOpenRunRoundedFilled.tsx b/src/IconOpenRunRoundedFilled.tsx new file mode 100644 index 000000000..bdb9fefc0 --- /dev/null +++ b/src/IconOpenRunRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenRunRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenRunRoundedFilled as default } diff --git a/src/IconOpenRunSharpFilled.tsx b/src/IconOpenRunSharpFilled.tsx new file mode 100644 index 000000000..fb603bee0 --- /dev/null +++ b/src/IconOpenRunSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenRunSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenRunSharpFilled as default } diff --git a/src/IconOpenWithOutlinedFilled.tsx b/src/IconOpenWithOutlinedFilled.tsx new file mode 100644 index 000000000..26b6f3554 --- /dev/null +++ b/src/IconOpenWithOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenWithOutlinedFilled as default } diff --git a/src/IconOpenWithRoundedFilled.tsx b/src/IconOpenWithRoundedFilled.tsx new file mode 100644 index 000000000..52ca8fa8b --- /dev/null +++ b/src/IconOpenWithRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenWithRoundedFilled as default } diff --git a/src/IconOpenWithSharpFilled.tsx b/src/IconOpenWithSharpFilled.tsx new file mode 100644 index 000000000..a638cef12 --- /dev/null +++ b/src/IconOpenWithSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOpenWithSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOpenWithSharpFilled as default } diff --git a/src/IconOphthalmologyOutlinedFilled.tsx b/src/IconOphthalmologyOutlinedFilled.tsx new file mode 100644 index 000000000..6197c7aa0 --- /dev/null +++ b/src/IconOphthalmologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOphthalmologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOphthalmologyOutlinedFilled as default } diff --git a/src/IconOphthalmologyRoundedFilled.tsx b/src/IconOphthalmologyRoundedFilled.tsx new file mode 100644 index 000000000..f5f6cb14c --- /dev/null +++ b/src/IconOphthalmologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOphthalmologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOphthalmologyRoundedFilled as default } diff --git a/src/IconOphthalmologySharpFilled.tsx b/src/IconOphthalmologySharpFilled.tsx new file mode 100644 index 000000000..0af0ec838 --- /dev/null +++ b/src/IconOphthalmologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOphthalmologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOphthalmologySharpFilled as default } diff --git a/src/IconOralDiseaseOutlinedFilled.tsx b/src/IconOralDiseaseOutlinedFilled.tsx new file mode 100644 index 000000000..ea00ef96b --- /dev/null +++ b/src/IconOralDiseaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOralDiseaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOralDiseaseOutlinedFilled as default } diff --git a/src/IconOralDiseaseRoundedFilled.tsx b/src/IconOralDiseaseRoundedFilled.tsx new file mode 100644 index 000000000..f046b9d48 --- /dev/null +++ b/src/IconOralDiseaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOralDiseaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOralDiseaseRoundedFilled as default } diff --git a/src/IconOralDiseaseSharpFilled.tsx b/src/IconOralDiseaseSharpFilled.tsx new file mode 100644 index 000000000..093fabd1c --- /dev/null +++ b/src/IconOralDiseaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOralDiseaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOralDiseaseSharpFilled as default } diff --git a/src/IconOrbitOutlinedFilled.tsx b/src/IconOrbitOutlinedFilled.tsx new file mode 100644 index 000000000..fdad0a3e6 --- /dev/null +++ b/src/IconOrbitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrbitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrbitOutlinedFilled as default } diff --git a/src/IconOrbitRoundedFilled.tsx b/src/IconOrbitRoundedFilled.tsx new file mode 100644 index 000000000..1a364df32 --- /dev/null +++ b/src/IconOrbitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrbitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrbitRoundedFilled as default } diff --git a/src/IconOrbitSharpFilled.tsx b/src/IconOrbitSharpFilled.tsx new file mode 100644 index 000000000..7c1c11800 --- /dev/null +++ b/src/IconOrbitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrbitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrbitSharpFilled as default } diff --git a/src/IconOrderApproveOutlinedFilled.tsx b/src/IconOrderApproveOutlinedFilled.tsx new file mode 100644 index 000000000..840fcd4c3 --- /dev/null +++ b/src/IconOrderApproveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrderApproveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrderApproveOutlinedFilled as default } diff --git a/src/IconOrderApproveRoundedFilled.tsx b/src/IconOrderApproveRoundedFilled.tsx new file mode 100644 index 000000000..4f90251f5 --- /dev/null +++ b/src/IconOrderApproveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrderApproveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrderApproveRoundedFilled as default } diff --git a/src/IconOrderApproveSharpFilled.tsx b/src/IconOrderApproveSharpFilled.tsx new file mode 100644 index 000000000..32e100c76 --- /dev/null +++ b/src/IconOrderApproveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrderApproveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrderApproveSharpFilled as default } diff --git a/src/IconOrderPlayOutlinedFilled.tsx b/src/IconOrderPlayOutlinedFilled.tsx new file mode 100644 index 000000000..8d8c82e67 --- /dev/null +++ b/src/IconOrderPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrderPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrderPlayOutlinedFilled as default } diff --git a/src/IconOrderPlayRoundedFilled.tsx b/src/IconOrderPlayRoundedFilled.tsx new file mode 100644 index 000000000..1ae6b6f90 --- /dev/null +++ b/src/IconOrderPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrderPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrderPlayRoundedFilled as default } diff --git a/src/IconOrderPlaySharpFilled.tsx b/src/IconOrderPlaySharpFilled.tsx new file mode 100644 index 000000000..aead1466b --- /dev/null +++ b/src/IconOrderPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrderPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrderPlaySharpFilled as default } diff --git a/src/IconOrdersOutlinedFilled.tsx b/src/IconOrdersOutlinedFilled.tsx new file mode 100644 index 000000000..5a0803e1c --- /dev/null +++ b/src/IconOrdersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrdersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrdersOutlinedFilled as default } diff --git a/src/IconOrdersRoundedFilled.tsx b/src/IconOrdersRoundedFilled.tsx new file mode 100644 index 000000000..9289b587e --- /dev/null +++ b/src/IconOrdersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrdersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrdersRoundedFilled as default } diff --git a/src/IconOrdersSharpFilled.tsx b/src/IconOrdersSharpFilled.tsx new file mode 100644 index 000000000..2f658d177 --- /dev/null +++ b/src/IconOrdersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrdersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrdersSharpFilled as default } diff --git a/src/IconOrthopedicsOutlinedFilled.tsx b/src/IconOrthopedicsOutlinedFilled.tsx new file mode 100644 index 000000000..2ded1d634 --- /dev/null +++ b/src/IconOrthopedicsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrthopedicsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrthopedicsOutlinedFilled as default } diff --git a/src/IconOrthopedicsRoundedFilled.tsx b/src/IconOrthopedicsRoundedFilled.tsx new file mode 100644 index 000000000..d3c0b4502 --- /dev/null +++ b/src/IconOrthopedicsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrthopedicsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrthopedicsRoundedFilled as default } diff --git a/src/IconOrthopedicsSharpFilled.tsx b/src/IconOrthopedicsSharpFilled.tsx new file mode 100644 index 000000000..e030f01b7 --- /dev/null +++ b/src/IconOrthopedicsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOrthopedicsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOrthopedicsSharpFilled as default } diff --git a/src/IconOtherAdmissionOutlinedFilled.tsx b/src/IconOtherAdmissionOutlinedFilled.tsx new file mode 100644 index 000000000..da6f3ccb4 --- /dev/null +++ b/src/IconOtherAdmissionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherAdmissionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOtherAdmissionOutlinedFilled as default } diff --git a/src/IconOtherAdmissionRoundedFilled.tsx b/src/IconOtherAdmissionRoundedFilled.tsx new file mode 100644 index 000000000..f6e697264 --- /dev/null +++ b/src/IconOtherAdmissionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherAdmissionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOtherAdmissionRoundedFilled as default } diff --git a/src/IconOtherAdmissionSharpFilled.tsx b/src/IconOtherAdmissionSharpFilled.tsx new file mode 100644 index 000000000..53a88765e --- /dev/null +++ b/src/IconOtherAdmissionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherAdmissionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOtherAdmissionSharpFilled as default } diff --git a/src/IconOtherHousesOutlinedFilled.tsx b/src/IconOtherHousesOutlinedFilled.tsx new file mode 100644 index 000000000..57684505a --- /dev/null +++ b/src/IconOtherHousesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOtherHousesOutlinedFilled as default } diff --git a/src/IconOtherHousesRoundedFilled.tsx b/src/IconOtherHousesRoundedFilled.tsx new file mode 100644 index 000000000..a429006ab --- /dev/null +++ b/src/IconOtherHousesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOtherHousesRoundedFilled as default } diff --git a/src/IconOtherHousesSharpFilled.tsx b/src/IconOtherHousesSharpFilled.tsx new file mode 100644 index 000000000..dfad64f4b --- /dev/null +++ b/src/IconOtherHousesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOtherHousesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOtherHousesSharpFilled as default } diff --git a/src/IconOutboundOutlinedFilled.tsx b/src/IconOutboundOutlinedFilled.tsx new file mode 100644 index 000000000..fcca99b93 --- /dev/null +++ b/src/IconOutboundOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboundOutlinedFilled as default } diff --git a/src/IconOutboundRoundedFilled.tsx b/src/IconOutboundRoundedFilled.tsx new file mode 100644 index 000000000..2b04e0419 --- /dev/null +++ b/src/IconOutboundRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboundRoundedFilled as default } diff --git a/src/IconOutboundSharpFilled.tsx b/src/IconOutboundSharpFilled.tsx new file mode 100644 index 000000000..07b07adbd --- /dev/null +++ b/src/IconOutboundSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboundSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboundSharpFilled as default } diff --git a/src/IconOutboxAltOutlinedFilled.tsx b/src/IconOutboxAltOutlinedFilled.tsx new file mode 100644 index 000000000..aef0271f6 --- /dev/null +++ b/src/IconOutboxAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboxAltOutlinedFilled as default } diff --git a/src/IconOutboxAltRoundedFilled.tsx b/src/IconOutboxAltRoundedFilled.tsx new file mode 100644 index 000000000..39ca9d78c --- /dev/null +++ b/src/IconOutboxAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboxAltRoundedFilled as default } diff --git a/src/IconOutboxAltSharpFilled.tsx b/src/IconOutboxAltSharpFilled.tsx new file mode 100644 index 000000000..03b47f098 --- /dev/null +++ b/src/IconOutboxAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboxAltSharpFilled as default } diff --git a/src/IconOutboxOutlinedFilled.tsx b/src/IconOutboxOutlinedFilled.tsx new file mode 100644 index 000000000..c347e1392 --- /dev/null +++ b/src/IconOutboxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboxOutlinedFilled as default } diff --git a/src/IconOutboxRoundedFilled.tsx b/src/IconOutboxRoundedFilled.tsx new file mode 100644 index 000000000..b565e5aa0 --- /dev/null +++ b/src/IconOutboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboxRoundedFilled as default } diff --git a/src/IconOutboxSharpFilled.tsx b/src/IconOutboxSharpFilled.tsx new file mode 100644 index 000000000..53304df0b --- /dev/null +++ b/src/IconOutboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutboxSharpFilled as default } diff --git a/src/IconOutdoorGardenOutlinedFilled.tsx b/src/IconOutdoorGardenOutlinedFilled.tsx new file mode 100644 index 000000000..b55a74f26 --- /dev/null +++ b/src/IconOutdoorGardenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGardenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutdoorGardenOutlinedFilled as default } diff --git a/src/IconOutdoorGardenRoundedFilled.tsx b/src/IconOutdoorGardenRoundedFilled.tsx new file mode 100644 index 000000000..0d5517b4e --- /dev/null +++ b/src/IconOutdoorGardenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGardenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutdoorGardenRoundedFilled as default } diff --git a/src/IconOutdoorGardenSharpFilled.tsx b/src/IconOutdoorGardenSharpFilled.tsx new file mode 100644 index 000000000..49b641e2e --- /dev/null +++ b/src/IconOutdoorGardenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGardenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutdoorGardenSharpFilled as default } diff --git a/src/IconOutdoorGrillOutlinedFilled.tsx b/src/IconOutdoorGrillOutlinedFilled.tsx new file mode 100644 index 000000000..95979573b --- /dev/null +++ b/src/IconOutdoorGrillOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutdoorGrillOutlinedFilled as default } diff --git a/src/IconOutdoorGrillRoundedFilled.tsx b/src/IconOutdoorGrillRoundedFilled.tsx new file mode 100644 index 000000000..0f3650c8a --- /dev/null +++ b/src/IconOutdoorGrillRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutdoorGrillRoundedFilled as default } diff --git a/src/IconOutdoorGrillSharpFilled.tsx b/src/IconOutdoorGrillSharpFilled.tsx new file mode 100644 index 000000000..926d62284 --- /dev/null +++ b/src/IconOutdoorGrillSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutdoorGrillSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutdoorGrillSharpFilled as default } diff --git a/src/IconOutgoingMailOutlinedFilled.tsx b/src/IconOutgoingMailOutlinedFilled.tsx new file mode 100644 index 000000000..b24e6f8d5 --- /dev/null +++ b/src/IconOutgoingMailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutgoingMailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutgoingMailOutlinedFilled as default } diff --git a/src/IconOutgoingMailRoundedFilled.tsx b/src/IconOutgoingMailRoundedFilled.tsx new file mode 100644 index 000000000..df6153088 --- /dev/null +++ b/src/IconOutgoingMailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutgoingMailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutgoingMailRoundedFilled as default } diff --git a/src/IconOutgoingMailSharpFilled.tsx b/src/IconOutgoingMailSharpFilled.tsx new file mode 100644 index 000000000..66e59bd73 --- /dev/null +++ b/src/IconOutgoingMailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutgoingMailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutgoingMailSharpFilled as default } diff --git a/src/IconOutletOutlinedFilled.tsx b/src/IconOutletOutlinedFilled.tsx new file mode 100644 index 000000000..5f29980a6 --- /dev/null +++ b/src/IconOutletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutletOutlinedFilled as default } diff --git a/src/IconOutletRoundedFilled.tsx b/src/IconOutletRoundedFilled.tsx new file mode 100644 index 000000000..95bb1e9f8 --- /dev/null +++ b/src/IconOutletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutletRoundedFilled as default } diff --git a/src/IconOutletSharpFilled.tsx b/src/IconOutletSharpFilled.tsx new file mode 100644 index 000000000..a8aa93f3d --- /dev/null +++ b/src/IconOutletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutletSharpFilled as default } diff --git a/src/IconOutpatientMedOutlinedFilled.tsx b/src/IconOutpatientMedOutlinedFilled.tsx new file mode 100644 index 000000000..da9968c6e --- /dev/null +++ b/src/IconOutpatientMedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutpatientMedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutpatientMedOutlinedFilled as default } diff --git a/src/IconOutpatientMedRoundedFilled.tsx b/src/IconOutpatientMedRoundedFilled.tsx new file mode 100644 index 000000000..87a5af40e --- /dev/null +++ b/src/IconOutpatientMedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutpatientMedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutpatientMedRoundedFilled as default } diff --git a/src/IconOutpatientMedSharpFilled.tsx b/src/IconOutpatientMedSharpFilled.tsx new file mode 100644 index 000000000..21b83e3b9 --- /dev/null +++ b/src/IconOutpatientMedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutpatientMedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutpatientMedSharpFilled as default } diff --git a/src/IconOutpatientOutlinedFilled.tsx b/src/IconOutpatientOutlinedFilled.tsx new file mode 100644 index 000000000..eff7cd1b5 --- /dev/null +++ b/src/IconOutpatientOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutpatientOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutpatientOutlinedFilled as default } diff --git a/src/IconOutpatientRoundedFilled.tsx b/src/IconOutpatientRoundedFilled.tsx new file mode 100644 index 000000000..326b499a8 --- /dev/null +++ b/src/IconOutpatientRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutpatientRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutpatientRoundedFilled as default } diff --git a/src/IconOutpatientSharpFilled.tsx b/src/IconOutpatientSharpFilled.tsx new file mode 100644 index 000000000..5414cda7d --- /dev/null +++ b/src/IconOutpatientSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutpatientSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutpatientSharpFilled as default } diff --git a/src/IconOutputCircleOutlinedFilled.tsx b/src/IconOutputCircleOutlinedFilled.tsx new file mode 100644 index 000000000..99d5471fa --- /dev/null +++ b/src/IconOutputCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutputCircleOutlinedFilled as default } diff --git a/src/IconOutputCircleRoundedFilled.tsx b/src/IconOutputCircleRoundedFilled.tsx new file mode 100644 index 000000000..d6bd6b73c --- /dev/null +++ b/src/IconOutputCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutputCircleRoundedFilled as default } diff --git a/src/IconOutputCircleSharpFilled.tsx b/src/IconOutputCircleSharpFilled.tsx new file mode 100644 index 000000000..126628bc9 --- /dev/null +++ b/src/IconOutputCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutputCircleSharpFilled as default } diff --git a/src/IconOutputOutlinedFilled.tsx b/src/IconOutputOutlinedFilled.tsx new file mode 100644 index 000000000..c1c6d9886 --- /dev/null +++ b/src/IconOutputOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutputOutlinedFilled as default } diff --git a/src/IconOutputRoundedFilled.tsx b/src/IconOutputRoundedFilled.tsx new file mode 100644 index 000000000..ceca1d7b6 --- /dev/null +++ b/src/IconOutputRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutputRoundedFilled as default } diff --git a/src/IconOutputSharpFilled.tsx b/src/IconOutputSharpFilled.tsx new file mode 100644 index 000000000..6bc732144 --- /dev/null +++ b/src/IconOutputSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOutputSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOutputSharpFilled as default } diff --git a/src/IconOvenGenOutlinedFilled.tsx b/src/IconOvenGenOutlinedFilled.tsx new file mode 100644 index 000000000..af2bda709 --- /dev/null +++ b/src/IconOvenGenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOvenGenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOvenGenOutlinedFilled as default } diff --git a/src/IconOvenGenRoundedFilled.tsx b/src/IconOvenGenRoundedFilled.tsx new file mode 100644 index 000000000..18f60463e --- /dev/null +++ b/src/IconOvenGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOvenGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOvenGenRoundedFilled as default } diff --git a/src/IconOvenGenSharpFilled.tsx b/src/IconOvenGenSharpFilled.tsx new file mode 100644 index 000000000..9c7c19fc7 --- /dev/null +++ b/src/IconOvenGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOvenGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOvenGenSharpFilled as default } diff --git a/src/IconOvenOutlinedFilled.tsx b/src/IconOvenOutlinedFilled.tsx new file mode 100644 index 000000000..826beda8f --- /dev/null +++ b/src/IconOvenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOvenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOvenOutlinedFilled as default } diff --git a/src/IconOvenRoundedFilled.tsx b/src/IconOvenRoundedFilled.tsx new file mode 100644 index 000000000..b25633ae1 --- /dev/null +++ b/src/IconOvenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOvenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOvenRoundedFilled as default } diff --git a/src/IconOvenSharpFilled.tsx b/src/IconOvenSharpFilled.tsx new file mode 100644 index 000000000..f81026c3a --- /dev/null +++ b/src/IconOvenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOvenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOvenSharpFilled as default } diff --git a/src/IconOverviewKeyOutlinedFilled.tsx b/src/IconOverviewKeyOutlinedFilled.tsx new file mode 100644 index 000000000..8c52f967d --- /dev/null +++ b/src/IconOverviewKeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOverviewKeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOverviewKeyOutlinedFilled as default } diff --git a/src/IconOverviewKeyRoundedFilled.tsx b/src/IconOverviewKeyRoundedFilled.tsx new file mode 100644 index 000000000..bcf4186d2 --- /dev/null +++ b/src/IconOverviewKeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOverviewKeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOverviewKeyRoundedFilled as default } diff --git a/src/IconOverviewKeySharpFilled.tsx b/src/IconOverviewKeySharpFilled.tsx new file mode 100644 index 000000000..e3593dd72 --- /dev/null +++ b/src/IconOverviewKeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOverviewKeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOverviewKeySharpFilled as default } diff --git a/src/IconOverviewOutlinedFilled.tsx b/src/IconOverviewOutlinedFilled.tsx new file mode 100644 index 000000000..84911e013 --- /dev/null +++ b/src/IconOverviewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOverviewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOverviewOutlinedFilled as default } diff --git a/src/IconOverviewRoundedFilled.tsx b/src/IconOverviewRoundedFilled.tsx new file mode 100644 index 000000000..665554069 --- /dev/null +++ b/src/IconOverviewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOverviewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOverviewRoundedFilled as default } diff --git a/src/IconOverviewSharpFilled.tsx b/src/IconOverviewSharpFilled.tsx new file mode 100644 index 000000000..59b666c9e --- /dev/null +++ b/src/IconOverviewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOverviewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOverviewSharpFilled as default } diff --git a/src/IconOxygenSaturationOutlinedFilled.tsx b/src/IconOxygenSaturationOutlinedFilled.tsx new file mode 100644 index 000000000..911e559a1 --- /dev/null +++ b/src/IconOxygenSaturationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOxygenSaturationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOxygenSaturationOutlinedFilled as default } diff --git a/src/IconOxygenSaturationRoundedFilled.tsx b/src/IconOxygenSaturationRoundedFilled.tsx new file mode 100644 index 000000000..eb127c872 --- /dev/null +++ b/src/IconOxygenSaturationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOxygenSaturationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconOxygenSaturationRoundedFilled as default } diff --git a/src/IconOxygenSaturationSharpFilled.tsx b/src/IconOxygenSaturationSharpFilled.tsx new file mode 100644 index 000000000..f4949afb2 --- /dev/null +++ b/src/IconOxygenSaturationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconOxygenSaturationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconOxygenSaturationSharpFilled as default } diff --git a/src/IconP2pOutlinedFilled.tsx b/src/IconP2pOutlinedFilled.tsx new file mode 100644 index 000000000..09859a550 --- /dev/null +++ b/src/IconP2pOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconP2pOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconP2pOutlinedFilled as default } diff --git a/src/IconP2pRoundedFilled.tsx b/src/IconP2pRoundedFilled.tsx new file mode 100644 index 000000000..f67217a98 --- /dev/null +++ b/src/IconP2pRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconP2pRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconP2pRoundedFilled as default } diff --git a/src/IconP2pSharpFilled.tsx b/src/IconP2pSharpFilled.tsx new file mode 100644 index 000000000..538bb44d9 --- /dev/null +++ b/src/IconP2pSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconP2pSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconP2pSharpFilled as default } diff --git a/src/IconPaceOutlinedFilled.tsx b/src/IconPaceOutlinedFilled.tsx new file mode 100644 index 000000000..fe3aae952 --- /dev/null +++ b/src/IconPaceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaceOutlinedFilled as default } diff --git a/src/IconPaceRoundedFilled.tsx b/src/IconPaceRoundedFilled.tsx new file mode 100644 index 000000000..9dd6477c2 --- /dev/null +++ b/src/IconPaceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaceRoundedFilled as default } diff --git a/src/IconPaceSharpFilled.tsx b/src/IconPaceSharpFilled.tsx new file mode 100644 index 000000000..a73379c28 --- /dev/null +++ b/src/IconPaceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaceSharpFilled as default } diff --git a/src/IconPacemakerOutlinedFilled.tsx b/src/IconPacemakerOutlinedFilled.tsx new file mode 100644 index 000000000..87be4145a --- /dev/null +++ b/src/IconPacemakerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPacemakerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPacemakerOutlinedFilled as default } diff --git a/src/IconPacemakerRoundedFilled.tsx b/src/IconPacemakerRoundedFilled.tsx new file mode 100644 index 000000000..dbac4500e --- /dev/null +++ b/src/IconPacemakerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPacemakerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPacemakerRoundedFilled as default } diff --git a/src/IconPacemakerSharpFilled.tsx b/src/IconPacemakerSharpFilled.tsx new file mode 100644 index 000000000..ee1e790f5 --- /dev/null +++ b/src/IconPacemakerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPacemakerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPacemakerSharpFilled as default } diff --git a/src/IconPackage2OutlinedFilled.tsx b/src/IconPackage2OutlinedFilled.tsx new file mode 100644 index 000000000..2fa341e7c --- /dev/null +++ b/src/IconPackage2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPackage2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPackage2OutlinedFilled as default } diff --git a/src/IconPackage2RoundedFilled.tsx b/src/IconPackage2RoundedFilled.tsx new file mode 100644 index 000000000..b399c62ef --- /dev/null +++ b/src/IconPackage2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPackage2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPackage2RoundedFilled as default } diff --git a/src/IconPackage2SharpFilled.tsx b/src/IconPackage2SharpFilled.tsx new file mode 100644 index 000000000..549ead0e9 --- /dev/null +++ b/src/IconPackage2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPackage2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPackage2SharpFilled as default } diff --git a/src/IconPackageOutlinedFilled.tsx b/src/IconPackageOutlinedFilled.tsx new file mode 100644 index 000000000..e2f124adc --- /dev/null +++ b/src/IconPackageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPackageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPackageOutlinedFilled as default } diff --git a/src/IconPackageRoundedFilled.tsx b/src/IconPackageRoundedFilled.tsx new file mode 100644 index 000000000..88633d5a4 --- /dev/null +++ b/src/IconPackageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPackageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPackageRoundedFilled as default } diff --git a/src/IconPackageSharpFilled.tsx b/src/IconPackageSharpFilled.tsx new file mode 100644 index 000000000..ba3e3b5f8 --- /dev/null +++ b/src/IconPackageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPackageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPackageSharpFilled as default } diff --git a/src/IconPaddingOutlinedFilled.tsx b/src/IconPaddingOutlinedFilled.tsx new file mode 100644 index 000000000..9fc9248c0 --- /dev/null +++ b/src/IconPaddingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaddingOutlinedFilled as default } diff --git a/src/IconPaddingRoundedFilled.tsx b/src/IconPaddingRoundedFilled.tsx new file mode 100644 index 000000000..0bb8392c1 --- /dev/null +++ b/src/IconPaddingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaddingRoundedFilled as default } diff --git a/src/IconPaddingSharpFilled.tsx b/src/IconPaddingSharpFilled.tsx new file mode 100644 index 000000000..0f604f903 --- /dev/null +++ b/src/IconPaddingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaddingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaddingSharpFilled as default } diff --git a/src/IconPageControlOutlinedFilled.tsx b/src/IconPageControlOutlinedFilled.tsx new file mode 100644 index 000000000..36deed554 --- /dev/null +++ b/src/IconPageControlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageControlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageControlOutlinedFilled as default } diff --git a/src/IconPageControlRoundedFilled.tsx b/src/IconPageControlRoundedFilled.tsx new file mode 100644 index 000000000..ca3c24ba4 --- /dev/null +++ b/src/IconPageControlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageControlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageControlRoundedFilled as default } diff --git a/src/IconPageControlSharpFilled.tsx b/src/IconPageControlSharpFilled.tsx new file mode 100644 index 000000000..9d72535af --- /dev/null +++ b/src/IconPageControlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageControlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageControlSharpFilled as default } diff --git a/src/IconPageInfoOutlinedFilled.tsx b/src/IconPageInfoOutlinedFilled.tsx new file mode 100644 index 000000000..5584d7d8c --- /dev/null +++ b/src/IconPageInfoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageInfoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageInfoOutlinedFilled as default } diff --git a/src/IconPageInfoRoundedFilled.tsx b/src/IconPageInfoRoundedFilled.tsx new file mode 100644 index 000000000..64eda9439 --- /dev/null +++ b/src/IconPageInfoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageInfoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageInfoRoundedFilled as default } diff --git a/src/IconPageInfoSharpFilled.tsx b/src/IconPageInfoSharpFilled.tsx new file mode 100644 index 000000000..4b419f966 --- /dev/null +++ b/src/IconPageInfoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageInfoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageInfoSharpFilled as default } diff --git a/src/IconPagelessOutlinedFilled.tsx b/src/IconPagelessOutlinedFilled.tsx new file mode 100644 index 000000000..c7ae91503 --- /dev/null +++ b/src/IconPagelessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagelessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPagelessOutlinedFilled as default } diff --git a/src/IconPagelessRoundedFilled.tsx b/src/IconPagelessRoundedFilled.tsx new file mode 100644 index 000000000..2cdbc53ec --- /dev/null +++ b/src/IconPagelessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagelessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPagelessRoundedFilled as default } diff --git a/src/IconPagelessSharpFilled.tsx b/src/IconPagelessSharpFilled.tsx new file mode 100644 index 000000000..a30164614 --- /dev/null +++ b/src/IconPagelessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagelessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPagelessSharpFilled as default } diff --git a/src/IconPagesOutlinedFilled.tsx b/src/IconPagesOutlinedFilled.tsx new file mode 100644 index 000000000..7c112d900 --- /dev/null +++ b/src/IconPagesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPagesOutlinedFilled as default } diff --git a/src/IconPagesRoundedFilled.tsx b/src/IconPagesRoundedFilled.tsx new file mode 100644 index 000000000..77a2efc3a --- /dev/null +++ b/src/IconPagesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPagesRoundedFilled as default } diff --git a/src/IconPagesSharpFilled.tsx b/src/IconPagesSharpFilled.tsx new file mode 100644 index 000000000..35456248c --- /dev/null +++ b/src/IconPagesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPagesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPagesSharpFilled as default } diff --git a/src/IconPageviewOutlinedFilled.tsx b/src/IconPageviewOutlinedFilled.tsx new file mode 100644 index 000000000..e5ceee5d9 --- /dev/null +++ b/src/IconPageviewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageviewOutlinedFilled as default } diff --git a/src/IconPageviewRoundedFilled.tsx b/src/IconPageviewRoundedFilled.tsx new file mode 100644 index 000000000..550a06ddf --- /dev/null +++ b/src/IconPageviewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageviewRoundedFilled as default } diff --git a/src/IconPageviewSharpFilled.tsx b/src/IconPageviewSharpFilled.tsx new file mode 100644 index 000000000..164747bd5 --- /dev/null +++ b/src/IconPageviewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPageviewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPageviewSharpFilled as default } diff --git a/src/IconPaidOutlinedFilled.tsx b/src/IconPaidOutlinedFilled.tsx new file mode 100644 index 000000000..edea5aa54 --- /dev/null +++ b/src/IconPaidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaidOutlinedFilled as default } diff --git a/src/IconPaidRoundedFilled.tsx b/src/IconPaidRoundedFilled.tsx new file mode 100644 index 000000000..ef364cac1 --- /dev/null +++ b/src/IconPaidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaidRoundedFilled as default } diff --git a/src/IconPaidSharpFilled.tsx b/src/IconPaidSharpFilled.tsx new file mode 100644 index 000000000..4811c5be0 --- /dev/null +++ b/src/IconPaidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaidSharpFilled as default } diff --git a/src/IconPaletteOutlinedFilled.tsx b/src/IconPaletteOutlinedFilled.tsx new file mode 100644 index 000000000..f98b0e996 --- /dev/null +++ b/src/IconPaletteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaletteOutlinedFilled as default } diff --git a/src/IconPaletteRoundedFilled.tsx b/src/IconPaletteRoundedFilled.tsx new file mode 100644 index 000000000..4253940ac --- /dev/null +++ b/src/IconPaletteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaletteRoundedFilled as default } diff --git a/src/IconPaletteSharpFilled.tsx b/src/IconPaletteSharpFilled.tsx new file mode 100644 index 000000000..64f18f0f3 --- /dev/null +++ b/src/IconPaletteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaletteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaletteSharpFilled as default } diff --git a/src/IconPalletOutlinedFilled.tsx b/src/IconPalletOutlinedFilled.tsx new file mode 100644 index 000000000..d5c026105 --- /dev/null +++ b/src/IconPalletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPalletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPalletOutlinedFilled as default } diff --git a/src/IconPalletRoundedFilled.tsx b/src/IconPalletRoundedFilled.tsx new file mode 100644 index 000000000..ec069b156 --- /dev/null +++ b/src/IconPalletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPalletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPalletRoundedFilled as default } diff --git a/src/IconPalletSharpFilled.tsx b/src/IconPalletSharpFilled.tsx new file mode 100644 index 000000000..94628a3fb --- /dev/null +++ b/src/IconPalletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPalletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPalletSharpFilled as default } diff --git a/src/IconPanToolAltOutlinedFilled.tsx b/src/IconPanToolAltOutlinedFilled.tsx new file mode 100644 index 000000000..5ab32aeec --- /dev/null +++ b/src/IconPanToolAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanToolAltOutlinedFilled as default } diff --git a/src/IconPanToolAltRoundedFilled.tsx b/src/IconPanToolAltRoundedFilled.tsx new file mode 100644 index 000000000..845640240 --- /dev/null +++ b/src/IconPanToolAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanToolAltRoundedFilled as default } diff --git a/src/IconPanToolAltSharpFilled.tsx b/src/IconPanToolAltSharpFilled.tsx new file mode 100644 index 000000000..fea76513c --- /dev/null +++ b/src/IconPanToolAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanToolAltSharpFilled as default } diff --git a/src/IconPanToolOutlinedFilled.tsx b/src/IconPanToolOutlinedFilled.tsx new file mode 100644 index 000000000..3a226db4d --- /dev/null +++ b/src/IconPanToolOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanToolOutlinedFilled as default } diff --git a/src/IconPanToolRoundedFilled.tsx b/src/IconPanToolRoundedFilled.tsx new file mode 100644 index 000000000..49133b882 --- /dev/null +++ b/src/IconPanToolRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanToolRoundedFilled as default } diff --git a/src/IconPanToolSharpFilled.tsx b/src/IconPanToolSharpFilled.tsx new file mode 100644 index 000000000..2f10d6c5a --- /dev/null +++ b/src/IconPanToolSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanToolSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanToolSharpFilled as default } diff --git a/src/IconPanZoomOutlinedFilled.tsx b/src/IconPanZoomOutlinedFilled.tsx new file mode 100644 index 000000000..7c39ccdda --- /dev/null +++ b/src/IconPanZoomOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanZoomOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanZoomOutlinedFilled as default } diff --git a/src/IconPanZoomRoundedFilled.tsx b/src/IconPanZoomRoundedFilled.tsx new file mode 100644 index 000000000..ed560948b --- /dev/null +++ b/src/IconPanZoomRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanZoomRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanZoomRoundedFilled as default } diff --git a/src/IconPanZoomSharpFilled.tsx b/src/IconPanZoomSharpFilled.tsx new file mode 100644 index 000000000..53d0d0ede --- /dev/null +++ b/src/IconPanZoomSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanZoomSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanZoomSharpFilled as default } diff --git a/src/IconPanoramaHorizontalOutlinedFilled.tsx b/src/IconPanoramaHorizontalOutlinedFilled.tsx new file mode 100644 index 000000000..e0a36ba0f --- /dev/null +++ b/src/IconPanoramaHorizontalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaHorizontalOutlinedFilled as default } diff --git a/src/IconPanoramaHorizontalRoundedFilled.tsx b/src/IconPanoramaHorizontalRoundedFilled.tsx new file mode 100644 index 000000000..dcfda340b --- /dev/null +++ b/src/IconPanoramaHorizontalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaHorizontalRoundedFilled as default } diff --git a/src/IconPanoramaHorizontalSharpFilled.tsx b/src/IconPanoramaHorizontalSharpFilled.tsx new file mode 100644 index 000000000..a341fff7f --- /dev/null +++ b/src/IconPanoramaHorizontalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaHorizontalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaHorizontalSharpFilled as default } diff --git a/src/IconPanoramaOutlinedFilled.tsx b/src/IconPanoramaOutlinedFilled.tsx new file mode 100644 index 000000000..40b173dec --- /dev/null +++ b/src/IconPanoramaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaOutlinedFilled as default } diff --git a/src/IconPanoramaPhotosphereOutlinedFilled.tsx b/src/IconPanoramaPhotosphereOutlinedFilled.tsx new file mode 100644 index 000000000..5a9528c36 --- /dev/null +++ b/src/IconPanoramaPhotosphereOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaPhotosphereOutlinedFilled as default } diff --git a/src/IconPanoramaPhotosphereRoundedFilled.tsx b/src/IconPanoramaPhotosphereRoundedFilled.tsx new file mode 100644 index 000000000..f909e9a5c --- /dev/null +++ b/src/IconPanoramaPhotosphereRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaPhotosphereRoundedFilled as default } diff --git a/src/IconPanoramaPhotosphereSharpFilled.tsx b/src/IconPanoramaPhotosphereSharpFilled.tsx new file mode 100644 index 000000000..eab9178b5 --- /dev/null +++ b/src/IconPanoramaPhotosphereSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaPhotosphereSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaPhotosphereSharpFilled as default } diff --git a/src/IconPanoramaRoundedFilled.tsx b/src/IconPanoramaRoundedFilled.tsx new file mode 100644 index 000000000..3f9727fc9 --- /dev/null +++ b/src/IconPanoramaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaRoundedFilled as default } diff --git a/src/IconPanoramaSharpFilled.tsx b/src/IconPanoramaSharpFilled.tsx new file mode 100644 index 000000000..abf3201f6 --- /dev/null +++ b/src/IconPanoramaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaSharpFilled as default } diff --git a/src/IconPanoramaVerticalOutlinedFilled.tsx b/src/IconPanoramaVerticalOutlinedFilled.tsx new file mode 100644 index 000000000..c3a244975 --- /dev/null +++ b/src/IconPanoramaVerticalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaVerticalOutlinedFilled as default } diff --git a/src/IconPanoramaVerticalRoundedFilled.tsx b/src/IconPanoramaVerticalRoundedFilled.tsx new file mode 100644 index 000000000..57483d5f0 --- /dev/null +++ b/src/IconPanoramaVerticalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaVerticalRoundedFilled as default } diff --git a/src/IconPanoramaVerticalSharpFilled.tsx b/src/IconPanoramaVerticalSharpFilled.tsx new file mode 100644 index 000000000..eb7c3fc4f --- /dev/null +++ b/src/IconPanoramaVerticalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaVerticalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaVerticalSharpFilled as default } diff --git a/src/IconPanoramaWideAngleOutlinedFilled.tsx b/src/IconPanoramaWideAngleOutlinedFilled.tsx new file mode 100644 index 000000000..aed63752d --- /dev/null +++ b/src/IconPanoramaWideAngleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaWideAngleOutlinedFilled as default } diff --git a/src/IconPanoramaWideAngleRoundedFilled.tsx b/src/IconPanoramaWideAngleRoundedFilled.tsx new file mode 100644 index 000000000..d05a2c48f --- /dev/null +++ b/src/IconPanoramaWideAngleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaWideAngleRoundedFilled as default } diff --git a/src/IconPanoramaWideAngleSharpFilled.tsx b/src/IconPanoramaWideAngleSharpFilled.tsx new file mode 100644 index 000000000..4b81623fe --- /dev/null +++ b/src/IconPanoramaWideAngleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPanoramaWideAngleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPanoramaWideAngleSharpFilled as default } diff --git a/src/IconParaglidingOutlinedFilled.tsx b/src/IconParaglidingOutlinedFilled.tsx new file mode 100644 index 000000000..858bb8984 --- /dev/null +++ b/src/IconParaglidingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconParaglidingOutlinedFilled as default } diff --git a/src/IconParaglidingRoundedFilled.tsx b/src/IconParaglidingRoundedFilled.tsx new file mode 100644 index 000000000..3921fe93a --- /dev/null +++ b/src/IconParaglidingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconParaglidingRoundedFilled as default } diff --git a/src/IconParaglidingSharpFilled.tsx b/src/IconParaglidingSharpFilled.tsx new file mode 100644 index 000000000..488e07c18 --- /dev/null +++ b/src/IconParaglidingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParaglidingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconParaglidingSharpFilled as default } diff --git a/src/IconParkOutlinedFilled.tsx b/src/IconParkOutlinedFilled.tsx new file mode 100644 index 000000000..966dbf028 --- /dev/null +++ b/src/IconParkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconParkOutlinedFilled as default } diff --git a/src/IconParkRoundedFilled.tsx b/src/IconParkRoundedFilled.tsx new file mode 100644 index 000000000..1cbc9c8d8 --- /dev/null +++ b/src/IconParkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconParkRoundedFilled as default } diff --git a/src/IconParkSharpFilled.tsx b/src/IconParkSharpFilled.tsx new file mode 100644 index 000000000..482c4ce60 --- /dev/null +++ b/src/IconParkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconParkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconParkSharpFilled as default } diff --git a/src/IconPartlyCloudyDayOutlinedFilled.tsx b/src/IconPartlyCloudyDayOutlinedFilled.tsx new file mode 100644 index 000000000..0b63d1ff0 --- /dev/null +++ b/src/IconPartlyCloudyDayOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartlyCloudyDayOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartlyCloudyDayOutlinedFilled as default } diff --git a/src/IconPartlyCloudyDayRoundedFilled.tsx b/src/IconPartlyCloudyDayRoundedFilled.tsx new file mode 100644 index 000000000..de22da21f --- /dev/null +++ b/src/IconPartlyCloudyDayRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartlyCloudyDayRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartlyCloudyDayRoundedFilled as default } diff --git a/src/IconPartlyCloudyDaySharpFilled.tsx b/src/IconPartlyCloudyDaySharpFilled.tsx new file mode 100644 index 000000000..57eed207f --- /dev/null +++ b/src/IconPartlyCloudyDaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartlyCloudyDaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartlyCloudyDaySharpFilled as default } diff --git a/src/IconPartlyCloudyNightOutlinedFilled.tsx b/src/IconPartlyCloudyNightOutlinedFilled.tsx new file mode 100644 index 000000000..787ee3284 --- /dev/null +++ b/src/IconPartlyCloudyNightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartlyCloudyNightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartlyCloudyNightOutlinedFilled as default } diff --git a/src/IconPartlyCloudyNightRoundedFilled.tsx b/src/IconPartlyCloudyNightRoundedFilled.tsx new file mode 100644 index 000000000..72e589b3c --- /dev/null +++ b/src/IconPartlyCloudyNightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartlyCloudyNightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartlyCloudyNightRoundedFilled as default } diff --git a/src/IconPartlyCloudyNightSharpFilled.tsx b/src/IconPartlyCloudyNightSharpFilled.tsx new file mode 100644 index 000000000..28222a924 --- /dev/null +++ b/src/IconPartlyCloudyNightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartlyCloudyNightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartlyCloudyNightSharpFilled as default } diff --git a/src/IconPartnerExchangeOutlinedFilled.tsx b/src/IconPartnerExchangeOutlinedFilled.tsx new file mode 100644 index 000000000..52dfc9497 --- /dev/null +++ b/src/IconPartnerExchangeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartnerExchangeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartnerExchangeOutlinedFilled as default } diff --git a/src/IconPartnerExchangeRoundedFilled.tsx b/src/IconPartnerExchangeRoundedFilled.tsx new file mode 100644 index 000000000..daea86832 --- /dev/null +++ b/src/IconPartnerExchangeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartnerExchangeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartnerExchangeRoundedFilled as default } diff --git a/src/IconPartnerExchangeSharpFilled.tsx b/src/IconPartnerExchangeSharpFilled.tsx new file mode 100644 index 000000000..cec93154d --- /dev/null +++ b/src/IconPartnerExchangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartnerExchangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartnerExchangeSharpFilled as default } diff --git a/src/IconPartnerReportsOutlinedFilled.tsx b/src/IconPartnerReportsOutlinedFilled.tsx new file mode 100644 index 000000000..265434a3c --- /dev/null +++ b/src/IconPartnerReportsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartnerReportsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPartnerReportsOutlinedFilled as default } diff --git a/src/IconPartnerReportsRoundedFilled.tsx b/src/IconPartnerReportsRoundedFilled.tsx new file mode 100644 index 000000000..66f1cdb2c --- /dev/null +++ b/src/IconPartnerReportsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartnerReportsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartnerReportsRoundedFilled as default } diff --git a/src/IconPartnerReportsSharpFilled.tsx b/src/IconPartnerReportsSharpFilled.tsx new file mode 100644 index 000000000..de5234d5e --- /dev/null +++ b/src/IconPartnerReportsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartnerReportsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartnerReportsSharpFilled as default } diff --git a/src/IconPartyModeOutlinedFilled.tsx b/src/IconPartyModeOutlinedFilled.tsx new file mode 100644 index 000000000..4a7d35366 --- /dev/null +++ b/src/IconPartyModeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartyModeOutlinedFilled as default } diff --git a/src/IconPartyModeRoundedFilled.tsx b/src/IconPartyModeRoundedFilled.tsx new file mode 100644 index 000000000..02d817333 --- /dev/null +++ b/src/IconPartyModeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartyModeRoundedFilled as default } diff --git a/src/IconPartyModeSharpFilled.tsx b/src/IconPartyModeSharpFilled.tsx new file mode 100644 index 000000000..4ffb422ab --- /dev/null +++ b/src/IconPartyModeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPartyModeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPartyModeSharpFilled as default } diff --git a/src/IconPasskeyOutlinedFilled.tsx b/src/IconPasskeyOutlinedFilled.tsx new file mode 100644 index 000000000..d348931ac --- /dev/null +++ b/src/IconPasskeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasskeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPasskeyOutlinedFilled as default } diff --git a/src/IconPasskeyRoundedFilled.tsx b/src/IconPasskeyRoundedFilled.tsx new file mode 100644 index 000000000..9c66835f3 --- /dev/null +++ b/src/IconPasskeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasskeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPasskeyRoundedFilled as default } diff --git a/src/IconPasskeySharpFilled.tsx b/src/IconPasskeySharpFilled.tsx new file mode 100644 index 000000000..39fc11269 --- /dev/null +++ b/src/IconPasskeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasskeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPasskeySharpFilled as default } diff --git a/src/IconPassword2OffOutlinedFilled.tsx b/src/IconPassword2OffOutlinedFilled.tsx new file mode 100644 index 000000000..d28cbb6e2 --- /dev/null +++ b/src/IconPassword2OffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPassword2OffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPassword2OffOutlinedFilled as default } diff --git a/src/IconPassword2OffRoundedFilled.tsx b/src/IconPassword2OffRoundedFilled.tsx new file mode 100644 index 000000000..2c7719bb2 --- /dev/null +++ b/src/IconPassword2OffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPassword2OffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPassword2OffRoundedFilled as default } diff --git a/src/IconPassword2OffSharpFilled.tsx b/src/IconPassword2OffSharpFilled.tsx new file mode 100644 index 000000000..fae89412c --- /dev/null +++ b/src/IconPassword2OffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPassword2OffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPassword2OffSharpFilled as default } diff --git a/src/IconPassword2OutlinedFilled.tsx b/src/IconPassword2OutlinedFilled.tsx new file mode 100644 index 000000000..d6aad5e39 --- /dev/null +++ b/src/IconPassword2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPassword2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPassword2OutlinedFilled as default } diff --git a/src/IconPassword2RoundedFilled.tsx b/src/IconPassword2RoundedFilled.tsx new file mode 100644 index 000000000..62c0e24b4 --- /dev/null +++ b/src/IconPassword2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPassword2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPassword2RoundedFilled as default } diff --git a/src/IconPassword2SharpFilled.tsx b/src/IconPassword2SharpFilled.tsx new file mode 100644 index 000000000..067033628 --- /dev/null +++ b/src/IconPassword2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPassword2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPassword2SharpFilled as default } diff --git a/src/IconPasswordOutlinedFilled.tsx b/src/IconPasswordOutlinedFilled.tsx new file mode 100644 index 000000000..752c6a69e --- /dev/null +++ b/src/IconPasswordOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPasswordOutlinedFilled as default } diff --git a/src/IconPasswordRoundedFilled.tsx b/src/IconPasswordRoundedFilled.tsx new file mode 100644 index 000000000..7d5d28134 --- /dev/null +++ b/src/IconPasswordRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPasswordRoundedFilled as default } diff --git a/src/IconPasswordSharpFilled.tsx b/src/IconPasswordSharpFilled.tsx new file mode 100644 index 000000000..84bbc6078 --- /dev/null +++ b/src/IconPasswordSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPasswordSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPasswordSharpFilled as default } diff --git a/src/IconPatientListOutlinedFilled.tsx b/src/IconPatientListOutlinedFilled.tsx new file mode 100644 index 000000000..7083801bd --- /dev/null +++ b/src/IconPatientListOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatientListOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPatientListOutlinedFilled as default } diff --git a/src/IconPatientListRoundedFilled.tsx b/src/IconPatientListRoundedFilled.tsx new file mode 100644 index 000000000..e2c19b093 --- /dev/null +++ b/src/IconPatientListRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatientListRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPatientListRoundedFilled as default } diff --git a/src/IconPatientListSharpFilled.tsx b/src/IconPatientListSharpFilled.tsx new file mode 100644 index 000000000..276842e80 --- /dev/null +++ b/src/IconPatientListSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatientListSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPatientListSharpFilled as default } diff --git a/src/IconPatternOutlinedFilled.tsx b/src/IconPatternOutlinedFilled.tsx new file mode 100644 index 000000000..a70ce7367 --- /dev/null +++ b/src/IconPatternOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPatternOutlinedFilled as default } diff --git a/src/IconPatternRoundedFilled.tsx b/src/IconPatternRoundedFilled.tsx new file mode 100644 index 000000000..334217378 --- /dev/null +++ b/src/IconPatternRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPatternRoundedFilled as default } diff --git a/src/IconPatternSharpFilled.tsx b/src/IconPatternSharpFilled.tsx new file mode 100644 index 000000000..a169c5b5b --- /dev/null +++ b/src/IconPatternSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPatternSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPatternSharpFilled as default } diff --git a/src/IconPauseCircleOutlinedFilled.tsx b/src/IconPauseCircleOutlinedFilled.tsx new file mode 100644 index 000000000..2d44cda5e --- /dev/null +++ b/src/IconPauseCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseCircleOutlinedFilled as default } diff --git a/src/IconPauseCircleRoundedFilled.tsx b/src/IconPauseCircleRoundedFilled.tsx new file mode 100644 index 000000000..4b261c2b1 --- /dev/null +++ b/src/IconPauseCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseCircleRoundedFilled as default } diff --git a/src/IconPauseCircleSharpFilled.tsx b/src/IconPauseCircleSharpFilled.tsx new file mode 100644 index 000000000..a45fef480 --- /dev/null +++ b/src/IconPauseCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseCircleSharpFilled as default } diff --git a/src/IconPauseOutlinedFilled.tsx b/src/IconPauseOutlinedFilled.tsx new file mode 100644 index 000000000..e8e64819a --- /dev/null +++ b/src/IconPauseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseOutlinedFilled as default } diff --git a/src/IconPausePresentationOutlinedFilled.tsx b/src/IconPausePresentationOutlinedFilled.tsx new file mode 100644 index 000000000..0a6068541 --- /dev/null +++ b/src/IconPausePresentationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPausePresentationOutlinedFilled as default } diff --git a/src/IconPausePresentationRoundedFilled.tsx b/src/IconPausePresentationRoundedFilled.tsx new file mode 100644 index 000000000..53517969f --- /dev/null +++ b/src/IconPausePresentationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPausePresentationRoundedFilled as default } diff --git a/src/IconPausePresentationSharpFilled.tsx b/src/IconPausePresentationSharpFilled.tsx new file mode 100644 index 000000000..d316647a7 --- /dev/null +++ b/src/IconPausePresentationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPausePresentationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPausePresentationSharpFilled as default } diff --git a/src/IconPauseRoundedFilled.tsx b/src/IconPauseRoundedFilled.tsx new file mode 100644 index 000000000..2f4340c2c --- /dev/null +++ b/src/IconPauseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseRoundedFilled as default } diff --git a/src/IconPauseSharpFilled.tsx b/src/IconPauseSharpFilled.tsx new file mode 100644 index 000000000..87fc65033 --- /dev/null +++ b/src/IconPauseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPauseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPauseSharpFilled as default } diff --git a/src/IconPaymentsOutlinedFilled.tsx b/src/IconPaymentsOutlinedFilled.tsx new file mode 100644 index 000000000..8467e0983 --- /dev/null +++ b/src/IconPaymentsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaymentsOutlinedFilled as default } diff --git a/src/IconPaymentsRoundedFilled.tsx b/src/IconPaymentsRoundedFilled.tsx new file mode 100644 index 000000000..cd0c0e312 --- /dev/null +++ b/src/IconPaymentsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaymentsRoundedFilled as default } diff --git a/src/IconPaymentsSharpFilled.tsx b/src/IconPaymentsSharpFilled.tsx new file mode 100644 index 000000000..f5ebf8133 --- /dev/null +++ b/src/IconPaymentsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPaymentsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPaymentsSharpFilled as default } diff --git a/src/IconPedalBikeOutlinedFilled.tsx b/src/IconPedalBikeOutlinedFilled.tsx new file mode 100644 index 000000000..2e4b6f37d --- /dev/null +++ b/src/IconPedalBikeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPedalBikeOutlinedFilled as default } diff --git a/src/IconPedalBikeRoundedFilled.tsx b/src/IconPedalBikeRoundedFilled.tsx new file mode 100644 index 000000000..a71ea8c05 --- /dev/null +++ b/src/IconPedalBikeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPedalBikeRoundedFilled as default } diff --git a/src/IconPedalBikeSharpFilled.tsx b/src/IconPedalBikeSharpFilled.tsx new file mode 100644 index 000000000..3a4fea860 --- /dev/null +++ b/src/IconPedalBikeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPedalBikeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPedalBikeSharpFilled as default } diff --git a/src/IconPediatricsOutlinedFilled.tsx b/src/IconPediatricsOutlinedFilled.tsx new file mode 100644 index 000000000..f76f9c6db --- /dev/null +++ b/src/IconPediatricsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPediatricsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPediatricsOutlinedFilled as default } diff --git a/src/IconPediatricsRoundedFilled.tsx b/src/IconPediatricsRoundedFilled.tsx new file mode 100644 index 000000000..c764ed328 --- /dev/null +++ b/src/IconPediatricsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPediatricsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPediatricsRoundedFilled as default } diff --git a/src/IconPediatricsSharpFilled.tsx b/src/IconPediatricsSharpFilled.tsx new file mode 100644 index 000000000..8941e8c74 --- /dev/null +++ b/src/IconPediatricsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPediatricsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPediatricsSharpFilled as default } diff --git a/src/IconPenSize1OutlinedFilled.tsx b/src/IconPenSize1OutlinedFilled.tsx new file mode 100644 index 000000000..aa1070b33 --- /dev/null +++ b/src/IconPenSize1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize1OutlinedFilled as default } diff --git a/src/IconPenSize1RoundedFilled.tsx b/src/IconPenSize1RoundedFilled.tsx new file mode 100644 index 000000000..d4e566b3e --- /dev/null +++ b/src/IconPenSize1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize1RoundedFilled as default } diff --git a/src/IconPenSize1SharpFilled.tsx b/src/IconPenSize1SharpFilled.tsx new file mode 100644 index 000000000..09172565a --- /dev/null +++ b/src/IconPenSize1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize1SharpFilled as default } diff --git a/src/IconPenSize2OutlinedFilled.tsx b/src/IconPenSize2OutlinedFilled.tsx new file mode 100644 index 000000000..cec2997e3 --- /dev/null +++ b/src/IconPenSize2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize2OutlinedFilled as default } diff --git a/src/IconPenSize2RoundedFilled.tsx b/src/IconPenSize2RoundedFilled.tsx new file mode 100644 index 000000000..2082f1f5f --- /dev/null +++ b/src/IconPenSize2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize2RoundedFilled as default } diff --git a/src/IconPenSize2SharpFilled.tsx b/src/IconPenSize2SharpFilled.tsx new file mode 100644 index 000000000..8f5f12c7c --- /dev/null +++ b/src/IconPenSize2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize2SharpFilled as default } diff --git a/src/IconPenSize3OutlinedFilled.tsx b/src/IconPenSize3OutlinedFilled.tsx new file mode 100644 index 000000000..22fbfa765 --- /dev/null +++ b/src/IconPenSize3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize3OutlinedFilled as default } diff --git a/src/IconPenSize3RoundedFilled.tsx b/src/IconPenSize3RoundedFilled.tsx new file mode 100644 index 000000000..40b66ef06 --- /dev/null +++ b/src/IconPenSize3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize3RoundedFilled as default } diff --git a/src/IconPenSize3SharpFilled.tsx b/src/IconPenSize3SharpFilled.tsx new file mode 100644 index 000000000..5494a9685 --- /dev/null +++ b/src/IconPenSize3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize3SharpFilled as default } diff --git a/src/IconPenSize4OutlinedFilled.tsx b/src/IconPenSize4OutlinedFilled.tsx new file mode 100644 index 000000000..63e5cb45b --- /dev/null +++ b/src/IconPenSize4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize4OutlinedFilled as default } diff --git a/src/IconPenSize4RoundedFilled.tsx b/src/IconPenSize4RoundedFilled.tsx new file mode 100644 index 000000000..e97110853 --- /dev/null +++ b/src/IconPenSize4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize4RoundedFilled as default } diff --git a/src/IconPenSize4SharpFilled.tsx b/src/IconPenSize4SharpFilled.tsx new file mode 100644 index 000000000..c67be2356 --- /dev/null +++ b/src/IconPenSize4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize4SharpFilled as default } diff --git a/src/IconPenSize5OutlinedFilled.tsx b/src/IconPenSize5OutlinedFilled.tsx new file mode 100644 index 000000000..1207b63b4 --- /dev/null +++ b/src/IconPenSize5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize5OutlinedFilled as default } diff --git a/src/IconPenSize5RoundedFilled.tsx b/src/IconPenSize5RoundedFilled.tsx new file mode 100644 index 000000000..05fda019c --- /dev/null +++ b/src/IconPenSize5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize5RoundedFilled as default } diff --git a/src/IconPenSize5SharpFilled.tsx b/src/IconPenSize5SharpFilled.tsx new file mode 100644 index 000000000..ef29a89ee --- /dev/null +++ b/src/IconPenSize5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPenSize5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPenSize5SharpFilled as default } diff --git a/src/IconPendingActionsOutlinedFilled.tsx b/src/IconPendingActionsOutlinedFilled.tsx new file mode 100644 index 000000000..d3fb633bf --- /dev/null +++ b/src/IconPendingActionsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPendingActionsOutlinedFilled as default } diff --git a/src/IconPendingActionsRoundedFilled.tsx b/src/IconPendingActionsRoundedFilled.tsx new file mode 100644 index 000000000..1796b5f1b --- /dev/null +++ b/src/IconPendingActionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPendingActionsRoundedFilled as default } diff --git a/src/IconPendingActionsSharpFilled.tsx b/src/IconPendingActionsSharpFilled.tsx new file mode 100644 index 000000000..d527eb8ae --- /dev/null +++ b/src/IconPendingActionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingActionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPendingActionsSharpFilled as default } diff --git a/src/IconPendingOutlinedFilled.tsx b/src/IconPendingOutlinedFilled.tsx new file mode 100644 index 000000000..8dd441d91 --- /dev/null +++ b/src/IconPendingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPendingOutlinedFilled as default } diff --git a/src/IconPendingRoundedFilled.tsx b/src/IconPendingRoundedFilled.tsx new file mode 100644 index 000000000..6139a80c6 --- /dev/null +++ b/src/IconPendingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPendingRoundedFilled as default } diff --git a/src/IconPendingSharpFilled.tsx b/src/IconPendingSharpFilled.tsx new file mode 100644 index 000000000..a6cb6b00a --- /dev/null +++ b/src/IconPendingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPendingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPendingSharpFilled as default } diff --git a/src/IconPentagonOutlinedFilled.tsx b/src/IconPentagonOutlinedFilled.tsx new file mode 100644 index 000000000..8b7b94d88 --- /dev/null +++ b/src/IconPentagonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPentagonOutlinedFilled as default } diff --git a/src/IconPentagonRoundedFilled.tsx b/src/IconPentagonRoundedFilled.tsx new file mode 100644 index 000000000..ad9e3911b --- /dev/null +++ b/src/IconPentagonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPentagonRoundedFilled as default } diff --git a/src/IconPentagonSharpFilled.tsx b/src/IconPentagonSharpFilled.tsx new file mode 100644 index 000000000..694c14770 --- /dev/null +++ b/src/IconPentagonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPentagonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPentagonSharpFilled as default } diff --git a/src/IconPercentOutlinedFilled.tsx b/src/IconPercentOutlinedFilled.tsx new file mode 100644 index 000000000..65bdf8010 --- /dev/null +++ b/src/IconPercentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPercentOutlinedFilled as default } diff --git a/src/IconPercentRoundedFilled.tsx b/src/IconPercentRoundedFilled.tsx new file mode 100644 index 000000000..2fa93f401 --- /dev/null +++ b/src/IconPercentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPercentRoundedFilled as default } diff --git a/src/IconPercentSharpFilled.tsx b/src/IconPercentSharpFilled.tsx new file mode 100644 index 000000000..5455ab61b --- /dev/null +++ b/src/IconPercentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPercentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPercentSharpFilled as default } diff --git a/src/IconPergolaOutlinedFilled.tsx b/src/IconPergolaOutlinedFilled.tsx new file mode 100644 index 000000000..b379a13bc --- /dev/null +++ b/src/IconPergolaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPergolaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPergolaOutlinedFilled as default } diff --git a/src/IconPergolaRoundedFilled.tsx b/src/IconPergolaRoundedFilled.tsx new file mode 100644 index 000000000..0b37accec --- /dev/null +++ b/src/IconPergolaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPergolaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPergolaRoundedFilled as default } diff --git a/src/IconPergolaSharpFilled.tsx b/src/IconPergolaSharpFilled.tsx new file mode 100644 index 000000000..392b3034e --- /dev/null +++ b/src/IconPergolaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPergolaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPergolaSharpFilled as default } diff --git a/src/IconPermCameraMicOutlinedFilled.tsx b/src/IconPermCameraMicOutlinedFilled.tsx new file mode 100644 index 000000000..fd1d7287e --- /dev/null +++ b/src/IconPermCameraMicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermCameraMicOutlinedFilled as default } diff --git a/src/IconPermCameraMicRoundedFilled.tsx b/src/IconPermCameraMicRoundedFilled.tsx new file mode 100644 index 000000000..0dc96e966 --- /dev/null +++ b/src/IconPermCameraMicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermCameraMicRoundedFilled as default } diff --git a/src/IconPermCameraMicSharpFilled.tsx b/src/IconPermCameraMicSharpFilled.tsx new file mode 100644 index 000000000..c433c35b7 --- /dev/null +++ b/src/IconPermCameraMicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermCameraMicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermCameraMicSharpFilled as default } diff --git a/src/IconPermContactCalendarOutlinedFilled.tsx b/src/IconPermContactCalendarOutlinedFilled.tsx new file mode 100644 index 000000000..96c2d8834 --- /dev/null +++ b/src/IconPermContactCalendarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermContactCalendarOutlinedFilled as default } diff --git a/src/IconPermContactCalendarRoundedFilled.tsx b/src/IconPermContactCalendarRoundedFilled.tsx new file mode 100644 index 000000000..d579cf9a3 --- /dev/null +++ b/src/IconPermContactCalendarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermContactCalendarRoundedFilled as default } diff --git a/src/IconPermContactCalendarSharpFilled.tsx b/src/IconPermContactCalendarSharpFilled.tsx new file mode 100644 index 000000000..b03a8b784 --- /dev/null +++ b/src/IconPermContactCalendarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermContactCalendarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermContactCalendarSharpFilled as default } diff --git a/src/IconPermDataSettingOutlinedFilled.tsx b/src/IconPermDataSettingOutlinedFilled.tsx new file mode 100644 index 000000000..135c5d681 --- /dev/null +++ b/src/IconPermDataSettingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermDataSettingOutlinedFilled as default } diff --git a/src/IconPermDataSettingRoundedFilled.tsx b/src/IconPermDataSettingRoundedFilled.tsx new file mode 100644 index 000000000..6c2497c87 --- /dev/null +++ b/src/IconPermDataSettingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermDataSettingRoundedFilled as default } diff --git a/src/IconPermDataSettingSharpFilled.tsx b/src/IconPermDataSettingSharpFilled.tsx new file mode 100644 index 000000000..fe170b91e --- /dev/null +++ b/src/IconPermDataSettingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDataSettingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermDataSettingSharpFilled as default } diff --git a/src/IconPermDeviceInformationOutlinedFilled.tsx b/src/IconPermDeviceInformationOutlinedFilled.tsx new file mode 100644 index 000000000..58691f261 --- /dev/null +++ b/src/IconPermDeviceInformationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermDeviceInformationOutlinedFilled as default } diff --git a/src/IconPermDeviceInformationRoundedFilled.tsx b/src/IconPermDeviceInformationRoundedFilled.tsx new file mode 100644 index 000000000..7c34ccc94 --- /dev/null +++ b/src/IconPermDeviceInformationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermDeviceInformationRoundedFilled as default } diff --git a/src/IconPermDeviceInformationSharpFilled.tsx b/src/IconPermDeviceInformationSharpFilled.tsx new file mode 100644 index 000000000..bb3607a64 --- /dev/null +++ b/src/IconPermDeviceInformationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermDeviceInformationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPermDeviceInformationSharpFilled as default } diff --git a/src/IconPermMediaOutlinedFilled.tsx b/src/IconPermMediaOutlinedFilled.tsx new file mode 100644 index 000000000..ec577f959 --- /dev/null +++ b/src/IconPermMediaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermMediaOutlinedFilled as default } diff --git a/src/IconPermMediaRoundedFilled.tsx b/src/IconPermMediaRoundedFilled.tsx new file mode 100644 index 000000000..e788443ef --- /dev/null +++ b/src/IconPermMediaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermMediaRoundedFilled as default } diff --git a/src/IconPermMediaSharpFilled.tsx b/src/IconPermMediaSharpFilled.tsx new file mode 100644 index 000000000..0a4e69a05 --- /dev/null +++ b/src/IconPermMediaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermMediaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermMediaSharpFilled as default } diff --git a/src/IconPermPhoneMsgOutlinedFilled.tsx b/src/IconPermPhoneMsgOutlinedFilled.tsx new file mode 100644 index 000000000..c1a1bb5ac --- /dev/null +++ b/src/IconPermPhoneMsgOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermPhoneMsgOutlinedFilled as default } diff --git a/src/IconPermPhoneMsgRoundedFilled.tsx b/src/IconPermPhoneMsgRoundedFilled.tsx new file mode 100644 index 000000000..9e9636e97 --- /dev/null +++ b/src/IconPermPhoneMsgRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermPhoneMsgRoundedFilled as default } diff --git a/src/IconPermPhoneMsgSharpFilled.tsx b/src/IconPermPhoneMsgSharpFilled.tsx new file mode 100644 index 000000000..3a0817abe --- /dev/null +++ b/src/IconPermPhoneMsgSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermPhoneMsgSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermPhoneMsgSharpFilled as default } diff --git a/src/IconPermScanWifiOutlinedFilled.tsx b/src/IconPermScanWifiOutlinedFilled.tsx new file mode 100644 index 000000000..15ea66f44 --- /dev/null +++ b/src/IconPermScanWifiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermScanWifiOutlinedFilled as default } diff --git a/src/IconPermScanWifiRoundedFilled.tsx b/src/IconPermScanWifiRoundedFilled.tsx new file mode 100644 index 000000000..610ae9db2 --- /dev/null +++ b/src/IconPermScanWifiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermScanWifiRoundedFilled as default } diff --git a/src/IconPermScanWifiSharpFilled.tsx b/src/IconPermScanWifiSharpFilled.tsx new file mode 100644 index 000000000..c00dc0cf2 --- /dev/null +++ b/src/IconPermScanWifiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPermScanWifiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPermScanWifiSharpFilled as default } diff --git a/src/IconPerson2OutlinedFilled.tsx b/src/IconPerson2OutlinedFilled.tsx new file mode 100644 index 000000000..191a2415a --- /dev/null +++ b/src/IconPerson2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson2OutlinedFilled as default } diff --git a/src/IconPerson2RoundedFilled.tsx b/src/IconPerson2RoundedFilled.tsx new file mode 100644 index 000000000..af8dc431a --- /dev/null +++ b/src/IconPerson2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson2RoundedFilled as default } diff --git a/src/IconPerson2SharpFilled.tsx b/src/IconPerson2SharpFilled.tsx new file mode 100644 index 000000000..6966ace27 --- /dev/null +++ b/src/IconPerson2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson2SharpFilled as default } diff --git a/src/IconPerson3OutlinedFilled.tsx b/src/IconPerson3OutlinedFilled.tsx new file mode 100644 index 000000000..ba2c3c6f2 --- /dev/null +++ b/src/IconPerson3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson3OutlinedFilled as default } diff --git a/src/IconPerson3RoundedFilled.tsx b/src/IconPerson3RoundedFilled.tsx new file mode 100644 index 000000000..17c3e9085 --- /dev/null +++ b/src/IconPerson3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson3RoundedFilled as default } diff --git a/src/IconPerson3SharpFilled.tsx b/src/IconPerson3SharpFilled.tsx new file mode 100644 index 000000000..ed332c981 --- /dev/null +++ b/src/IconPerson3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson3SharpFilled as default } diff --git a/src/IconPerson4OutlinedFilled.tsx b/src/IconPerson4OutlinedFilled.tsx new file mode 100644 index 000000000..79fcd060a --- /dev/null +++ b/src/IconPerson4OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson4OutlinedFilled as default } diff --git a/src/IconPerson4RoundedFilled.tsx b/src/IconPerson4RoundedFilled.tsx new file mode 100644 index 000000000..a04bbb99b --- /dev/null +++ b/src/IconPerson4RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson4RoundedFilled as default } diff --git a/src/IconPerson4SharpFilled.tsx b/src/IconPerson4SharpFilled.tsx new file mode 100644 index 000000000..8a03c3453 --- /dev/null +++ b/src/IconPerson4SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPerson4SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPerson4SharpFilled as default } diff --git a/src/IconPersonAddDisabledOutlinedFilled.tsx b/src/IconPersonAddDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..4519db1c0 --- /dev/null +++ b/src/IconPersonAddDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAddDisabledOutlinedFilled as default } diff --git a/src/IconPersonAddDisabledRoundedFilled.tsx b/src/IconPersonAddDisabledRoundedFilled.tsx new file mode 100644 index 000000000..1105e153d --- /dev/null +++ b/src/IconPersonAddDisabledRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAddDisabledRoundedFilled as default } diff --git a/src/IconPersonAddDisabledSharpFilled.tsx b/src/IconPersonAddDisabledSharpFilled.tsx new file mode 100644 index 000000000..6e85b6de4 --- /dev/null +++ b/src/IconPersonAddDisabledSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddDisabledSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAddDisabledSharpFilled as default } diff --git a/src/IconPersonAddOutlinedFilled.tsx b/src/IconPersonAddOutlinedFilled.tsx new file mode 100644 index 000000000..722c308a0 --- /dev/null +++ b/src/IconPersonAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAddOutlinedFilled as default } diff --git a/src/IconPersonAddRoundedFilled.tsx b/src/IconPersonAddRoundedFilled.tsx new file mode 100644 index 000000000..718afe293 --- /dev/null +++ b/src/IconPersonAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAddRoundedFilled as default } diff --git a/src/IconPersonAddSharpFilled.tsx b/src/IconPersonAddSharpFilled.tsx new file mode 100644 index 000000000..4b9f13438 --- /dev/null +++ b/src/IconPersonAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAddSharpFilled as default } diff --git a/src/IconPersonAlertOutlinedFilled.tsx b/src/IconPersonAlertOutlinedFilled.tsx new file mode 100644 index 000000000..8672707d4 --- /dev/null +++ b/src/IconPersonAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAlertOutlinedFilled as default } diff --git a/src/IconPersonAlertRoundedFilled.tsx b/src/IconPersonAlertRoundedFilled.tsx new file mode 100644 index 000000000..89480fd2f --- /dev/null +++ b/src/IconPersonAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAlertRoundedFilled as default } diff --git a/src/IconPersonAlertSharpFilled.tsx b/src/IconPersonAlertSharpFilled.tsx new file mode 100644 index 000000000..5cebae859 --- /dev/null +++ b/src/IconPersonAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonAlertSharpFilled as default } diff --git a/src/IconPersonApronOutlinedFilled.tsx b/src/IconPersonApronOutlinedFilled.tsx new file mode 100644 index 000000000..1be640a28 --- /dev/null +++ b/src/IconPersonApronOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonApronOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonApronOutlinedFilled as default } diff --git a/src/IconPersonApronRoundedFilled.tsx b/src/IconPersonApronRoundedFilled.tsx new file mode 100644 index 000000000..55d349626 --- /dev/null +++ b/src/IconPersonApronRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonApronRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonApronRoundedFilled as default } diff --git a/src/IconPersonApronSharpFilled.tsx b/src/IconPersonApronSharpFilled.tsx new file mode 100644 index 000000000..29197c517 --- /dev/null +++ b/src/IconPersonApronSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonApronSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonApronSharpFilled as default } diff --git a/src/IconPersonBookOutlinedFilled.tsx b/src/IconPersonBookOutlinedFilled.tsx new file mode 100644 index 000000000..f97f7ffce --- /dev/null +++ b/src/IconPersonBookOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonBookOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonBookOutlinedFilled as default } diff --git a/src/IconPersonBookRoundedFilled.tsx b/src/IconPersonBookRoundedFilled.tsx new file mode 100644 index 000000000..87a51a9c3 --- /dev/null +++ b/src/IconPersonBookRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonBookRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonBookRoundedFilled as default } diff --git a/src/IconPersonBookSharpFilled.tsx b/src/IconPersonBookSharpFilled.tsx new file mode 100644 index 000000000..e0121c5f7 --- /dev/null +++ b/src/IconPersonBookSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonBookSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonBookSharpFilled as default } diff --git a/src/IconPersonCancelOutlinedFilled.tsx b/src/IconPersonCancelOutlinedFilled.tsx new file mode 100644 index 000000000..94d454b3a --- /dev/null +++ b/src/IconPersonCancelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCancelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCancelOutlinedFilled as default } diff --git a/src/IconPersonCancelRoundedFilled.tsx b/src/IconPersonCancelRoundedFilled.tsx new file mode 100644 index 000000000..5c45822ca --- /dev/null +++ b/src/IconPersonCancelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCancelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCancelRoundedFilled as default } diff --git a/src/IconPersonCancelSharpFilled.tsx b/src/IconPersonCancelSharpFilled.tsx new file mode 100644 index 000000000..800822efc --- /dev/null +++ b/src/IconPersonCancelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCancelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCancelSharpFilled as default } diff --git a/src/IconPersonCelebrateOutlinedFilled.tsx b/src/IconPersonCelebrateOutlinedFilled.tsx new file mode 100644 index 000000000..92dc9326c --- /dev/null +++ b/src/IconPersonCelebrateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCelebrateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCelebrateOutlinedFilled as default } diff --git a/src/IconPersonCelebrateRoundedFilled.tsx b/src/IconPersonCelebrateRoundedFilled.tsx new file mode 100644 index 000000000..e87a1f9a6 --- /dev/null +++ b/src/IconPersonCelebrateRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCelebrateRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCelebrateRoundedFilled as default } diff --git a/src/IconPersonCelebrateSharpFilled.tsx b/src/IconPersonCelebrateSharpFilled.tsx new file mode 100644 index 000000000..e54eedef5 --- /dev/null +++ b/src/IconPersonCelebrateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCelebrateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCelebrateSharpFilled as default } diff --git a/src/IconPersonCheckOutlinedFilled.tsx b/src/IconPersonCheckOutlinedFilled.tsx new file mode 100644 index 000000000..e9ce60d4f --- /dev/null +++ b/src/IconPersonCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCheckOutlinedFilled as default } diff --git a/src/IconPersonCheckRoundedFilled.tsx b/src/IconPersonCheckRoundedFilled.tsx new file mode 100644 index 000000000..254d2c1c0 --- /dev/null +++ b/src/IconPersonCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCheckRoundedFilled as default } diff --git a/src/IconPersonCheckSharpFilled.tsx b/src/IconPersonCheckSharpFilled.tsx new file mode 100644 index 000000000..c260ebeda --- /dev/null +++ b/src/IconPersonCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonCheckSharpFilled as default } diff --git a/src/IconPersonEditOutlinedFilled.tsx b/src/IconPersonEditOutlinedFilled.tsx new file mode 100644 index 000000000..fa7381f6d --- /dev/null +++ b/src/IconPersonEditOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonEditOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonEditOutlinedFilled as default } diff --git a/src/IconPersonEditRoundedFilled.tsx b/src/IconPersonEditRoundedFilled.tsx new file mode 100644 index 000000000..0126e1d7f --- /dev/null +++ b/src/IconPersonEditRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonEditRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonEditRoundedFilled as default } diff --git a/src/IconPersonEditSharpFilled.tsx b/src/IconPersonEditSharpFilled.tsx new file mode 100644 index 000000000..ee74af355 --- /dev/null +++ b/src/IconPersonEditSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonEditSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonEditSharpFilled as default } diff --git a/src/IconPersonOffOutlinedFilled.tsx b/src/IconPersonOffOutlinedFilled.tsx new file mode 100644 index 000000000..0abe839bc --- /dev/null +++ b/src/IconPersonOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonOffOutlinedFilled as default } diff --git a/src/IconPersonOffRoundedFilled.tsx b/src/IconPersonOffRoundedFilled.tsx new file mode 100644 index 000000000..192e860b2 --- /dev/null +++ b/src/IconPersonOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonOffRoundedFilled as default } diff --git a/src/IconPersonOffSharpFilled.tsx b/src/IconPersonOffSharpFilled.tsx new file mode 100644 index 000000000..2c1b8f1ed --- /dev/null +++ b/src/IconPersonOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonOffSharpFilled as default } diff --git a/src/IconPersonOutlinedFilled.tsx b/src/IconPersonOutlinedFilled.tsx new file mode 100644 index 000000000..63305db7e --- /dev/null +++ b/src/IconPersonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonOutlinedFilled as default } diff --git a/src/IconPersonPinCircleOutlinedFilled.tsx b/src/IconPersonPinCircleOutlinedFilled.tsx new file mode 100644 index 000000000..49334cd97 --- /dev/null +++ b/src/IconPersonPinCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPinCircleOutlinedFilled as default } diff --git a/src/IconPersonPinCircleRoundedFilled.tsx b/src/IconPersonPinCircleRoundedFilled.tsx new file mode 100644 index 000000000..1a8cf1850 --- /dev/null +++ b/src/IconPersonPinCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPinCircleRoundedFilled as default } diff --git a/src/IconPersonPinCircleSharpFilled.tsx b/src/IconPersonPinCircleSharpFilled.tsx new file mode 100644 index 000000000..793c594d7 --- /dev/null +++ b/src/IconPersonPinCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPinCircleSharpFilled as default } diff --git a/src/IconPersonPinOutlinedFilled.tsx b/src/IconPersonPinOutlinedFilled.tsx new file mode 100644 index 000000000..39c1d47ba --- /dev/null +++ b/src/IconPersonPinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPinOutlinedFilled as default } diff --git a/src/IconPersonPinRoundedFilled.tsx b/src/IconPersonPinRoundedFilled.tsx new file mode 100644 index 000000000..77bf43f3e --- /dev/null +++ b/src/IconPersonPinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPinRoundedFilled as default } diff --git a/src/IconPersonPinSharpFilled.tsx b/src/IconPersonPinSharpFilled.tsx new file mode 100644 index 000000000..3eece2bb2 --- /dev/null +++ b/src/IconPersonPinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPinSharpFilled as default } diff --git a/src/IconPersonPlayOutlinedFilled.tsx b/src/IconPersonPlayOutlinedFilled.tsx new file mode 100644 index 000000000..f5e40e816 --- /dev/null +++ b/src/IconPersonPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPlayOutlinedFilled as default } diff --git a/src/IconPersonPlayRoundedFilled.tsx b/src/IconPersonPlayRoundedFilled.tsx new file mode 100644 index 000000000..16f5f02ea --- /dev/null +++ b/src/IconPersonPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPlayRoundedFilled as default } diff --git a/src/IconPersonPlaySharpFilled.tsx b/src/IconPersonPlaySharpFilled.tsx new file mode 100644 index 000000000..e9e853c60 --- /dev/null +++ b/src/IconPersonPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonPlaySharpFilled as default } diff --git a/src/IconPersonRaisedHandOutlinedFilled.tsx b/src/IconPersonRaisedHandOutlinedFilled.tsx new file mode 100644 index 000000000..bd33a5567 --- /dev/null +++ b/src/IconPersonRaisedHandOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRaisedHandOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRaisedHandOutlinedFilled as default } diff --git a/src/IconPersonRaisedHandRoundedFilled.tsx b/src/IconPersonRaisedHandRoundedFilled.tsx new file mode 100644 index 000000000..9f6b8714c --- /dev/null +++ b/src/IconPersonRaisedHandRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRaisedHandRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRaisedHandRoundedFilled as default } diff --git a/src/IconPersonRaisedHandSharpFilled.tsx b/src/IconPersonRaisedHandSharpFilled.tsx new file mode 100644 index 000000000..b0105eb47 --- /dev/null +++ b/src/IconPersonRaisedHandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRaisedHandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRaisedHandSharpFilled as default } diff --git a/src/IconPersonRemoveOutlinedFilled.tsx b/src/IconPersonRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..0b6872133 --- /dev/null +++ b/src/IconPersonRemoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRemoveOutlinedFilled as default } diff --git a/src/IconPersonRemoveRoundedFilled.tsx b/src/IconPersonRemoveRoundedFilled.tsx new file mode 100644 index 000000000..97b5f3375 --- /dev/null +++ b/src/IconPersonRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRemoveRoundedFilled as default } diff --git a/src/IconPersonRemoveSharpFilled.tsx b/src/IconPersonRemoveSharpFilled.tsx new file mode 100644 index 000000000..3f3c764cc --- /dev/null +++ b/src/IconPersonRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRemoveSharpFilled as default } diff --git a/src/IconPersonRoundedFilled.tsx b/src/IconPersonRoundedFilled.tsx new file mode 100644 index 000000000..1939b277b --- /dev/null +++ b/src/IconPersonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonRoundedFilled as default } diff --git a/src/IconPersonSearchOutlinedFilled.tsx b/src/IconPersonSearchOutlinedFilled.tsx new file mode 100644 index 000000000..ab9c0a945 --- /dev/null +++ b/src/IconPersonSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonSearchOutlinedFilled as default } diff --git a/src/IconPersonSearchRoundedFilled.tsx b/src/IconPersonSearchRoundedFilled.tsx new file mode 100644 index 000000000..f9185018f --- /dev/null +++ b/src/IconPersonSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonSearchRoundedFilled as default } diff --git a/src/IconPersonSearchSharpFilled.tsx b/src/IconPersonSearchSharpFilled.tsx new file mode 100644 index 000000000..5eb9c7171 --- /dev/null +++ b/src/IconPersonSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonSearchSharpFilled as default } diff --git a/src/IconPersonSharpFilled.tsx b/src/IconPersonSharpFilled.tsx new file mode 100644 index 000000000..01958aefc --- /dev/null +++ b/src/IconPersonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonSharpFilled as default } diff --git a/src/IconPersonalBagOffOutlinedFilled.tsx b/src/IconPersonalBagOffOutlinedFilled.tsx new file mode 100644 index 000000000..dfaef2bd0 --- /dev/null +++ b/src/IconPersonalBagOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagOffOutlinedFilled as default } diff --git a/src/IconPersonalBagOffRoundedFilled.tsx b/src/IconPersonalBagOffRoundedFilled.tsx new file mode 100644 index 000000000..f23b930bf --- /dev/null +++ b/src/IconPersonalBagOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagOffRoundedFilled as default } diff --git a/src/IconPersonalBagOffSharpFilled.tsx b/src/IconPersonalBagOffSharpFilled.tsx new file mode 100644 index 000000000..8d05b7e14 --- /dev/null +++ b/src/IconPersonalBagOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagOffSharpFilled as default } diff --git a/src/IconPersonalBagOutlinedFilled.tsx b/src/IconPersonalBagOutlinedFilled.tsx new file mode 100644 index 000000000..90e624a5d --- /dev/null +++ b/src/IconPersonalBagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagOutlinedFilled as default } diff --git a/src/IconPersonalBagQuestionOutlinedFilled.tsx b/src/IconPersonalBagQuestionOutlinedFilled.tsx new file mode 100644 index 000000000..7a1027406 --- /dev/null +++ b/src/IconPersonalBagQuestionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagQuestionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagQuestionOutlinedFilled as default } diff --git a/src/IconPersonalBagQuestionRoundedFilled.tsx b/src/IconPersonalBagQuestionRoundedFilled.tsx new file mode 100644 index 000000000..55f542e18 --- /dev/null +++ b/src/IconPersonalBagQuestionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagQuestionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagQuestionRoundedFilled as default } diff --git a/src/IconPersonalBagQuestionSharpFilled.tsx b/src/IconPersonalBagQuestionSharpFilled.tsx new file mode 100644 index 000000000..72e6d8dbf --- /dev/null +++ b/src/IconPersonalBagQuestionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagQuestionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagQuestionSharpFilled as default } diff --git a/src/IconPersonalBagRoundedFilled.tsx b/src/IconPersonalBagRoundedFilled.tsx new file mode 100644 index 000000000..3b7726bff --- /dev/null +++ b/src/IconPersonalBagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagRoundedFilled as default } diff --git a/src/IconPersonalBagSharpFilled.tsx b/src/IconPersonalBagSharpFilled.tsx new file mode 100644 index 000000000..0c83ade87 --- /dev/null +++ b/src/IconPersonalBagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalBagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalBagSharpFilled as default } diff --git a/src/IconPersonalInjuryOutlinedFilled.tsx b/src/IconPersonalInjuryOutlinedFilled.tsx new file mode 100644 index 000000000..7daab490e --- /dev/null +++ b/src/IconPersonalInjuryOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjuryOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalInjuryOutlinedFilled as default } diff --git a/src/IconPersonalInjuryRoundedFilled.tsx b/src/IconPersonalInjuryRoundedFilled.tsx new file mode 100644 index 000000000..66cd8f6bd --- /dev/null +++ b/src/IconPersonalInjuryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjuryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalInjuryRoundedFilled as default } diff --git a/src/IconPersonalInjurySharpFilled.tsx b/src/IconPersonalInjurySharpFilled.tsx new file mode 100644 index 000000000..62c58df7b --- /dev/null +++ b/src/IconPersonalInjurySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalInjurySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalInjurySharpFilled as default } diff --git a/src/IconPersonalPlacesOutlinedFilled.tsx b/src/IconPersonalPlacesOutlinedFilled.tsx new file mode 100644 index 000000000..061264edf --- /dev/null +++ b/src/IconPersonalPlacesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalPlacesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalPlacesOutlinedFilled as default } diff --git a/src/IconPersonalPlacesRoundedFilled.tsx b/src/IconPersonalPlacesRoundedFilled.tsx new file mode 100644 index 000000000..058a2a78a --- /dev/null +++ b/src/IconPersonalPlacesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalPlacesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalPlacesRoundedFilled as default } diff --git a/src/IconPersonalPlacesSharpFilled.tsx b/src/IconPersonalPlacesSharpFilled.tsx new file mode 100644 index 000000000..ad6033e24 --- /dev/null +++ b/src/IconPersonalPlacesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPersonalPlacesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPersonalPlacesSharpFilled as default } diff --git a/src/IconPestControlOutlinedFilled.tsx b/src/IconPestControlOutlinedFilled.tsx new file mode 100644 index 000000000..436a73c95 --- /dev/null +++ b/src/IconPestControlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPestControlOutlinedFilled as default } diff --git a/src/IconPestControlRodentOutlinedFilled.tsx b/src/IconPestControlRodentOutlinedFilled.tsx new file mode 100644 index 000000000..78d877686 --- /dev/null +++ b/src/IconPestControlRodentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPestControlRodentOutlinedFilled as default } diff --git a/src/IconPestControlRodentRoundedFilled.tsx b/src/IconPestControlRodentRoundedFilled.tsx new file mode 100644 index 000000000..93aaa814d --- /dev/null +++ b/src/IconPestControlRodentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPestControlRodentRoundedFilled as default } diff --git a/src/IconPestControlRodentSharpFilled.tsx b/src/IconPestControlRodentSharpFilled.tsx new file mode 100644 index 000000000..9dc90b680 --- /dev/null +++ b/src/IconPestControlRodentSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRodentSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPestControlRodentSharpFilled as default } diff --git a/src/IconPestControlRoundedFilled.tsx b/src/IconPestControlRoundedFilled.tsx new file mode 100644 index 000000000..42032b58c --- /dev/null +++ b/src/IconPestControlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPestControlRoundedFilled as default } diff --git a/src/IconPestControlSharpFilled.tsx b/src/IconPestControlSharpFilled.tsx new file mode 100644 index 000000000..043bd3366 --- /dev/null +++ b/src/IconPestControlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPestControlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPestControlSharpFilled as default } diff --git a/src/IconPetSuppliesOutlinedFilled.tsx b/src/IconPetSuppliesOutlinedFilled.tsx new file mode 100644 index 000000000..822a5538c --- /dev/null +++ b/src/IconPetSuppliesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetSuppliesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPetSuppliesOutlinedFilled as default } diff --git a/src/IconPetSuppliesRoundedFilled.tsx b/src/IconPetSuppliesRoundedFilled.tsx new file mode 100644 index 000000000..d8cd19083 --- /dev/null +++ b/src/IconPetSuppliesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetSuppliesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPetSuppliesRoundedFilled as default } diff --git a/src/IconPetSuppliesSharpFilled.tsx b/src/IconPetSuppliesSharpFilled.tsx new file mode 100644 index 000000000..a1b1ea428 --- /dev/null +++ b/src/IconPetSuppliesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetSuppliesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPetSuppliesSharpFilled as default } diff --git a/src/IconPetsOutlinedFilled.tsx b/src/IconPetsOutlinedFilled.tsx new file mode 100644 index 000000000..8569f7121 --- /dev/null +++ b/src/IconPetsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPetsOutlinedFilled as default } diff --git a/src/IconPetsRoundedFilled.tsx b/src/IconPetsRoundedFilled.tsx new file mode 100644 index 000000000..a7235d230 --- /dev/null +++ b/src/IconPetsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPetsRoundedFilled as default } diff --git a/src/IconPetsSharpFilled.tsx b/src/IconPetsSharpFilled.tsx new file mode 100644 index 000000000..a924c2411 --- /dev/null +++ b/src/IconPetsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPetsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPetsSharpFilled as default } diff --git a/src/IconPhishingOutlinedFilled.tsx b/src/IconPhishingOutlinedFilled.tsx new file mode 100644 index 000000000..d8862e494 --- /dev/null +++ b/src/IconPhishingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhishingOutlinedFilled as default } diff --git a/src/IconPhishingRoundedFilled.tsx b/src/IconPhishingRoundedFilled.tsx new file mode 100644 index 000000000..04d3e30db --- /dev/null +++ b/src/IconPhishingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhishingRoundedFilled as default } diff --git a/src/IconPhishingSharpFilled.tsx b/src/IconPhishingSharpFilled.tsx new file mode 100644 index 000000000..5e8a43295 --- /dev/null +++ b/src/IconPhishingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhishingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhishingSharpFilled as default } diff --git a/src/IconPhoneAndroidOutlinedFilled.tsx b/src/IconPhoneAndroidOutlinedFilled.tsx new file mode 100644 index 000000000..870ecc377 --- /dev/null +++ b/src/IconPhoneAndroidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneAndroidOutlinedFilled as default } diff --git a/src/IconPhoneAndroidRoundedFilled.tsx b/src/IconPhoneAndroidRoundedFilled.tsx new file mode 100644 index 000000000..8877e7b8b --- /dev/null +++ b/src/IconPhoneAndroidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneAndroidRoundedFilled as default } diff --git a/src/IconPhoneAndroidSharpFilled.tsx b/src/IconPhoneAndroidSharpFilled.tsx new file mode 100644 index 000000000..7e859bc9f --- /dev/null +++ b/src/IconPhoneAndroidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneAndroidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneAndroidSharpFilled as default } diff --git a/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx b/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx new file mode 100644 index 000000000..090b27534 --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneBluetoothSpeakerOutlinedFilled as default } diff --git a/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx b/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx new file mode 100644 index 000000000..7af3ffa8a --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneBluetoothSpeakerRoundedFilled as default } diff --git a/src/IconPhoneBluetoothSpeakerSharpFilled.tsx b/src/IconPhoneBluetoothSpeakerSharpFilled.tsx new file mode 100644 index 000000000..8709d594c --- /dev/null +++ b/src/IconPhoneBluetoothSpeakerSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneBluetoothSpeakerSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneBluetoothSpeakerSharpFilled as default } diff --git a/src/IconPhoneCallbackOutlinedFilled.tsx b/src/IconPhoneCallbackOutlinedFilled.tsx new file mode 100644 index 000000000..5a58285ee --- /dev/null +++ b/src/IconPhoneCallbackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneCallbackOutlinedFilled as default } diff --git a/src/IconPhoneCallbackRoundedFilled.tsx b/src/IconPhoneCallbackRoundedFilled.tsx new file mode 100644 index 000000000..38713647a --- /dev/null +++ b/src/IconPhoneCallbackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneCallbackRoundedFilled as default } diff --git a/src/IconPhoneCallbackSharpFilled.tsx b/src/IconPhoneCallbackSharpFilled.tsx new file mode 100644 index 000000000..b58bdd185 --- /dev/null +++ b/src/IconPhoneCallbackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneCallbackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneCallbackSharpFilled as default } diff --git a/src/IconPhoneDisabledOutlinedFilled.tsx b/src/IconPhoneDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..09306d967 --- /dev/null +++ b/src/IconPhoneDisabledOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneDisabledOutlinedFilled as default } diff --git a/src/IconPhoneDisabledRoundedFilled.tsx b/src/IconPhoneDisabledRoundedFilled.tsx new file mode 100644 index 000000000..9b6418775 --- /dev/null +++ b/src/IconPhoneDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneDisabledRoundedFilled as default } diff --git a/src/IconPhoneDisabledSharpFilled.tsx b/src/IconPhoneDisabledSharpFilled.tsx new file mode 100644 index 000000000..2636f0673 --- /dev/null +++ b/src/IconPhoneDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneDisabledSharpFilled as default } diff --git a/src/IconPhoneEnabledOutlinedFilled.tsx b/src/IconPhoneEnabledOutlinedFilled.tsx new file mode 100644 index 000000000..392e5d2ee --- /dev/null +++ b/src/IconPhoneEnabledOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneEnabledOutlinedFilled as default } diff --git a/src/IconPhoneEnabledRoundedFilled.tsx b/src/IconPhoneEnabledRoundedFilled.tsx new file mode 100644 index 000000000..d111bcfda --- /dev/null +++ b/src/IconPhoneEnabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneEnabledRoundedFilled as default } diff --git a/src/IconPhoneEnabledSharpFilled.tsx b/src/IconPhoneEnabledSharpFilled.tsx new file mode 100644 index 000000000..0ed0a6291 --- /dev/null +++ b/src/IconPhoneEnabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneEnabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneEnabledSharpFilled as default } diff --git a/src/IconPhoneForwardedOutlinedFilled.tsx b/src/IconPhoneForwardedOutlinedFilled.tsx new file mode 100644 index 000000000..227e684c3 --- /dev/null +++ b/src/IconPhoneForwardedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneForwardedOutlinedFilled as default } diff --git a/src/IconPhoneForwardedRoundedFilled.tsx b/src/IconPhoneForwardedRoundedFilled.tsx new file mode 100644 index 000000000..a00362079 --- /dev/null +++ b/src/IconPhoneForwardedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneForwardedRoundedFilled as default } diff --git a/src/IconPhoneForwardedSharpFilled.tsx b/src/IconPhoneForwardedSharpFilled.tsx new file mode 100644 index 000000000..8b8983502 --- /dev/null +++ b/src/IconPhoneForwardedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneForwardedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneForwardedSharpFilled as default } diff --git a/src/IconPhoneInTalkOutlinedFilled.tsx b/src/IconPhoneInTalkOutlinedFilled.tsx new file mode 100644 index 000000000..f818d8ebb --- /dev/null +++ b/src/IconPhoneInTalkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneInTalkOutlinedFilled as default } diff --git a/src/IconPhoneInTalkRoundedFilled.tsx b/src/IconPhoneInTalkRoundedFilled.tsx new file mode 100644 index 000000000..6ef93f0fa --- /dev/null +++ b/src/IconPhoneInTalkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneInTalkRoundedFilled as default } diff --git a/src/IconPhoneInTalkSharpFilled.tsx b/src/IconPhoneInTalkSharpFilled.tsx new file mode 100644 index 000000000..96d692336 --- /dev/null +++ b/src/IconPhoneInTalkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneInTalkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneInTalkSharpFilled as default } diff --git a/src/IconPhoneIphoneOutlinedFilled.tsx b/src/IconPhoneIphoneOutlinedFilled.tsx new file mode 100644 index 000000000..14a2cd0d6 --- /dev/null +++ b/src/IconPhoneIphoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneIphoneOutlinedFilled as default } diff --git a/src/IconPhoneIphoneRoundedFilled.tsx b/src/IconPhoneIphoneRoundedFilled.tsx new file mode 100644 index 000000000..be3cdcc19 --- /dev/null +++ b/src/IconPhoneIphoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneIphoneRoundedFilled as default } diff --git a/src/IconPhoneIphoneSharpFilled.tsx b/src/IconPhoneIphoneSharpFilled.tsx new file mode 100644 index 000000000..4be3f7c3c --- /dev/null +++ b/src/IconPhoneIphoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneIphoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneIphoneSharpFilled as default } diff --git a/src/IconPhoneLockedOutlinedFilled.tsx b/src/IconPhoneLockedOutlinedFilled.tsx new file mode 100644 index 000000000..329745dcc --- /dev/null +++ b/src/IconPhoneLockedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneLockedOutlinedFilled as default } diff --git a/src/IconPhoneLockedRoundedFilled.tsx b/src/IconPhoneLockedRoundedFilled.tsx new file mode 100644 index 000000000..35514d4a8 --- /dev/null +++ b/src/IconPhoneLockedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneLockedRoundedFilled as default } diff --git a/src/IconPhoneLockedSharpFilled.tsx b/src/IconPhoneLockedSharpFilled.tsx new file mode 100644 index 000000000..c905c48b2 --- /dev/null +++ b/src/IconPhoneLockedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneLockedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneLockedSharpFilled as default } diff --git a/src/IconPhoneMissedOutlinedFilled.tsx b/src/IconPhoneMissedOutlinedFilled.tsx new file mode 100644 index 000000000..de220812b --- /dev/null +++ b/src/IconPhoneMissedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneMissedOutlinedFilled as default } diff --git a/src/IconPhoneMissedRoundedFilled.tsx b/src/IconPhoneMissedRoundedFilled.tsx new file mode 100644 index 000000000..81a364100 --- /dev/null +++ b/src/IconPhoneMissedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneMissedRoundedFilled as default } diff --git a/src/IconPhoneMissedSharpFilled.tsx b/src/IconPhoneMissedSharpFilled.tsx new file mode 100644 index 000000000..d1036d5cd --- /dev/null +++ b/src/IconPhoneMissedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhoneMissedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhoneMissedSharpFilled as default } diff --git a/src/IconPhonePausedOutlinedFilled.tsx b/src/IconPhonePausedOutlinedFilled.tsx new file mode 100644 index 000000000..6fe423191 --- /dev/null +++ b/src/IconPhonePausedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonePausedOutlinedFilled as default } diff --git a/src/IconPhonePausedRoundedFilled.tsx b/src/IconPhonePausedRoundedFilled.tsx new file mode 100644 index 000000000..62d08ef19 --- /dev/null +++ b/src/IconPhonePausedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonePausedRoundedFilled as default } diff --git a/src/IconPhonePausedSharpFilled.tsx b/src/IconPhonePausedSharpFilled.tsx new file mode 100644 index 000000000..88ed63f04 --- /dev/null +++ b/src/IconPhonePausedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonePausedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonePausedSharpFilled as default } diff --git a/src/IconPhonelinkEraseOutlinedFilled.tsx b/src/IconPhonelinkEraseOutlinedFilled.tsx new file mode 100644 index 000000000..13d3a6f1a --- /dev/null +++ b/src/IconPhonelinkEraseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkEraseOutlinedFilled as default } diff --git a/src/IconPhonelinkEraseRoundedFilled.tsx b/src/IconPhonelinkEraseRoundedFilled.tsx new file mode 100644 index 000000000..8ea8df341 --- /dev/null +++ b/src/IconPhonelinkEraseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkEraseRoundedFilled as default } diff --git a/src/IconPhonelinkEraseSharpFilled.tsx b/src/IconPhonelinkEraseSharpFilled.tsx new file mode 100644 index 000000000..a91d7c5f7 --- /dev/null +++ b/src/IconPhonelinkEraseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkEraseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkEraseSharpFilled as default } diff --git a/src/IconPhonelinkLockOutlinedFilled.tsx b/src/IconPhonelinkLockOutlinedFilled.tsx new file mode 100644 index 000000000..04283853c --- /dev/null +++ b/src/IconPhonelinkLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkLockOutlinedFilled as default } diff --git a/src/IconPhonelinkLockRoundedFilled.tsx b/src/IconPhonelinkLockRoundedFilled.tsx new file mode 100644 index 000000000..d80543f86 --- /dev/null +++ b/src/IconPhonelinkLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkLockRoundedFilled as default } diff --git a/src/IconPhonelinkLockSharpFilled.tsx b/src/IconPhonelinkLockSharpFilled.tsx new file mode 100644 index 000000000..15b791cb1 --- /dev/null +++ b/src/IconPhonelinkLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkLockSharpFilled as default } diff --git a/src/IconPhonelinkOffOutlinedFilled.tsx b/src/IconPhonelinkOffOutlinedFilled.tsx new file mode 100644 index 000000000..ae62d4a7f --- /dev/null +++ b/src/IconPhonelinkOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkOffOutlinedFilled as default } diff --git a/src/IconPhonelinkOffRoundedFilled.tsx b/src/IconPhonelinkOffRoundedFilled.tsx new file mode 100644 index 000000000..141f6827b --- /dev/null +++ b/src/IconPhonelinkOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkOffRoundedFilled as default } diff --git a/src/IconPhonelinkOffSharpFilled.tsx b/src/IconPhonelinkOffSharpFilled.tsx new file mode 100644 index 000000000..f836abdf1 --- /dev/null +++ b/src/IconPhonelinkOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkOffSharpFilled as default } diff --git a/src/IconPhonelinkRingOffOutlinedFilled.tsx b/src/IconPhonelinkRingOffOutlinedFilled.tsx new file mode 100644 index 000000000..07fe1f8c2 --- /dev/null +++ b/src/IconPhonelinkRingOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRingOffOutlinedFilled as default } diff --git a/src/IconPhonelinkRingOffRoundedFilled.tsx b/src/IconPhonelinkRingOffRoundedFilled.tsx new file mode 100644 index 000000000..2bbe9c460 --- /dev/null +++ b/src/IconPhonelinkRingOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRingOffRoundedFilled as default } diff --git a/src/IconPhonelinkRingOffSharpFilled.tsx b/src/IconPhonelinkRingOffSharpFilled.tsx new file mode 100644 index 000000000..a6b746d6a --- /dev/null +++ b/src/IconPhonelinkRingOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRingOffSharpFilled as default } diff --git a/src/IconPhonelinkRingOutlinedFilled.tsx b/src/IconPhonelinkRingOutlinedFilled.tsx new file mode 100644 index 000000000..458137395 --- /dev/null +++ b/src/IconPhonelinkRingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRingOutlinedFilled as default } diff --git a/src/IconPhonelinkRingRoundedFilled.tsx b/src/IconPhonelinkRingRoundedFilled.tsx new file mode 100644 index 000000000..5a441ccb8 --- /dev/null +++ b/src/IconPhonelinkRingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRingRoundedFilled as default } diff --git a/src/IconPhonelinkRingSharpFilled.tsx b/src/IconPhonelinkRingSharpFilled.tsx new file mode 100644 index 000000000..b4a889868 --- /dev/null +++ b/src/IconPhonelinkRingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkRingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkRingSharpFilled as default } diff --git a/src/IconPhonelinkSetupOutlinedFilled.tsx b/src/IconPhonelinkSetupOutlinedFilled.tsx new file mode 100644 index 000000000..9504e08c4 --- /dev/null +++ b/src/IconPhonelinkSetupOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkSetupOutlinedFilled as default } diff --git a/src/IconPhonelinkSetupRoundedFilled.tsx b/src/IconPhonelinkSetupRoundedFilled.tsx new file mode 100644 index 000000000..038ff786b --- /dev/null +++ b/src/IconPhonelinkSetupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkSetupRoundedFilled as default } diff --git a/src/IconPhonelinkSetupSharpFilled.tsx b/src/IconPhonelinkSetupSharpFilled.tsx new file mode 100644 index 000000000..39879153a --- /dev/null +++ b/src/IconPhonelinkSetupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhonelinkSetupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhonelinkSetupSharpFilled as default } diff --git a/src/IconPhotoAlbumOutlinedFilled.tsx b/src/IconPhotoAlbumOutlinedFilled.tsx new file mode 100644 index 000000000..8ec2f1aaa --- /dev/null +++ b/src/IconPhotoAlbumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoAlbumOutlinedFilled as default } diff --git a/src/IconPhotoAlbumRoundedFilled.tsx b/src/IconPhotoAlbumRoundedFilled.tsx new file mode 100644 index 000000000..de574caee --- /dev/null +++ b/src/IconPhotoAlbumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoAlbumRoundedFilled as default } diff --git a/src/IconPhotoAlbumSharpFilled.tsx b/src/IconPhotoAlbumSharpFilled.tsx new file mode 100644 index 000000000..8c8081693 --- /dev/null +++ b/src/IconPhotoAlbumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAlbumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoAlbumSharpFilled as default } diff --git a/src/IconPhotoAutoMergeOutlinedFilled.tsx b/src/IconPhotoAutoMergeOutlinedFilled.tsx new file mode 100644 index 000000000..f488d9660 --- /dev/null +++ b/src/IconPhotoAutoMergeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAutoMergeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoAutoMergeOutlinedFilled as default } diff --git a/src/IconPhotoAutoMergeRoundedFilled.tsx b/src/IconPhotoAutoMergeRoundedFilled.tsx new file mode 100644 index 000000000..c3017a24e --- /dev/null +++ b/src/IconPhotoAutoMergeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAutoMergeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoAutoMergeRoundedFilled as default } diff --git a/src/IconPhotoAutoMergeSharpFilled.tsx b/src/IconPhotoAutoMergeSharpFilled.tsx new file mode 100644 index 000000000..232ba0aed --- /dev/null +++ b/src/IconPhotoAutoMergeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoAutoMergeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoAutoMergeSharpFilled as default } diff --git a/src/IconPhotoCameraBackOutlinedFilled.tsx b/src/IconPhotoCameraBackOutlinedFilled.tsx new file mode 100644 index 000000000..f195c0655 --- /dev/null +++ b/src/IconPhotoCameraBackOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraBackOutlinedFilled as default } diff --git a/src/IconPhotoCameraBackRoundedFilled.tsx b/src/IconPhotoCameraBackRoundedFilled.tsx new file mode 100644 index 000000000..6c08b5904 --- /dev/null +++ b/src/IconPhotoCameraBackRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraBackRoundedFilled as default } diff --git a/src/IconPhotoCameraBackSharpFilled.tsx b/src/IconPhotoCameraBackSharpFilled.tsx new file mode 100644 index 000000000..b5fb45472 --- /dev/null +++ b/src/IconPhotoCameraBackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraBackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraBackSharpFilled as default } diff --git a/src/IconPhotoCameraFrontOutlinedFilled.tsx b/src/IconPhotoCameraFrontOutlinedFilled.tsx new file mode 100644 index 000000000..558bbc3a1 --- /dev/null +++ b/src/IconPhotoCameraFrontOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraFrontOutlinedFilled as default } diff --git a/src/IconPhotoCameraFrontRoundedFilled.tsx b/src/IconPhotoCameraFrontRoundedFilled.tsx new file mode 100644 index 000000000..1bd485537 --- /dev/null +++ b/src/IconPhotoCameraFrontRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraFrontRoundedFilled as default } diff --git a/src/IconPhotoCameraFrontSharpFilled.tsx b/src/IconPhotoCameraFrontSharpFilled.tsx new file mode 100644 index 000000000..b06bc38e8 --- /dev/null +++ b/src/IconPhotoCameraFrontSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraFrontSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraFrontSharpFilled as default } diff --git a/src/IconPhotoCameraOutlinedFilled.tsx b/src/IconPhotoCameraOutlinedFilled.tsx new file mode 100644 index 000000000..74709563f --- /dev/null +++ b/src/IconPhotoCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraOutlinedFilled as default } diff --git a/src/IconPhotoCameraRoundedFilled.tsx b/src/IconPhotoCameraRoundedFilled.tsx new file mode 100644 index 000000000..be146a34e --- /dev/null +++ b/src/IconPhotoCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraRoundedFilled as default } diff --git a/src/IconPhotoCameraSharpFilled.tsx b/src/IconPhotoCameraSharpFilled.tsx new file mode 100644 index 000000000..90d82b803 --- /dev/null +++ b/src/IconPhotoCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoCameraSharpFilled as default } diff --git a/src/IconPhotoFrameOutlinedFilled.tsx b/src/IconPhotoFrameOutlinedFilled.tsx new file mode 100644 index 000000000..feadba3b8 --- /dev/null +++ b/src/IconPhotoFrameOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFrameOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoFrameOutlinedFilled as default } diff --git a/src/IconPhotoFrameRoundedFilled.tsx b/src/IconPhotoFrameRoundedFilled.tsx new file mode 100644 index 000000000..479f05f82 --- /dev/null +++ b/src/IconPhotoFrameRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFrameRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoFrameRoundedFilled as default } diff --git a/src/IconPhotoFrameSharpFilled.tsx b/src/IconPhotoFrameSharpFilled.tsx new file mode 100644 index 000000000..bb0a8a991 --- /dev/null +++ b/src/IconPhotoFrameSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoFrameSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoFrameSharpFilled as default } diff --git a/src/IconPhotoLibraryOutlinedFilled.tsx b/src/IconPhotoLibraryOutlinedFilled.tsx new file mode 100644 index 000000000..0ae8ef472 --- /dev/null +++ b/src/IconPhotoLibraryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibraryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoLibraryOutlinedFilled as default } diff --git a/src/IconPhotoLibraryRoundedFilled.tsx b/src/IconPhotoLibraryRoundedFilled.tsx new file mode 100644 index 000000000..5386eee53 --- /dev/null +++ b/src/IconPhotoLibraryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibraryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoLibraryRoundedFilled as default } diff --git a/src/IconPhotoLibrarySharpFilled.tsx b/src/IconPhotoLibrarySharpFilled.tsx new file mode 100644 index 000000000..d062e5be6 --- /dev/null +++ b/src/IconPhotoLibrarySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoLibrarySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoLibrarySharpFilled as default } diff --git a/src/IconPhotoOutlinedFilled.tsx b/src/IconPhotoOutlinedFilled.tsx new file mode 100644 index 000000000..6e20e9900 --- /dev/null +++ b/src/IconPhotoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoOutlinedFilled as default } diff --git a/src/IconPhotoPrintsOutlinedFilled.tsx b/src/IconPhotoPrintsOutlinedFilled.tsx new file mode 100644 index 000000000..374190631 --- /dev/null +++ b/src/IconPhotoPrintsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoPrintsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoPrintsOutlinedFilled as default } diff --git a/src/IconPhotoPrintsRoundedFilled.tsx b/src/IconPhotoPrintsRoundedFilled.tsx new file mode 100644 index 000000000..a2ee17b8e --- /dev/null +++ b/src/IconPhotoPrintsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoPrintsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoPrintsRoundedFilled as default } diff --git a/src/IconPhotoPrintsSharpFilled.tsx b/src/IconPhotoPrintsSharpFilled.tsx new file mode 100644 index 000000000..60d0e2cef --- /dev/null +++ b/src/IconPhotoPrintsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoPrintsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoPrintsSharpFilled as default } diff --git a/src/IconPhotoRoundedFilled.tsx b/src/IconPhotoRoundedFilled.tsx new file mode 100644 index 000000000..2f85826a6 --- /dev/null +++ b/src/IconPhotoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoRoundedFilled as default } diff --git a/src/IconPhotoSharpFilled.tsx b/src/IconPhotoSharpFilled.tsx new file mode 100644 index 000000000..732fafadb --- /dev/null +++ b/src/IconPhotoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSharpFilled as default } diff --git a/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx b/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx new file mode 100644 index 000000000..7c69e28b4 --- /dev/null +++ b/src/IconPhotoSizeSelectLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSizeSelectLargeOutlinedFilled as default } diff --git a/src/IconPhotoSizeSelectLargeRoundedFilled.tsx b/src/IconPhotoSizeSelectLargeRoundedFilled.tsx new file mode 100644 index 000000000..e7a2a37d6 --- /dev/null +++ b/src/IconPhotoSizeSelectLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSizeSelectLargeRoundedFilled as default } diff --git a/src/IconPhotoSizeSelectLargeSharpFilled.tsx b/src/IconPhotoSizeSelectLargeSharpFilled.tsx new file mode 100644 index 000000000..6b013a0d6 --- /dev/null +++ b/src/IconPhotoSizeSelectLargeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectLargeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSizeSelectLargeSharpFilled as default } diff --git a/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx b/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx new file mode 100644 index 000000000..627e28d32 --- /dev/null +++ b/src/IconPhotoSizeSelectSmallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSizeSelectSmallOutlinedFilled as default } diff --git a/src/IconPhotoSizeSelectSmallRoundedFilled.tsx b/src/IconPhotoSizeSelectSmallRoundedFilled.tsx new file mode 100644 index 000000000..b90450329 --- /dev/null +++ b/src/IconPhotoSizeSelectSmallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSizeSelectSmallRoundedFilled as default } diff --git a/src/IconPhotoSizeSelectSmallSharpFilled.tsx b/src/IconPhotoSizeSelectSmallSharpFilled.tsx new file mode 100644 index 000000000..4e5b47026 --- /dev/null +++ b/src/IconPhotoSizeSelectSmallSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhotoSizeSelectSmallSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhotoSizeSelectSmallSharpFilled as default } diff --git a/src/IconPhpOutlinedFilled.tsx b/src/IconPhpOutlinedFilled.tsx new file mode 100644 index 000000000..2ed49c7a8 --- /dev/null +++ b/src/IconPhpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhpOutlinedFilled as default } diff --git a/src/IconPhpRoundedFilled.tsx b/src/IconPhpRoundedFilled.tsx new file mode 100644 index 000000000..ece395121 --- /dev/null +++ b/src/IconPhpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhpRoundedFilled as default } diff --git a/src/IconPhpSharpFilled.tsx b/src/IconPhpSharpFilled.tsx new file mode 100644 index 000000000..ec5d5d6bd --- /dev/null +++ b/src/IconPhpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhpSharpFilled as default } diff --git a/src/IconPhysicalTherapyOutlinedFilled.tsx b/src/IconPhysicalTherapyOutlinedFilled.tsx new file mode 100644 index 000000000..b5d5db793 --- /dev/null +++ b/src/IconPhysicalTherapyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhysicalTherapyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhysicalTherapyOutlinedFilled as default } diff --git a/src/IconPhysicalTherapyRoundedFilled.tsx b/src/IconPhysicalTherapyRoundedFilled.tsx new file mode 100644 index 000000000..9ca83600f --- /dev/null +++ b/src/IconPhysicalTherapyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhysicalTherapyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPhysicalTherapyRoundedFilled as default } diff --git a/src/IconPhysicalTherapySharpFilled.tsx b/src/IconPhysicalTherapySharpFilled.tsx new file mode 100644 index 000000000..c28470b6b --- /dev/null +++ b/src/IconPhysicalTherapySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPhysicalTherapySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPhysicalTherapySharpFilled as default } diff --git a/src/IconPianoOffOutlinedFilled.tsx b/src/IconPianoOffOutlinedFilled.tsx new file mode 100644 index 000000000..f64b770c0 --- /dev/null +++ b/src/IconPianoOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPianoOffOutlinedFilled as default } diff --git a/src/IconPianoOffRoundedFilled.tsx b/src/IconPianoOffRoundedFilled.tsx new file mode 100644 index 000000000..abd159aac --- /dev/null +++ b/src/IconPianoOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPianoOffRoundedFilled as default } diff --git a/src/IconPianoOffSharpFilled.tsx b/src/IconPianoOffSharpFilled.tsx new file mode 100644 index 000000000..64678d56e --- /dev/null +++ b/src/IconPianoOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPianoOffSharpFilled as default } diff --git a/src/IconPianoOutlinedFilled.tsx b/src/IconPianoOutlinedFilled.tsx new file mode 100644 index 000000000..7d5bfd9e9 --- /dev/null +++ b/src/IconPianoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPianoOutlinedFilled as default } diff --git a/src/IconPianoRoundedFilled.tsx b/src/IconPianoRoundedFilled.tsx new file mode 100644 index 000000000..31768ce23 --- /dev/null +++ b/src/IconPianoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPianoRoundedFilled as default } diff --git a/src/IconPianoSharpFilled.tsx b/src/IconPianoSharpFilled.tsx new file mode 100644 index 000000000..cf373e974 --- /dev/null +++ b/src/IconPianoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPianoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPianoSharpFilled as default } diff --git a/src/IconPictureAsPdfOutlinedFilled.tsx b/src/IconPictureAsPdfOutlinedFilled.tsx new file mode 100644 index 000000000..aec078705 --- /dev/null +++ b/src/IconPictureAsPdfOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureAsPdfOutlinedFilled as default } diff --git a/src/IconPictureAsPdfRoundedFilled.tsx b/src/IconPictureAsPdfRoundedFilled.tsx new file mode 100644 index 000000000..cbd63cc1e --- /dev/null +++ b/src/IconPictureAsPdfRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureAsPdfRoundedFilled as default } diff --git a/src/IconPictureAsPdfSharpFilled.tsx b/src/IconPictureAsPdfSharpFilled.tsx new file mode 100644 index 000000000..b825865e1 --- /dev/null +++ b/src/IconPictureAsPdfSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureAsPdfSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureAsPdfSharpFilled as default } diff --git a/src/IconPictureInPictureAltOutlinedFilled.tsx b/src/IconPictureInPictureAltOutlinedFilled.tsx new file mode 100644 index 000000000..c40be50e1 --- /dev/null +++ b/src/IconPictureInPictureAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureAltOutlinedFilled as default } diff --git a/src/IconPictureInPictureAltRoundedFilled.tsx b/src/IconPictureInPictureAltRoundedFilled.tsx new file mode 100644 index 000000000..7fce3b40c --- /dev/null +++ b/src/IconPictureInPictureAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureAltRoundedFilled as default } diff --git a/src/IconPictureInPictureAltSharpFilled.tsx b/src/IconPictureInPictureAltSharpFilled.tsx new file mode 100644 index 000000000..e39426f2c --- /dev/null +++ b/src/IconPictureInPictureAltSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureAltSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureAltSharpFilled as default } diff --git a/src/IconPictureInPictureCenterOutlinedFilled.tsx b/src/IconPictureInPictureCenterOutlinedFilled.tsx new file mode 100644 index 000000000..8bde13e6f --- /dev/null +++ b/src/IconPictureInPictureCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureCenterOutlinedFilled as default } diff --git a/src/IconPictureInPictureCenterRoundedFilled.tsx b/src/IconPictureInPictureCenterRoundedFilled.tsx new file mode 100644 index 000000000..791b00df3 --- /dev/null +++ b/src/IconPictureInPictureCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureCenterRoundedFilled as default } diff --git a/src/IconPictureInPictureCenterSharpFilled.tsx b/src/IconPictureInPictureCenterSharpFilled.tsx new file mode 100644 index 000000000..0be59441e --- /dev/null +++ b/src/IconPictureInPictureCenterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureCenterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureCenterSharpFilled as default } diff --git a/src/IconPictureInPictureLargeOutlinedFilled.tsx b/src/IconPictureInPictureLargeOutlinedFilled.tsx new file mode 100644 index 000000000..0b357541a --- /dev/null +++ b/src/IconPictureInPictureLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureLargeOutlinedFilled as default } diff --git a/src/IconPictureInPictureLargeRoundedFilled.tsx b/src/IconPictureInPictureLargeRoundedFilled.tsx new file mode 100644 index 000000000..5b32cc9a2 --- /dev/null +++ b/src/IconPictureInPictureLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureLargeRoundedFilled as default } diff --git a/src/IconPictureInPictureLargeSharpFilled.tsx b/src/IconPictureInPictureLargeSharpFilled.tsx new file mode 100644 index 000000000..e9fb8d62e --- /dev/null +++ b/src/IconPictureInPictureLargeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureLargeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureLargeSharpFilled as default } diff --git a/src/IconPictureInPictureMediumOutlinedFilled.tsx b/src/IconPictureInPictureMediumOutlinedFilled.tsx new file mode 100644 index 000000000..5cf554711 --- /dev/null +++ b/src/IconPictureInPictureMediumOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureMediumOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureMediumOutlinedFilled as default } diff --git a/src/IconPictureInPictureMediumRoundedFilled.tsx b/src/IconPictureInPictureMediumRoundedFilled.tsx new file mode 100644 index 000000000..f0e17d76a --- /dev/null +++ b/src/IconPictureInPictureMediumRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureMediumRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureMediumRoundedFilled as default } diff --git a/src/IconPictureInPictureMediumSharpFilled.tsx b/src/IconPictureInPictureMediumSharpFilled.tsx new file mode 100644 index 000000000..c4d956b64 --- /dev/null +++ b/src/IconPictureInPictureMediumSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureMediumSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureMediumSharpFilled as default } diff --git a/src/IconPictureInPictureMobileOutlinedFilled.tsx b/src/IconPictureInPictureMobileOutlinedFilled.tsx new file mode 100644 index 000000000..b26e4d02f --- /dev/null +++ b/src/IconPictureInPictureMobileOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureMobileOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureMobileOutlinedFilled as default } diff --git a/src/IconPictureInPictureMobileRoundedFilled.tsx b/src/IconPictureInPictureMobileRoundedFilled.tsx new file mode 100644 index 000000000..00719ee50 --- /dev/null +++ b/src/IconPictureInPictureMobileRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureMobileRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureMobileRoundedFilled as default } diff --git a/src/IconPictureInPictureMobileSharpFilled.tsx b/src/IconPictureInPictureMobileSharpFilled.tsx new file mode 100644 index 000000000..b72a729d2 --- /dev/null +++ b/src/IconPictureInPictureMobileSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureMobileSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureMobileSharpFilled as default } diff --git a/src/IconPictureInPictureOffOutlinedFilled.tsx b/src/IconPictureInPictureOffOutlinedFilled.tsx new file mode 100644 index 000000000..d84ce76de --- /dev/null +++ b/src/IconPictureInPictureOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureOffOutlinedFilled as default } diff --git a/src/IconPictureInPictureOffRoundedFilled.tsx b/src/IconPictureInPictureOffRoundedFilled.tsx new file mode 100644 index 000000000..f9fb57669 --- /dev/null +++ b/src/IconPictureInPictureOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureOffRoundedFilled as default } diff --git a/src/IconPictureInPictureOffSharpFilled.tsx b/src/IconPictureInPictureOffSharpFilled.tsx new file mode 100644 index 000000000..79f9af509 --- /dev/null +++ b/src/IconPictureInPictureOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureOffSharpFilled as default } diff --git a/src/IconPictureInPictureOutlinedFilled.tsx b/src/IconPictureInPictureOutlinedFilled.tsx new file mode 100644 index 000000000..49e9d53ae --- /dev/null +++ b/src/IconPictureInPictureOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureOutlinedFilled as default } diff --git a/src/IconPictureInPictureRoundedFilled.tsx b/src/IconPictureInPictureRoundedFilled.tsx new file mode 100644 index 000000000..51076fb58 --- /dev/null +++ b/src/IconPictureInPictureRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureRoundedFilled as default } diff --git a/src/IconPictureInPictureSharpFilled.tsx b/src/IconPictureInPictureSharpFilled.tsx new file mode 100644 index 000000000..d98522f65 --- /dev/null +++ b/src/IconPictureInPictureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureSharpFilled as default } diff --git a/src/IconPictureInPictureSmallOutlinedFilled.tsx b/src/IconPictureInPictureSmallOutlinedFilled.tsx new file mode 100644 index 000000000..b788ad993 --- /dev/null +++ b/src/IconPictureInPictureSmallOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureSmallOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureSmallOutlinedFilled as default } diff --git a/src/IconPictureInPictureSmallRoundedFilled.tsx b/src/IconPictureInPictureSmallRoundedFilled.tsx new file mode 100644 index 000000000..6c06c710f --- /dev/null +++ b/src/IconPictureInPictureSmallRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureSmallRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureSmallRoundedFilled as default } diff --git a/src/IconPictureInPictureSmallSharpFilled.tsx b/src/IconPictureInPictureSmallSharpFilled.tsx new file mode 100644 index 000000000..e811058f7 --- /dev/null +++ b/src/IconPictureInPictureSmallSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPictureInPictureSmallSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPictureInPictureSmallSharpFilled as default } diff --git a/src/IconPieChartOutlinedFilled.tsx b/src/IconPieChartOutlinedFilled.tsx new file mode 100644 index 000000000..bd13d262a --- /dev/null +++ b/src/IconPieChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPieChartOutlinedFilled as default } diff --git a/src/IconPieChartRoundedFilled.tsx b/src/IconPieChartRoundedFilled.tsx new file mode 100644 index 000000000..578397e95 --- /dev/null +++ b/src/IconPieChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPieChartRoundedFilled as default } diff --git a/src/IconPieChartSharpFilled.tsx b/src/IconPieChartSharpFilled.tsx new file mode 100644 index 000000000..1d252940a --- /dev/null +++ b/src/IconPieChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPieChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPieChartSharpFilled as default } diff --git a/src/IconPillOffOutlinedFilled.tsx b/src/IconPillOffOutlinedFilled.tsx new file mode 100644 index 000000000..0a294a523 --- /dev/null +++ b/src/IconPillOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPillOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPillOffOutlinedFilled as default } diff --git a/src/IconPillOffRoundedFilled.tsx b/src/IconPillOffRoundedFilled.tsx new file mode 100644 index 000000000..8bdde89e1 --- /dev/null +++ b/src/IconPillOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPillOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPillOffRoundedFilled as default } diff --git a/src/IconPillOffSharpFilled.tsx b/src/IconPillOffSharpFilled.tsx new file mode 100644 index 000000000..c082ae0f5 --- /dev/null +++ b/src/IconPillOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPillOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPillOffSharpFilled as default } diff --git a/src/IconPillOutlinedFilled.tsx b/src/IconPillOutlinedFilled.tsx new file mode 100644 index 000000000..b0ac52f0e --- /dev/null +++ b/src/IconPillOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPillOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPillOutlinedFilled as default } diff --git a/src/IconPillRoundedFilled.tsx b/src/IconPillRoundedFilled.tsx new file mode 100644 index 000000000..a9f02da11 --- /dev/null +++ b/src/IconPillRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPillRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPillRoundedFilled as default } diff --git a/src/IconPillSharpFilled.tsx b/src/IconPillSharpFilled.tsx new file mode 100644 index 000000000..66b7ceeb5 --- /dev/null +++ b/src/IconPillSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPillSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPillSharpFilled as default } diff --git a/src/IconPinDropOutlinedFilled.tsx b/src/IconPinDropOutlinedFilled.tsx new file mode 100644 index 000000000..f00f0c0f3 --- /dev/null +++ b/src/IconPinDropOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinDropOutlinedFilled as default } diff --git a/src/IconPinDropRoundedFilled.tsx b/src/IconPinDropRoundedFilled.tsx new file mode 100644 index 000000000..befa01ed1 --- /dev/null +++ b/src/IconPinDropRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinDropRoundedFilled as default } diff --git a/src/IconPinDropSharpFilled.tsx b/src/IconPinDropSharpFilled.tsx new file mode 100644 index 000000000..2d570274c --- /dev/null +++ b/src/IconPinDropSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinDropSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinDropSharpFilled as default } diff --git a/src/IconPinEndOutlinedFilled.tsx b/src/IconPinEndOutlinedFilled.tsx new file mode 100644 index 000000000..5a5f5666b --- /dev/null +++ b/src/IconPinEndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinEndOutlinedFilled as default } diff --git a/src/IconPinEndRoundedFilled.tsx b/src/IconPinEndRoundedFilled.tsx new file mode 100644 index 000000000..b25f1f731 --- /dev/null +++ b/src/IconPinEndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinEndRoundedFilled as default } diff --git a/src/IconPinEndSharpFilled.tsx b/src/IconPinEndSharpFilled.tsx new file mode 100644 index 000000000..7baae9a1f --- /dev/null +++ b/src/IconPinEndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinEndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinEndSharpFilled as default } diff --git a/src/IconPinInvokeOutlinedFilled.tsx b/src/IconPinInvokeOutlinedFilled.tsx new file mode 100644 index 000000000..83efe970e --- /dev/null +++ b/src/IconPinInvokeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinInvokeOutlinedFilled as default } diff --git a/src/IconPinInvokeRoundedFilled.tsx b/src/IconPinInvokeRoundedFilled.tsx new file mode 100644 index 000000000..06879dcca --- /dev/null +++ b/src/IconPinInvokeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinInvokeRoundedFilled as default } diff --git a/src/IconPinInvokeSharpFilled.tsx b/src/IconPinInvokeSharpFilled.tsx new file mode 100644 index 000000000..5147ff51b --- /dev/null +++ b/src/IconPinInvokeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinInvokeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinInvokeSharpFilled as default } diff --git a/src/IconPinOutlinedFilled.tsx b/src/IconPinOutlinedFilled.tsx new file mode 100644 index 000000000..e0f04951e --- /dev/null +++ b/src/IconPinOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinOutlinedFilled as default } diff --git a/src/IconPinRoundedFilled.tsx b/src/IconPinRoundedFilled.tsx new file mode 100644 index 000000000..3e5ffc55e --- /dev/null +++ b/src/IconPinRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinRoundedFilled as default } diff --git a/src/IconPinSharpFilled.tsx b/src/IconPinSharpFilled.tsx new file mode 100644 index 000000000..ab73e426d --- /dev/null +++ b/src/IconPinSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinSharpFilled as default } diff --git a/src/IconPinchOutlinedFilled.tsx b/src/IconPinchOutlinedFilled.tsx new file mode 100644 index 000000000..2a40c4bb5 --- /dev/null +++ b/src/IconPinchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchOutlinedFilled as default } diff --git a/src/IconPinchRoundedFilled.tsx b/src/IconPinchRoundedFilled.tsx new file mode 100644 index 000000000..0e19e2648 --- /dev/null +++ b/src/IconPinchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchRoundedFilled as default } diff --git a/src/IconPinchSharpFilled.tsx b/src/IconPinchSharpFilled.tsx new file mode 100644 index 000000000..494b1cae0 --- /dev/null +++ b/src/IconPinchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchSharpFilled as default } diff --git a/src/IconPinchZoomInOutlinedFilled.tsx b/src/IconPinchZoomInOutlinedFilled.tsx new file mode 100644 index 000000000..27c113491 --- /dev/null +++ b/src/IconPinchZoomInOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchZoomInOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchZoomInOutlinedFilled as default } diff --git a/src/IconPinchZoomInRoundedFilled.tsx b/src/IconPinchZoomInRoundedFilled.tsx new file mode 100644 index 000000000..a3405c3bc --- /dev/null +++ b/src/IconPinchZoomInRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchZoomInRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchZoomInRoundedFilled as default } diff --git a/src/IconPinchZoomInSharpFilled.tsx b/src/IconPinchZoomInSharpFilled.tsx new file mode 100644 index 000000000..d06fef402 --- /dev/null +++ b/src/IconPinchZoomInSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchZoomInSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchZoomInSharpFilled as default } diff --git a/src/IconPinchZoomOutOutlinedFilled.tsx b/src/IconPinchZoomOutOutlinedFilled.tsx new file mode 100644 index 000000000..0174bb202 --- /dev/null +++ b/src/IconPinchZoomOutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchZoomOutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchZoomOutOutlinedFilled as default } diff --git a/src/IconPinchZoomOutRoundedFilled.tsx b/src/IconPinchZoomOutRoundedFilled.tsx new file mode 100644 index 000000000..f936f7fc2 --- /dev/null +++ b/src/IconPinchZoomOutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchZoomOutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchZoomOutRoundedFilled as default } diff --git a/src/IconPinchZoomOutSharpFilled.tsx b/src/IconPinchZoomOutSharpFilled.tsx new file mode 100644 index 000000000..6c2b5eeda --- /dev/null +++ b/src/IconPinchZoomOutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPinchZoomOutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPinchZoomOutSharpFilled as default } diff --git a/src/IconPipExitOutlinedFilled.tsx b/src/IconPipExitOutlinedFilled.tsx new file mode 100644 index 000000000..ca86e57be --- /dev/null +++ b/src/IconPipExitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPipExitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPipExitOutlinedFilled as default } diff --git a/src/IconPipExitRoundedFilled.tsx b/src/IconPipExitRoundedFilled.tsx new file mode 100644 index 000000000..4b94b791a --- /dev/null +++ b/src/IconPipExitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPipExitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPipExitRoundedFilled as default } diff --git a/src/IconPipExitSharpFilled.tsx b/src/IconPipExitSharpFilled.tsx new file mode 100644 index 000000000..a46833049 --- /dev/null +++ b/src/IconPipExitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPipExitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPipExitSharpFilled as default } diff --git a/src/IconPipOutlinedFilled.tsx b/src/IconPipOutlinedFilled.tsx new file mode 100644 index 000000000..cff2f70d6 --- /dev/null +++ b/src/IconPipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPipOutlinedFilled as default } diff --git a/src/IconPipRoundedFilled.tsx b/src/IconPipRoundedFilled.tsx new file mode 100644 index 000000000..66b0e93b7 --- /dev/null +++ b/src/IconPipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPipRoundedFilled as default } diff --git a/src/IconPipSharpFilled.tsx b/src/IconPipSharpFilled.tsx new file mode 100644 index 000000000..780fa3ec9 --- /dev/null +++ b/src/IconPipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPipSharpFilled as default } diff --git a/src/IconPivotTableChartOutlinedFilled.tsx b/src/IconPivotTableChartOutlinedFilled.tsx new file mode 100644 index 000000000..be56ef9c5 --- /dev/null +++ b/src/IconPivotTableChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPivotTableChartOutlinedFilled as default } diff --git a/src/IconPivotTableChartRoundedFilled.tsx b/src/IconPivotTableChartRoundedFilled.tsx new file mode 100644 index 000000000..56065ea13 --- /dev/null +++ b/src/IconPivotTableChartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPivotTableChartRoundedFilled as default } diff --git a/src/IconPivotTableChartSharpFilled.tsx b/src/IconPivotTableChartSharpFilled.tsx new file mode 100644 index 000000000..7143eae07 --- /dev/null +++ b/src/IconPivotTableChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPivotTableChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPivotTableChartSharpFilled as default } diff --git a/src/IconPlaceItemOutlinedFilled.tsx b/src/IconPlaceItemOutlinedFilled.tsx new file mode 100644 index 000000000..b2e23056b --- /dev/null +++ b/src/IconPlaceItemOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceItemOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaceItemOutlinedFilled as default } diff --git a/src/IconPlaceItemRoundedFilled.tsx b/src/IconPlaceItemRoundedFilled.tsx new file mode 100644 index 000000000..4e72ec36e --- /dev/null +++ b/src/IconPlaceItemRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceItemRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaceItemRoundedFilled as default } diff --git a/src/IconPlaceItemSharpFilled.tsx b/src/IconPlaceItemSharpFilled.tsx new file mode 100644 index 000000000..eca306f06 --- /dev/null +++ b/src/IconPlaceItemSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaceItemSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaceItemSharpFilled as default } diff --git a/src/IconPlagiarismOutlinedFilled.tsx b/src/IconPlagiarismOutlinedFilled.tsx new file mode 100644 index 000000000..551672570 --- /dev/null +++ b/src/IconPlagiarismOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlagiarismOutlinedFilled as default } diff --git a/src/IconPlagiarismRoundedFilled.tsx b/src/IconPlagiarismRoundedFilled.tsx new file mode 100644 index 000000000..bd4629e4c --- /dev/null +++ b/src/IconPlagiarismRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlagiarismRoundedFilled as default } diff --git a/src/IconPlagiarismSharpFilled.tsx b/src/IconPlagiarismSharpFilled.tsx new file mode 100644 index 000000000..5821c2aa4 --- /dev/null +++ b/src/IconPlagiarismSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlagiarismSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlagiarismSharpFilled as default } diff --git a/src/IconPlannerBannerAdPtOutlinedFilled.tsx b/src/IconPlannerBannerAdPtOutlinedFilled.tsx new file mode 100644 index 000000000..a0cf16b6e --- /dev/null +++ b/src/IconPlannerBannerAdPtOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlannerBannerAdPtOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlannerBannerAdPtOutlinedFilled as default } diff --git a/src/IconPlannerBannerAdPtRoundedFilled.tsx b/src/IconPlannerBannerAdPtRoundedFilled.tsx new file mode 100644 index 000000000..84b301c9b --- /dev/null +++ b/src/IconPlannerBannerAdPtRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlannerBannerAdPtRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlannerBannerAdPtRoundedFilled as default } diff --git a/src/IconPlannerBannerAdPtSharpFilled.tsx b/src/IconPlannerBannerAdPtSharpFilled.tsx new file mode 100644 index 000000000..46659737a --- /dev/null +++ b/src/IconPlannerBannerAdPtSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlannerBannerAdPtSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlannerBannerAdPtSharpFilled as default } diff --git a/src/IconPlannerReviewOutlinedFilled.tsx b/src/IconPlannerReviewOutlinedFilled.tsx new file mode 100644 index 000000000..bd231dd85 --- /dev/null +++ b/src/IconPlannerReviewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlannerReviewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlannerReviewOutlinedFilled as default } diff --git a/src/IconPlannerReviewRoundedFilled.tsx b/src/IconPlannerReviewRoundedFilled.tsx new file mode 100644 index 000000000..2faf94061 --- /dev/null +++ b/src/IconPlannerReviewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlannerReviewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlannerReviewRoundedFilled as default } diff --git a/src/IconPlannerReviewSharpFilled.tsx b/src/IconPlannerReviewSharpFilled.tsx new file mode 100644 index 000000000..e9c16c207 --- /dev/null +++ b/src/IconPlannerReviewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlannerReviewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlannerReviewSharpFilled as default } diff --git a/src/IconPlayArrowOutlinedFilled.tsx b/src/IconPlayArrowOutlinedFilled.tsx new file mode 100644 index 000000000..d92f22e40 --- /dev/null +++ b/src/IconPlayArrowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayArrowOutlinedFilled as default } diff --git a/src/IconPlayArrowRoundedFilled.tsx b/src/IconPlayArrowRoundedFilled.tsx new file mode 100644 index 000000000..0d660bf11 --- /dev/null +++ b/src/IconPlayArrowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayArrowRoundedFilled as default } diff --git a/src/IconPlayArrowSharpFilled.tsx b/src/IconPlayArrowSharpFilled.tsx new file mode 100644 index 000000000..7b8d8d3c9 --- /dev/null +++ b/src/IconPlayArrowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayArrowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayArrowSharpFilled as default } diff --git a/src/IconPlayCircleOutlinedFilled.tsx b/src/IconPlayCircleOutlinedFilled.tsx new file mode 100644 index 000000000..adff60d09 --- /dev/null +++ b/src/IconPlayCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayCircleOutlinedFilled as default } diff --git a/src/IconPlayCircleRoundedFilled.tsx b/src/IconPlayCircleRoundedFilled.tsx new file mode 100644 index 000000000..91cb734ab --- /dev/null +++ b/src/IconPlayCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayCircleRoundedFilled as default } diff --git a/src/IconPlayCircleSharpFilled.tsx b/src/IconPlayCircleSharpFilled.tsx new file mode 100644 index 000000000..597d6cec8 --- /dev/null +++ b/src/IconPlayCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayCircleSharpFilled as default } diff --git a/src/IconPlayDisabledOutlinedFilled.tsx b/src/IconPlayDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..23b7700ef --- /dev/null +++ b/src/IconPlayDisabledOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayDisabledOutlinedFilled as default } diff --git a/src/IconPlayDisabledRoundedFilled.tsx b/src/IconPlayDisabledRoundedFilled.tsx new file mode 100644 index 000000000..75532f1b7 --- /dev/null +++ b/src/IconPlayDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayDisabledRoundedFilled as default } diff --git a/src/IconPlayDisabledSharpFilled.tsx b/src/IconPlayDisabledSharpFilled.tsx new file mode 100644 index 000000000..490b20a15 --- /dev/null +++ b/src/IconPlayDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayDisabledSharpFilled as default } diff --git a/src/IconPlayForWorkOutlinedFilled.tsx b/src/IconPlayForWorkOutlinedFilled.tsx new file mode 100644 index 000000000..0a8ab169c --- /dev/null +++ b/src/IconPlayForWorkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayForWorkOutlinedFilled as default } diff --git a/src/IconPlayForWorkRoundedFilled.tsx b/src/IconPlayForWorkRoundedFilled.tsx new file mode 100644 index 000000000..bf03f9a6b --- /dev/null +++ b/src/IconPlayForWorkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayForWorkRoundedFilled as default } diff --git a/src/IconPlayForWorkSharpFilled.tsx b/src/IconPlayForWorkSharpFilled.tsx new file mode 100644 index 000000000..9636c79b2 --- /dev/null +++ b/src/IconPlayForWorkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayForWorkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayForWorkSharpFilled as default } diff --git a/src/IconPlayLessonOutlinedFilled.tsx b/src/IconPlayLessonOutlinedFilled.tsx new file mode 100644 index 000000000..f57eccc3a --- /dev/null +++ b/src/IconPlayLessonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayLessonOutlinedFilled as default } diff --git a/src/IconPlayLessonRoundedFilled.tsx b/src/IconPlayLessonRoundedFilled.tsx new file mode 100644 index 000000000..ef07b1a38 --- /dev/null +++ b/src/IconPlayLessonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayLessonRoundedFilled as default } diff --git a/src/IconPlayLessonSharpFilled.tsx b/src/IconPlayLessonSharpFilled.tsx new file mode 100644 index 000000000..f52d6510b --- /dev/null +++ b/src/IconPlayLessonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayLessonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayLessonSharpFilled as default } diff --git a/src/IconPlayPauseOutlinedFilled.tsx b/src/IconPlayPauseOutlinedFilled.tsx new file mode 100644 index 000000000..09a380f15 --- /dev/null +++ b/src/IconPlayPauseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayPauseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayPauseOutlinedFilled as default } diff --git a/src/IconPlayPauseRoundedFilled.tsx b/src/IconPlayPauseRoundedFilled.tsx new file mode 100644 index 000000000..8347afef8 --- /dev/null +++ b/src/IconPlayPauseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayPauseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayPauseRoundedFilled as default } diff --git a/src/IconPlayPauseSharpFilled.tsx b/src/IconPlayPauseSharpFilled.tsx new file mode 100644 index 000000000..3d1b34d9c --- /dev/null +++ b/src/IconPlayPauseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayPauseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayPauseSharpFilled as default } diff --git a/src/IconPlayingCardsOutlinedFilled.tsx b/src/IconPlayingCardsOutlinedFilled.tsx new file mode 100644 index 000000000..e6afce79c --- /dev/null +++ b/src/IconPlayingCardsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayingCardsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayingCardsOutlinedFilled as default } diff --git a/src/IconPlayingCardsRoundedFilled.tsx b/src/IconPlayingCardsRoundedFilled.tsx new file mode 100644 index 000000000..b002e769d --- /dev/null +++ b/src/IconPlayingCardsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayingCardsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayingCardsRoundedFilled as default } diff --git a/src/IconPlayingCardsSharpFilled.tsx b/src/IconPlayingCardsSharpFilled.tsx new file mode 100644 index 000000000..b8559cad2 --- /dev/null +++ b/src/IconPlayingCardsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlayingCardsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlayingCardsSharpFilled as default } diff --git a/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx b/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx new file mode 100644 index 000000000..4a1604288 --- /dev/null +++ b/src/IconPlaylistAddCheckCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckCircleOutlinedFilled as default } diff --git a/src/IconPlaylistAddCheckCircleRoundedFilled.tsx b/src/IconPlaylistAddCheckCircleRoundedFilled.tsx new file mode 100644 index 000000000..7847c2f1a --- /dev/null +++ b/src/IconPlaylistAddCheckCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckCircleRoundedFilled as default } diff --git a/src/IconPlaylistAddCheckCircleSharpFilled.tsx b/src/IconPlaylistAddCheckCircleSharpFilled.tsx new file mode 100644 index 000000000..82cd2cb0f --- /dev/null +++ b/src/IconPlaylistAddCheckCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckCircleSharpFilled as default } diff --git a/src/IconPlaylistAddCheckOutlinedFilled.tsx b/src/IconPlaylistAddCheckOutlinedFilled.tsx new file mode 100644 index 000000000..991dfbf9b --- /dev/null +++ b/src/IconPlaylistAddCheckOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckOutlinedFilled as default } diff --git a/src/IconPlaylistAddCheckRoundedFilled.tsx b/src/IconPlaylistAddCheckRoundedFilled.tsx new file mode 100644 index 000000000..9f344aef0 --- /dev/null +++ b/src/IconPlaylistAddCheckRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckRoundedFilled as default } diff --git a/src/IconPlaylistAddCheckSharpFilled.tsx b/src/IconPlaylistAddCheckSharpFilled.tsx new file mode 100644 index 000000000..3d94e3190 --- /dev/null +++ b/src/IconPlaylistAddCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCheckSharpFilled as default } diff --git a/src/IconPlaylistAddCircleOutlinedFilled.tsx b/src/IconPlaylistAddCircleOutlinedFilled.tsx new file mode 100644 index 000000000..ed0fc0752 --- /dev/null +++ b/src/IconPlaylistAddCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCircleOutlinedFilled as default } diff --git a/src/IconPlaylistAddCircleRoundedFilled.tsx b/src/IconPlaylistAddCircleRoundedFilled.tsx new file mode 100644 index 000000000..649b9aa02 --- /dev/null +++ b/src/IconPlaylistAddCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCircleRoundedFilled as default } diff --git a/src/IconPlaylistAddCircleSharpFilled.tsx b/src/IconPlaylistAddCircleSharpFilled.tsx new file mode 100644 index 000000000..5bf147ee4 --- /dev/null +++ b/src/IconPlaylistAddCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddCircleSharpFilled as default } diff --git a/src/IconPlaylistAddOutlinedFilled.tsx b/src/IconPlaylistAddOutlinedFilled.tsx new file mode 100644 index 000000000..c93cfb850 --- /dev/null +++ b/src/IconPlaylistAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddOutlinedFilled as default } diff --git a/src/IconPlaylistAddRoundedFilled.tsx b/src/IconPlaylistAddRoundedFilled.tsx new file mode 100644 index 000000000..efebe81ee --- /dev/null +++ b/src/IconPlaylistAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddRoundedFilled as default } diff --git a/src/IconPlaylistAddSharpFilled.tsx b/src/IconPlaylistAddSharpFilled.tsx new file mode 100644 index 000000000..8fafb2508 --- /dev/null +++ b/src/IconPlaylistAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistAddSharpFilled as default } diff --git a/src/IconPlaylistPlayOutlinedFilled.tsx b/src/IconPlaylistPlayOutlinedFilled.tsx new file mode 100644 index 000000000..53f423368 --- /dev/null +++ b/src/IconPlaylistPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistPlayOutlinedFilled as default } diff --git a/src/IconPlaylistPlayRoundedFilled.tsx b/src/IconPlaylistPlayRoundedFilled.tsx new file mode 100644 index 000000000..57ff04b90 --- /dev/null +++ b/src/IconPlaylistPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistPlayRoundedFilled as default } diff --git a/src/IconPlaylistPlaySharpFilled.tsx b/src/IconPlaylistPlaySharpFilled.tsx new file mode 100644 index 000000000..c0539ede4 --- /dev/null +++ b/src/IconPlaylistPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistPlaySharpFilled as default } diff --git a/src/IconPlaylistRemoveOutlinedFilled.tsx b/src/IconPlaylistRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..447c7c7ac --- /dev/null +++ b/src/IconPlaylistRemoveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistRemoveOutlinedFilled as default } diff --git a/src/IconPlaylistRemoveRoundedFilled.tsx b/src/IconPlaylistRemoveRoundedFilled.tsx new file mode 100644 index 000000000..968d07356 --- /dev/null +++ b/src/IconPlaylistRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistRemoveRoundedFilled as default } diff --git a/src/IconPlaylistRemoveSharpFilled.tsx b/src/IconPlaylistRemoveSharpFilled.tsx new file mode 100644 index 000000000..d6a52135a --- /dev/null +++ b/src/IconPlaylistRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlaylistRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlaylistRemoveSharpFilled as default } diff --git a/src/IconPlumbingOutlinedFilled.tsx b/src/IconPlumbingOutlinedFilled.tsx new file mode 100644 index 000000000..1f8001683 --- /dev/null +++ b/src/IconPlumbingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlumbingOutlinedFilled as default } diff --git a/src/IconPlumbingRoundedFilled.tsx b/src/IconPlumbingRoundedFilled.tsx new file mode 100644 index 000000000..30f118c24 --- /dev/null +++ b/src/IconPlumbingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlumbingRoundedFilled as default } diff --git a/src/IconPlumbingSharpFilled.tsx b/src/IconPlumbingSharpFilled.tsx new file mode 100644 index 000000000..66ffcf4b0 --- /dev/null +++ b/src/IconPlumbingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPlumbingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPlumbingSharpFilled as default } diff --git a/src/IconPodcastsOutlinedFilled.tsx b/src/IconPodcastsOutlinedFilled.tsx new file mode 100644 index 000000000..5aa6cd5e0 --- /dev/null +++ b/src/IconPodcastsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodcastsOutlinedFilled as default } diff --git a/src/IconPodcastsRoundedFilled.tsx b/src/IconPodcastsRoundedFilled.tsx new file mode 100644 index 000000000..1fc89b9e3 --- /dev/null +++ b/src/IconPodcastsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodcastsRoundedFilled as default } diff --git a/src/IconPodcastsSharpFilled.tsx b/src/IconPodcastsSharpFilled.tsx new file mode 100644 index 000000000..f4b207e70 --- /dev/null +++ b/src/IconPodcastsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodcastsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodcastsSharpFilled as default } diff --git a/src/IconPodiatryOutlinedFilled.tsx b/src/IconPodiatryOutlinedFilled.tsx new file mode 100644 index 000000000..53d8ec132 --- /dev/null +++ b/src/IconPodiatryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodiatryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodiatryOutlinedFilled as default } diff --git a/src/IconPodiatryRoundedFilled.tsx b/src/IconPodiatryRoundedFilled.tsx new file mode 100644 index 000000000..f7c9dd417 --- /dev/null +++ b/src/IconPodiatryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodiatryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodiatryRoundedFilled as default } diff --git a/src/IconPodiatrySharpFilled.tsx b/src/IconPodiatrySharpFilled.tsx new file mode 100644 index 000000000..076e80da6 --- /dev/null +++ b/src/IconPodiatrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodiatrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodiatrySharpFilled as default } diff --git a/src/IconPodiumOutlinedFilled.tsx b/src/IconPodiumOutlinedFilled.tsx new file mode 100644 index 000000000..a6d0ce31e --- /dev/null +++ b/src/IconPodiumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodiumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodiumOutlinedFilled as default } diff --git a/src/IconPodiumRoundedFilled.tsx b/src/IconPodiumRoundedFilled.tsx new file mode 100644 index 000000000..653e37938 --- /dev/null +++ b/src/IconPodiumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodiumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodiumRoundedFilled as default } diff --git a/src/IconPodiumSharpFilled.tsx b/src/IconPodiumSharpFilled.tsx new file mode 100644 index 000000000..92a2235d0 --- /dev/null +++ b/src/IconPodiumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPodiumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPodiumSharpFilled as default } diff --git a/src/IconPointOfSaleOutlinedFilled.tsx b/src/IconPointOfSaleOutlinedFilled.tsx new file mode 100644 index 000000000..2cfa1f84d --- /dev/null +++ b/src/IconPointOfSaleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPointOfSaleOutlinedFilled as default } diff --git a/src/IconPointOfSaleRoundedFilled.tsx b/src/IconPointOfSaleRoundedFilled.tsx new file mode 100644 index 000000000..ee190c999 --- /dev/null +++ b/src/IconPointOfSaleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPointOfSaleRoundedFilled as default } diff --git a/src/IconPointOfSaleSharpFilled.tsx b/src/IconPointOfSaleSharpFilled.tsx new file mode 100644 index 000000000..1c9b34f08 --- /dev/null +++ b/src/IconPointOfSaleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointOfSaleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPointOfSaleSharpFilled as default } diff --git a/src/IconPointScanOutlinedFilled.tsx b/src/IconPointScanOutlinedFilled.tsx new file mode 100644 index 000000000..faaf0ca3c --- /dev/null +++ b/src/IconPointScanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointScanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPointScanOutlinedFilled as default } diff --git a/src/IconPointScanRoundedFilled.tsx b/src/IconPointScanRoundedFilled.tsx new file mode 100644 index 000000000..52d58acca --- /dev/null +++ b/src/IconPointScanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointScanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPointScanRoundedFilled as default } diff --git a/src/IconPointScanSharpFilled.tsx b/src/IconPointScanSharpFilled.tsx new file mode 100644 index 000000000..dcf299b66 --- /dev/null +++ b/src/IconPointScanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPointScanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPointScanSharpFilled as default } diff --git a/src/IconPokerChipOutlinedFilled.tsx b/src/IconPokerChipOutlinedFilled.tsx new file mode 100644 index 000000000..6fbd96885 --- /dev/null +++ b/src/IconPokerChipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPokerChipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPokerChipOutlinedFilled as default } diff --git a/src/IconPokerChipRoundedFilled.tsx b/src/IconPokerChipRoundedFilled.tsx new file mode 100644 index 000000000..92c9aa9f5 --- /dev/null +++ b/src/IconPokerChipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPokerChipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPokerChipRoundedFilled as default } diff --git a/src/IconPokerChipSharpFilled.tsx b/src/IconPokerChipSharpFilled.tsx new file mode 100644 index 000000000..9c69e9b59 --- /dev/null +++ b/src/IconPokerChipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPokerChipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPokerChipSharpFilled as default } diff --git a/src/IconPolicyAlertOutlinedFilled.tsx b/src/IconPolicyAlertOutlinedFilled.tsx new file mode 100644 index 000000000..41902bbc3 --- /dev/null +++ b/src/IconPolicyAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolicyAlertOutlinedFilled as default } diff --git a/src/IconPolicyAlertRoundedFilled.tsx b/src/IconPolicyAlertRoundedFilled.tsx new file mode 100644 index 000000000..e10705b2b --- /dev/null +++ b/src/IconPolicyAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolicyAlertRoundedFilled as default } diff --git a/src/IconPolicyAlertSharpFilled.tsx b/src/IconPolicyAlertSharpFilled.tsx new file mode 100644 index 000000000..6e5f4f9a9 --- /dev/null +++ b/src/IconPolicyAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolicyAlertSharpFilled as default } diff --git a/src/IconPolicyOutlinedFilled.tsx b/src/IconPolicyOutlinedFilled.tsx new file mode 100644 index 000000000..7c2059f2c --- /dev/null +++ b/src/IconPolicyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolicyOutlinedFilled as default } diff --git a/src/IconPolicyRoundedFilled.tsx b/src/IconPolicyRoundedFilled.tsx new file mode 100644 index 000000000..ba7ff6e3f --- /dev/null +++ b/src/IconPolicyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolicyRoundedFilled as default } diff --git a/src/IconPolicySharpFilled.tsx b/src/IconPolicySharpFilled.tsx new file mode 100644 index 000000000..288370b2a --- /dev/null +++ b/src/IconPolicySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolicySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolicySharpFilled as default } diff --git a/src/IconPolylineOutlinedFilled.tsx b/src/IconPolylineOutlinedFilled.tsx new file mode 100644 index 000000000..e7e5a891b --- /dev/null +++ b/src/IconPolylineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolylineOutlinedFilled as default } diff --git a/src/IconPolylineRoundedFilled.tsx b/src/IconPolylineRoundedFilled.tsx new file mode 100644 index 000000000..407676ad2 --- /dev/null +++ b/src/IconPolylineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolylineRoundedFilled as default } diff --git a/src/IconPolylineSharpFilled.tsx b/src/IconPolylineSharpFilled.tsx new file mode 100644 index 000000000..6e62f9c57 --- /dev/null +++ b/src/IconPolylineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolylineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolylineSharpFilled as default } diff --git a/src/IconPolymerOutlinedFilled.tsx b/src/IconPolymerOutlinedFilled.tsx new file mode 100644 index 000000000..848dde4e5 --- /dev/null +++ b/src/IconPolymerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolymerOutlinedFilled as default } diff --git a/src/IconPolymerRoundedFilled.tsx b/src/IconPolymerRoundedFilled.tsx new file mode 100644 index 000000000..cbe088229 --- /dev/null +++ b/src/IconPolymerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolymerRoundedFilled as default } diff --git a/src/IconPolymerSharpFilled.tsx b/src/IconPolymerSharpFilled.tsx new file mode 100644 index 000000000..8a4d159f6 --- /dev/null +++ b/src/IconPolymerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPolymerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPolymerSharpFilled as default } diff --git a/src/IconPoolOutlinedFilled.tsx b/src/IconPoolOutlinedFilled.tsx new file mode 100644 index 000000000..fc27a7d6f --- /dev/null +++ b/src/IconPoolOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPoolOutlinedFilled as default } diff --git a/src/IconPoolRoundedFilled.tsx b/src/IconPoolRoundedFilled.tsx new file mode 100644 index 000000000..3317fe7b7 --- /dev/null +++ b/src/IconPoolRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPoolRoundedFilled as default } diff --git a/src/IconPoolSharpFilled.tsx b/src/IconPoolSharpFilled.tsx new file mode 100644 index 000000000..30589dd70 --- /dev/null +++ b/src/IconPoolSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPoolSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPoolSharpFilled as default } diff --git a/src/IconPortableWifiOffOutlinedFilled.tsx b/src/IconPortableWifiOffOutlinedFilled.tsx new file mode 100644 index 000000000..db7ecfb3e --- /dev/null +++ b/src/IconPortableWifiOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPortableWifiOffOutlinedFilled as default } diff --git a/src/IconPortableWifiOffRoundedFilled.tsx b/src/IconPortableWifiOffRoundedFilled.tsx new file mode 100644 index 000000000..fa6109d68 --- /dev/null +++ b/src/IconPortableWifiOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPortableWifiOffRoundedFilled as default } diff --git a/src/IconPortableWifiOffSharpFilled.tsx b/src/IconPortableWifiOffSharpFilled.tsx new file mode 100644 index 000000000..e2a3558ed --- /dev/null +++ b/src/IconPortableWifiOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPortableWifiOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPortableWifiOffSharpFilled as default } diff --git a/src/IconPositionBottomLeftOutlinedFilled.tsx b/src/IconPositionBottomLeftOutlinedFilled.tsx new file mode 100644 index 000000000..7cd2938cf --- /dev/null +++ b/src/IconPositionBottomLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionBottomLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionBottomLeftOutlinedFilled as default } diff --git a/src/IconPositionBottomLeftRoundedFilled.tsx b/src/IconPositionBottomLeftRoundedFilled.tsx new file mode 100644 index 000000000..692d8ad68 --- /dev/null +++ b/src/IconPositionBottomLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionBottomLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionBottomLeftRoundedFilled as default } diff --git a/src/IconPositionBottomLeftSharpFilled.tsx b/src/IconPositionBottomLeftSharpFilled.tsx new file mode 100644 index 000000000..8d30d23b1 --- /dev/null +++ b/src/IconPositionBottomLeftSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionBottomLeftSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionBottomLeftSharpFilled as default } diff --git a/src/IconPositionBottomRightOutlinedFilled.tsx b/src/IconPositionBottomRightOutlinedFilled.tsx new file mode 100644 index 000000000..f58488247 --- /dev/null +++ b/src/IconPositionBottomRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionBottomRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionBottomRightOutlinedFilled as default } diff --git a/src/IconPositionBottomRightRoundedFilled.tsx b/src/IconPositionBottomRightRoundedFilled.tsx new file mode 100644 index 000000000..b21c5d2f6 --- /dev/null +++ b/src/IconPositionBottomRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionBottomRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionBottomRightRoundedFilled as default } diff --git a/src/IconPositionBottomRightSharpFilled.tsx b/src/IconPositionBottomRightSharpFilled.tsx new file mode 100644 index 000000000..0436fc907 --- /dev/null +++ b/src/IconPositionBottomRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionBottomRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionBottomRightSharpFilled as default } diff --git a/src/IconPositionTopRightOutlinedFilled.tsx b/src/IconPositionTopRightOutlinedFilled.tsx new file mode 100644 index 000000000..8b929a727 --- /dev/null +++ b/src/IconPositionTopRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionTopRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionTopRightOutlinedFilled as default } diff --git a/src/IconPositionTopRightRoundedFilled.tsx b/src/IconPositionTopRightRoundedFilled.tsx new file mode 100644 index 000000000..a837fa1e6 --- /dev/null +++ b/src/IconPositionTopRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionTopRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionTopRightRoundedFilled as default } diff --git a/src/IconPositionTopRightSharpFilled.tsx b/src/IconPositionTopRightSharpFilled.tsx new file mode 100644 index 000000000..9247a36f2 --- /dev/null +++ b/src/IconPositionTopRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPositionTopRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPositionTopRightSharpFilled as default } diff --git a/src/IconPostAddOutlinedFilled.tsx b/src/IconPostAddOutlinedFilled.tsx new file mode 100644 index 000000000..9a97e6352 --- /dev/null +++ b/src/IconPostAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPostAddOutlinedFilled as default } diff --git a/src/IconPostAddRoundedFilled.tsx b/src/IconPostAddRoundedFilled.tsx new file mode 100644 index 000000000..6804db471 --- /dev/null +++ b/src/IconPostAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPostAddRoundedFilled as default } diff --git a/src/IconPostAddSharpFilled.tsx b/src/IconPostAddSharpFilled.tsx new file mode 100644 index 000000000..cfd8ad888 --- /dev/null +++ b/src/IconPostAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPostAddSharpFilled as default } diff --git a/src/IconPostOutlinedFilled.tsx b/src/IconPostOutlinedFilled.tsx new file mode 100644 index 000000000..08d9c3e70 --- /dev/null +++ b/src/IconPostOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPostOutlinedFilled as default } diff --git a/src/IconPostRoundedFilled.tsx b/src/IconPostRoundedFilled.tsx new file mode 100644 index 000000000..31f9b6166 --- /dev/null +++ b/src/IconPostRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPostRoundedFilled as default } diff --git a/src/IconPostSharpFilled.tsx b/src/IconPostSharpFilled.tsx new file mode 100644 index 000000000..c066daa80 --- /dev/null +++ b/src/IconPostSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPostSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPostSharpFilled as default } diff --git a/src/IconPottedPlantOutlinedFilled.tsx b/src/IconPottedPlantOutlinedFilled.tsx new file mode 100644 index 000000000..936b5a8f6 --- /dev/null +++ b/src/IconPottedPlantOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPottedPlantOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPottedPlantOutlinedFilled as default } diff --git a/src/IconPottedPlantRoundedFilled.tsx b/src/IconPottedPlantRoundedFilled.tsx new file mode 100644 index 000000000..3cdba56a0 --- /dev/null +++ b/src/IconPottedPlantRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPottedPlantRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPottedPlantRoundedFilled as default } diff --git a/src/IconPottedPlantSharpFilled.tsx b/src/IconPottedPlantSharpFilled.tsx new file mode 100644 index 000000000..e41073cf2 --- /dev/null +++ b/src/IconPottedPlantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPottedPlantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPottedPlantSharpFilled as default } diff --git a/src/IconPowerInputOutlinedFilled.tsx b/src/IconPowerInputOutlinedFilled.tsx new file mode 100644 index 000000000..2d166ed4b --- /dev/null +++ b/src/IconPowerInputOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerInputOutlinedFilled as default } diff --git a/src/IconPowerInputRoundedFilled.tsx b/src/IconPowerInputRoundedFilled.tsx new file mode 100644 index 000000000..bd1b7cc25 --- /dev/null +++ b/src/IconPowerInputRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerInputRoundedFilled as default } diff --git a/src/IconPowerInputSharpFilled.tsx b/src/IconPowerInputSharpFilled.tsx new file mode 100644 index 000000000..72feddde8 --- /dev/null +++ b/src/IconPowerInputSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerInputSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerInputSharpFilled as default } diff --git a/src/IconPowerOffOutlinedFilled.tsx b/src/IconPowerOffOutlinedFilled.tsx new file mode 100644 index 000000000..90f80f86b --- /dev/null +++ b/src/IconPowerOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerOffOutlinedFilled as default } diff --git a/src/IconPowerOffRoundedFilled.tsx b/src/IconPowerOffRoundedFilled.tsx new file mode 100644 index 000000000..51d5dc4ab --- /dev/null +++ b/src/IconPowerOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerOffRoundedFilled as default } diff --git a/src/IconPowerOffSharpFilled.tsx b/src/IconPowerOffSharpFilled.tsx new file mode 100644 index 000000000..70c22e9dc --- /dev/null +++ b/src/IconPowerOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerOffSharpFilled as default } diff --git a/src/IconPowerOutlinedFilled.tsx b/src/IconPowerOutlinedFilled.tsx new file mode 100644 index 000000000..d0a4e6aa4 --- /dev/null +++ b/src/IconPowerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerOutlinedFilled as default } diff --git a/src/IconPowerRoundedFilled.tsx b/src/IconPowerRoundedFilled.tsx new file mode 100644 index 000000000..afb2d1ea3 --- /dev/null +++ b/src/IconPowerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerRoundedFilled as default } diff --git a/src/IconPowerSettingsCircleOutlinedFilled.tsx b/src/IconPowerSettingsCircleOutlinedFilled.tsx new file mode 100644 index 000000000..acf054441 --- /dev/null +++ b/src/IconPowerSettingsCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSettingsCircleOutlinedFilled as default } diff --git a/src/IconPowerSettingsCircleRoundedFilled.tsx b/src/IconPowerSettingsCircleRoundedFilled.tsx new file mode 100644 index 000000000..45336643c --- /dev/null +++ b/src/IconPowerSettingsCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSettingsCircleRoundedFilled as default } diff --git a/src/IconPowerSettingsCircleSharpFilled.tsx b/src/IconPowerSettingsCircleSharpFilled.tsx new file mode 100644 index 000000000..78f9f046d --- /dev/null +++ b/src/IconPowerSettingsCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSettingsCircleSharpFilled as default } diff --git a/src/IconPowerSettingsNewOutlinedFilled.tsx b/src/IconPowerSettingsNewOutlinedFilled.tsx new file mode 100644 index 000000000..cabfed37e --- /dev/null +++ b/src/IconPowerSettingsNewOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSettingsNewOutlinedFilled as default } diff --git a/src/IconPowerSettingsNewRoundedFilled.tsx b/src/IconPowerSettingsNewRoundedFilled.tsx new file mode 100644 index 000000000..4d4216fcf --- /dev/null +++ b/src/IconPowerSettingsNewRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSettingsNewRoundedFilled as default } diff --git a/src/IconPowerSettingsNewSharpFilled.tsx b/src/IconPowerSettingsNewSharpFilled.tsx new file mode 100644 index 000000000..7d80b4d55 --- /dev/null +++ b/src/IconPowerSettingsNewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSettingsNewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSettingsNewSharpFilled as default } diff --git a/src/IconPowerSharpFilled.tsx b/src/IconPowerSharpFilled.tsx new file mode 100644 index 000000000..8cf452440 --- /dev/null +++ b/src/IconPowerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPowerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPowerSharpFilled as default } diff --git a/src/IconPrayerTimesOutlinedFilled.tsx b/src/IconPrayerTimesOutlinedFilled.tsx new file mode 100644 index 000000000..a444a08f4 --- /dev/null +++ b/src/IconPrayerTimesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrayerTimesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrayerTimesOutlinedFilled as default } diff --git a/src/IconPrayerTimesRoundedFilled.tsx b/src/IconPrayerTimesRoundedFilled.tsx new file mode 100644 index 000000000..94a9be44f --- /dev/null +++ b/src/IconPrayerTimesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrayerTimesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrayerTimesRoundedFilled as default } diff --git a/src/IconPrayerTimesSharpFilled.tsx b/src/IconPrayerTimesSharpFilled.tsx new file mode 100644 index 000000000..f8939250a --- /dev/null +++ b/src/IconPrayerTimesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrayerTimesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrayerTimesSharpFilled as default } diff --git a/src/IconPrecisionManufacturingOutlinedFilled.tsx b/src/IconPrecisionManufacturingOutlinedFilled.tsx new file mode 100644 index 000000000..6771cc1fd --- /dev/null +++ b/src/IconPrecisionManufacturingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPrecisionManufacturingOutlinedFilled as default } diff --git a/src/IconPrecisionManufacturingRoundedFilled.tsx b/src/IconPrecisionManufacturingRoundedFilled.tsx new file mode 100644 index 000000000..dd2c48aec --- /dev/null +++ b/src/IconPrecisionManufacturingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPrecisionManufacturingRoundedFilled as default } diff --git a/src/IconPrecisionManufacturingSharpFilled.tsx b/src/IconPrecisionManufacturingSharpFilled.tsx new file mode 100644 index 000000000..21fd87d0a --- /dev/null +++ b/src/IconPrecisionManufacturingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrecisionManufacturingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPrecisionManufacturingSharpFilled as default } diff --git a/src/IconPregnancyOutlinedFilled.tsx b/src/IconPregnancyOutlinedFilled.tsx new file mode 100644 index 000000000..47b5027d2 --- /dev/null +++ b/src/IconPregnancyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnancyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPregnancyOutlinedFilled as default } diff --git a/src/IconPregnancyRoundedFilled.tsx b/src/IconPregnancyRoundedFilled.tsx new file mode 100644 index 000000000..ff3305848 --- /dev/null +++ b/src/IconPregnancyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnancyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPregnancyRoundedFilled as default } diff --git a/src/IconPregnancySharpFilled.tsx b/src/IconPregnancySharpFilled.tsx new file mode 100644 index 000000000..876488da4 --- /dev/null +++ b/src/IconPregnancySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnancySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPregnancySharpFilled as default } diff --git a/src/IconPregnantWomanOutlinedFilled.tsx b/src/IconPregnantWomanOutlinedFilled.tsx new file mode 100644 index 000000000..bbf2c05db --- /dev/null +++ b/src/IconPregnantWomanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPregnantWomanOutlinedFilled as default } diff --git a/src/IconPregnantWomanRoundedFilled.tsx b/src/IconPregnantWomanRoundedFilled.tsx new file mode 100644 index 000000000..8f69d4ba4 --- /dev/null +++ b/src/IconPregnantWomanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPregnantWomanRoundedFilled as default } diff --git a/src/IconPregnantWomanSharpFilled.tsx b/src/IconPregnantWomanSharpFilled.tsx new file mode 100644 index 000000000..9f17beac6 --- /dev/null +++ b/src/IconPregnantWomanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPregnantWomanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPregnantWomanSharpFilled as default } diff --git a/src/IconPreliminaryOutlinedFilled.tsx b/src/IconPreliminaryOutlinedFilled.tsx new file mode 100644 index 000000000..f0758d414 --- /dev/null +++ b/src/IconPreliminaryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreliminaryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreliminaryOutlinedFilled as default } diff --git a/src/IconPreliminaryRoundedFilled.tsx b/src/IconPreliminaryRoundedFilled.tsx new file mode 100644 index 000000000..4aa3d7058 --- /dev/null +++ b/src/IconPreliminaryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreliminaryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreliminaryRoundedFilled as default } diff --git a/src/IconPreliminarySharpFilled.tsx b/src/IconPreliminarySharpFilled.tsx new file mode 100644 index 000000000..27ad207f3 --- /dev/null +++ b/src/IconPreliminarySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreliminarySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreliminarySharpFilled as default } diff --git a/src/IconPrescriptionsOutlinedFilled.tsx b/src/IconPrescriptionsOutlinedFilled.tsx new file mode 100644 index 000000000..4ed4f3297 --- /dev/null +++ b/src/IconPrescriptionsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrescriptionsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrescriptionsOutlinedFilled as default } diff --git a/src/IconPrescriptionsRoundedFilled.tsx b/src/IconPrescriptionsRoundedFilled.tsx new file mode 100644 index 000000000..680e83dbb --- /dev/null +++ b/src/IconPrescriptionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrescriptionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrescriptionsRoundedFilled as default } diff --git a/src/IconPrescriptionsSharpFilled.tsx b/src/IconPrescriptionsSharpFilled.tsx new file mode 100644 index 000000000..faf8d1bf3 --- /dev/null +++ b/src/IconPrescriptionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrescriptionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrescriptionsSharpFilled as default } diff --git a/src/IconPresentToAllOutlinedFilled.tsx b/src/IconPresentToAllOutlinedFilled.tsx new file mode 100644 index 000000000..7ba481080 --- /dev/null +++ b/src/IconPresentToAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPresentToAllOutlinedFilled as default } diff --git a/src/IconPresentToAllRoundedFilled.tsx b/src/IconPresentToAllRoundedFilled.tsx new file mode 100644 index 000000000..abc7cc41c --- /dev/null +++ b/src/IconPresentToAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPresentToAllRoundedFilled as default } diff --git a/src/IconPresentToAllSharpFilled.tsx b/src/IconPresentToAllSharpFilled.tsx new file mode 100644 index 000000000..5728ab07b --- /dev/null +++ b/src/IconPresentToAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPresentToAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPresentToAllSharpFilled as default } diff --git a/src/IconPreviewOffOutlinedFilled.tsx b/src/IconPreviewOffOutlinedFilled.tsx new file mode 100644 index 000000000..42ef976da --- /dev/null +++ b/src/IconPreviewOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreviewOffOutlinedFilled as default } diff --git a/src/IconPreviewOffRoundedFilled.tsx b/src/IconPreviewOffRoundedFilled.tsx new file mode 100644 index 000000000..13abf0b5a --- /dev/null +++ b/src/IconPreviewOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreviewOffRoundedFilled as default } diff --git a/src/IconPreviewOffSharpFilled.tsx b/src/IconPreviewOffSharpFilled.tsx new file mode 100644 index 000000000..220480a1c --- /dev/null +++ b/src/IconPreviewOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreviewOffSharpFilled as default } diff --git a/src/IconPreviewOutlinedFilled.tsx b/src/IconPreviewOutlinedFilled.tsx new file mode 100644 index 000000000..aa9e2130b --- /dev/null +++ b/src/IconPreviewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreviewOutlinedFilled as default } diff --git a/src/IconPreviewRoundedFilled.tsx b/src/IconPreviewRoundedFilled.tsx new file mode 100644 index 000000000..1df60cb63 --- /dev/null +++ b/src/IconPreviewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreviewRoundedFilled as default } diff --git a/src/IconPreviewSharpFilled.tsx b/src/IconPreviewSharpFilled.tsx new file mode 100644 index 000000000..b3febfb99 --- /dev/null +++ b/src/IconPreviewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPreviewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPreviewSharpFilled as default } diff --git a/src/IconPriceChangeOutlinedFilled.tsx b/src/IconPriceChangeOutlinedFilled.tsx new file mode 100644 index 000000000..02ae9b17a --- /dev/null +++ b/src/IconPriceChangeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriceChangeOutlinedFilled as default } diff --git a/src/IconPriceChangeRoundedFilled.tsx b/src/IconPriceChangeRoundedFilled.tsx new file mode 100644 index 000000000..cf188ba51 --- /dev/null +++ b/src/IconPriceChangeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriceChangeRoundedFilled as default } diff --git a/src/IconPriceChangeSharpFilled.tsx b/src/IconPriceChangeSharpFilled.tsx new file mode 100644 index 000000000..ae0ff349a --- /dev/null +++ b/src/IconPriceChangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceChangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriceChangeSharpFilled as default } diff --git a/src/IconPriceCheckOutlinedFilled.tsx b/src/IconPriceCheckOutlinedFilled.tsx new file mode 100644 index 000000000..5dc8a5fcb --- /dev/null +++ b/src/IconPriceCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriceCheckOutlinedFilled as default } diff --git a/src/IconPriceCheckRoundedFilled.tsx b/src/IconPriceCheckRoundedFilled.tsx new file mode 100644 index 000000000..7fafa33f2 --- /dev/null +++ b/src/IconPriceCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriceCheckRoundedFilled as default } diff --git a/src/IconPriceCheckSharpFilled.tsx b/src/IconPriceCheckSharpFilled.tsx new file mode 100644 index 000000000..0d942aa87 --- /dev/null +++ b/src/IconPriceCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriceCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriceCheckSharpFilled as default } diff --git a/src/IconPrintAddOutlinedFilled.tsx b/src/IconPrintAddOutlinedFilled.tsx new file mode 100644 index 000000000..264e2b6f7 --- /dev/null +++ b/src/IconPrintAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintAddOutlinedFilled as default } diff --git a/src/IconPrintAddRoundedFilled.tsx b/src/IconPrintAddRoundedFilled.tsx new file mode 100644 index 000000000..eda6d4761 --- /dev/null +++ b/src/IconPrintAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintAddRoundedFilled as default } diff --git a/src/IconPrintAddSharpFilled.tsx b/src/IconPrintAddSharpFilled.tsx new file mode 100644 index 000000000..a104b211d --- /dev/null +++ b/src/IconPrintAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintAddSharpFilled as default } diff --git a/src/IconPrintConnectOutlinedFilled.tsx b/src/IconPrintConnectOutlinedFilled.tsx new file mode 100644 index 000000000..6b15ef461 --- /dev/null +++ b/src/IconPrintConnectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintConnectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintConnectOutlinedFilled as default } diff --git a/src/IconPrintConnectRoundedFilled.tsx b/src/IconPrintConnectRoundedFilled.tsx new file mode 100644 index 000000000..e5d01c579 --- /dev/null +++ b/src/IconPrintConnectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintConnectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintConnectRoundedFilled as default } diff --git a/src/IconPrintConnectSharpFilled.tsx b/src/IconPrintConnectSharpFilled.tsx new file mode 100644 index 000000000..70544f07a --- /dev/null +++ b/src/IconPrintConnectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintConnectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintConnectSharpFilled as default } diff --git a/src/IconPrintDisabledOutlinedFilled.tsx b/src/IconPrintDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..7f14ac077 --- /dev/null +++ b/src/IconPrintDisabledOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintDisabledOutlinedFilled as default } diff --git a/src/IconPrintDisabledRoundedFilled.tsx b/src/IconPrintDisabledRoundedFilled.tsx new file mode 100644 index 000000000..1e0964de2 --- /dev/null +++ b/src/IconPrintDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintDisabledRoundedFilled as default } diff --git a/src/IconPrintDisabledSharpFilled.tsx b/src/IconPrintDisabledSharpFilled.tsx new file mode 100644 index 000000000..fcc607a05 --- /dev/null +++ b/src/IconPrintDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintDisabledSharpFilled as default } diff --git a/src/IconPrintErrorOutlinedFilled.tsx b/src/IconPrintErrorOutlinedFilled.tsx new file mode 100644 index 000000000..d7ca6de41 --- /dev/null +++ b/src/IconPrintErrorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintErrorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintErrorOutlinedFilled as default } diff --git a/src/IconPrintErrorRoundedFilled.tsx b/src/IconPrintErrorRoundedFilled.tsx new file mode 100644 index 000000000..1386666cb --- /dev/null +++ b/src/IconPrintErrorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintErrorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintErrorRoundedFilled as default } diff --git a/src/IconPrintErrorSharpFilled.tsx b/src/IconPrintErrorSharpFilled.tsx new file mode 100644 index 000000000..fad18648f --- /dev/null +++ b/src/IconPrintErrorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintErrorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintErrorSharpFilled as default } diff --git a/src/IconPrintLockOutlinedFilled.tsx b/src/IconPrintLockOutlinedFilled.tsx new file mode 100644 index 000000000..68e12081c --- /dev/null +++ b/src/IconPrintLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintLockOutlinedFilled as default } diff --git a/src/IconPrintLockRoundedFilled.tsx b/src/IconPrintLockRoundedFilled.tsx new file mode 100644 index 000000000..b95fdc7dc --- /dev/null +++ b/src/IconPrintLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintLockRoundedFilled as default } diff --git a/src/IconPrintLockSharpFilled.tsx b/src/IconPrintLockSharpFilled.tsx new file mode 100644 index 000000000..038ec6f5e --- /dev/null +++ b/src/IconPrintLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintLockSharpFilled as default } diff --git a/src/IconPrintOutlinedFilled.tsx b/src/IconPrintOutlinedFilled.tsx new file mode 100644 index 000000000..908297448 --- /dev/null +++ b/src/IconPrintOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintOutlinedFilled as default } diff --git a/src/IconPrintRoundedFilled.tsx b/src/IconPrintRoundedFilled.tsx new file mode 100644 index 000000000..04275422b --- /dev/null +++ b/src/IconPrintRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintRoundedFilled as default } diff --git a/src/IconPrintSharpFilled.tsx b/src/IconPrintSharpFilled.tsx new file mode 100644 index 000000000..0a8dbc0fd --- /dev/null +++ b/src/IconPrintSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrintSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrintSharpFilled as default } diff --git a/src/IconPriorityHighOutlinedFilled.tsx b/src/IconPriorityHighOutlinedFilled.tsx new file mode 100644 index 000000000..63ef66145 --- /dev/null +++ b/src/IconPriorityHighOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriorityHighOutlinedFilled as default } diff --git a/src/IconPriorityHighRoundedFilled.tsx b/src/IconPriorityHighRoundedFilled.tsx new file mode 100644 index 000000000..b637a437e --- /dev/null +++ b/src/IconPriorityHighRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriorityHighRoundedFilled as default } diff --git a/src/IconPriorityHighSharpFilled.tsx b/src/IconPriorityHighSharpFilled.tsx new file mode 100644 index 000000000..d8ecfd1a8 --- /dev/null +++ b/src/IconPriorityHighSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityHighSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriorityHighSharpFilled as default } diff --git a/src/IconPriorityOutlinedFilled.tsx b/src/IconPriorityOutlinedFilled.tsx new file mode 100644 index 000000000..5e692a65d --- /dev/null +++ b/src/IconPriorityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriorityOutlinedFilled as default } diff --git a/src/IconPriorityRoundedFilled.tsx b/src/IconPriorityRoundedFilled.tsx new file mode 100644 index 000000000..ec2c8c2f2 --- /dev/null +++ b/src/IconPriorityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPriorityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPriorityRoundedFilled as default } diff --git a/src/IconPrioritySharpFilled.tsx b/src/IconPrioritySharpFilled.tsx new file mode 100644 index 000000000..f850410d2 --- /dev/null +++ b/src/IconPrioritySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrioritySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrioritySharpFilled as default } diff --git a/src/IconPrivacyOutlinedFilled.tsx b/src/IconPrivacyOutlinedFilled.tsx new file mode 100644 index 000000000..28e1050aa --- /dev/null +++ b/src/IconPrivacyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivacyOutlinedFilled as default } diff --git a/src/IconPrivacyRoundedFilled.tsx b/src/IconPrivacyRoundedFilled.tsx new file mode 100644 index 000000000..f3986aa59 --- /dev/null +++ b/src/IconPrivacyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivacyRoundedFilled as default } diff --git a/src/IconPrivacySharpFilled.tsx b/src/IconPrivacySharpFilled.tsx new file mode 100644 index 000000000..75c38851e --- /dev/null +++ b/src/IconPrivacySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivacySharpFilled as default } diff --git a/src/IconPrivacyTipOutlinedFilled.tsx b/src/IconPrivacyTipOutlinedFilled.tsx new file mode 100644 index 000000000..95e50850b --- /dev/null +++ b/src/IconPrivacyTipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivacyTipOutlinedFilled as default } diff --git a/src/IconPrivacyTipRoundedFilled.tsx b/src/IconPrivacyTipRoundedFilled.tsx new file mode 100644 index 000000000..2aff609a7 --- /dev/null +++ b/src/IconPrivacyTipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivacyTipRoundedFilled as default } diff --git a/src/IconPrivacyTipSharpFilled.tsx b/src/IconPrivacyTipSharpFilled.tsx new file mode 100644 index 000000000..6de9da45e --- /dev/null +++ b/src/IconPrivacyTipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivacyTipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivacyTipSharpFilled as default } diff --git a/src/IconPrivateConnectivityOutlinedFilled.tsx b/src/IconPrivateConnectivityOutlinedFilled.tsx new file mode 100644 index 000000000..2b518e283 --- /dev/null +++ b/src/IconPrivateConnectivityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivateConnectivityOutlinedFilled as default } diff --git a/src/IconPrivateConnectivityRoundedFilled.tsx b/src/IconPrivateConnectivityRoundedFilled.tsx new file mode 100644 index 000000000..9149144e5 --- /dev/null +++ b/src/IconPrivateConnectivityRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivityRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivateConnectivityRoundedFilled as default } diff --git a/src/IconPrivateConnectivitySharpFilled.tsx b/src/IconPrivateConnectivitySharpFilled.tsx new file mode 100644 index 000000000..8aa446ff9 --- /dev/null +++ b/src/IconPrivateConnectivitySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPrivateConnectivitySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPrivateConnectivitySharpFilled as default } diff --git a/src/IconProblemOutlinedFilled.tsx b/src/IconProblemOutlinedFilled.tsx new file mode 100644 index 000000000..ca4b8c8df --- /dev/null +++ b/src/IconProblemOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProblemOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProblemOutlinedFilled as default } diff --git a/src/IconProblemRoundedFilled.tsx b/src/IconProblemRoundedFilled.tsx new file mode 100644 index 000000000..036eea4d5 --- /dev/null +++ b/src/IconProblemRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProblemRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProblemRoundedFilled as default } diff --git a/src/IconProblemSharpFilled.tsx b/src/IconProblemSharpFilled.tsx new file mode 100644 index 000000000..aaa6d8db9 --- /dev/null +++ b/src/IconProblemSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProblemSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProblemSharpFilled as default } diff --git a/src/IconProcedureOutlinedFilled.tsx b/src/IconProcedureOutlinedFilled.tsx new file mode 100644 index 000000000..4a97ecfca --- /dev/null +++ b/src/IconProcedureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProcedureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProcedureOutlinedFilled as default } diff --git a/src/IconProcedureRoundedFilled.tsx b/src/IconProcedureRoundedFilled.tsx new file mode 100644 index 000000000..a76e266a8 --- /dev/null +++ b/src/IconProcedureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProcedureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProcedureRoundedFilled as default } diff --git a/src/IconProcedureSharpFilled.tsx b/src/IconProcedureSharpFilled.tsx new file mode 100644 index 000000000..2bdd262f1 --- /dev/null +++ b/src/IconProcedureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProcedureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProcedureSharpFilled as default } diff --git a/src/IconProcessChartOutlinedFilled.tsx b/src/IconProcessChartOutlinedFilled.tsx new file mode 100644 index 000000000..effbea18d --- /dev/null +++ b/src/IconProcessChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProcessChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProcessChartOutlinedFilled as default } diff --git a/src/IconProcessChartRoundedFilled.tsx b/src/IconProcessChartRoundedFilled.tsx new file mode 100644 index 000000000..db0dc380b --- /dev/null +++ b/src/IconProcessChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProcessChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProcessChartRoundedFilled as default } diff --git a/src/IconProcessChartSharpFilled.tsx b/src/IconProcessChartSharpFilled.tsx new file mode 100644 index 000000000..7bac165da --- /dev/null +++ b/src/IconProcessChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProcessChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProcessChartSharpFilled as default } diff --git a/src/IconProductionQuantityLimitsOutlinedFilled.tsx b/src/IconProductionQuantityLimitsOutlinedFilled.tsx new file mode 100644 index 000000000..77e7b9879 --- /dev/null +++ b/src/IconProductionQuantityLimitsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconProductionQuantityLimitsOutlinedFilled as default } diff --git a/src/IconProductionQuantityLimitsRoundedFilled.tsx b/src/IconProductionQuantityLimitsRoundedFilled.tsx new file mode 100644 index 000000000..a56b9a1ca --- /dev/null +++ b/src/IconProductionQuantityLimitsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconProductionQuantityLimitsRoundedFilled as default } diff --git a/src/IconProductionQuantityLimitsSharpFilled.tsx b/src/IconProductionQuantityLimitsSharpFilled.tsx new file mode 100644 index 000000000..d6ece8202 --- /dev/null +++ b/src/IconProductionQuantityLimitsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductionQuantityLimitsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconProductionQuantityLimitsSharpFilled as default } diff --git a/src/IconProductivityOutlinedFilled.tsx b/src/IconProductivityOutlinedFilled.tsx new file mode 100644 index 000000000..79e436fe5 --- /dev/null +++ b/src/IconProductivityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductivityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProductivityOutlinedFilled as default } diff --git a/src/IconProductivityRoundedFilled.tsx b/src/IconProductivityRoundedFilled.tsx new file mode 100644 index 000000000..5b0efba4e --- /dev/null +++ b/src/IconProductivityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductivityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProductivityRoundedFilled as default } diff --git a/src/IconProductivitySharpFilled.tsx b/src/IconProductivitySharpFilled.tsx new file mode 100644 index 000000000..64949cd2a --- /dev/null +++ b/src/IconProductivitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProductivitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProductivitySharpFilled as default } diff --git a/src/IconProgressActivityOutlinedFilled.tsx b/src/IconProgressActivityOutlinedFilled.tsx new file mode 100644 index 000000000..fe0f6aa47 --- /dev/null +++ b/src/IconProgressActivityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProgressActivityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconProgressActivityOutlinedFilled as default } diff --git a/src/IconProgressActivityRoundedFilled.tsx b/src/IconProgressActivityRoundedFilled.tsx new file mode 100644 index 000000000..391d25c76 --- /dev/null +++ b/src/IconProgressActivityRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProgressActivityRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconProgressActivityRoundedFilled as default } diff --git a/src/IconProgressActivitySharpFilled.tsx b/src/IconProgressActivitySharpFilled.tsx new file mode 100644 index 000000000..e105080c4 --- /dev/null +++ b/src/IconProgressActivitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconProgressActivitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconProgressActivitySharpFilled as default } diff --git a/src/IconPromptSuggestionOutlinedFilled.tsx b/src/IconPromptSuggestionOutlinedFilled.tsx new file mode 100644 index 000000000..d43e29cc1 --- /dev/null +++ b/src/IconPromptSuggestionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPromptSuggestionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPromptSuggestionOutlinedFilled as default } diff --git a/src/IconPromptSuggestionRoundedFilled.tsx b/src/IconPromptSuggestionRoundedFilled.tsx new file mode 100644 index 000000000..d7a366f30 --- /dev/null +++ b/src/IconPromptSuggestionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPromptSuggestionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPromptSuggestionRoundedFilled as default } diff --git a/src/IconPromptSuggestionSharpFilled.tsx b/src/IconPromptSuggestionSharpFilled.tsx new file mode 100644 index 000000000..3d29eaee1 --- /dev/null +++ b/src/IconPromptSuggestionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPromptSuggestionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPromptSuggestionSharpFilled as default } diff --git a/src/IconPropaneOutlinedFilled.tsx b/src/IconPropaneOutlinedFilled.tsx new file mode 100644 index 000000000..c9218705d --- /dev/null +++ b/src/IconPropaneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPropaneOutlinedFilled as default } diff --git a/src/IconPropaneRoundedFilled.tsx b/src/IconPropaneRoundedFilled.tsx new file mode 100644 index 000000000..43482e502 --- /dev/null +++ b/src/IconPropaneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPropaneRoundedFilled as default } diff --git a/src/IconPropaneSharpFilled.tsx b/src/IconPropaneSharpFilled.tsx new file mode 100644 index 000000000..f5a202085 --- /dev/null +++ b/src/IconPropaneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPropaneSharpFilled as default } diff --git a/src/IconPropaneTankOutlinedFilled.tsx b/src/IconPropaneTankOutlinedFilled.tsx new file mode 100644 index 000000000..abc3f12af --- /dev/null +++ b/src/IconPropaneTankOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPropaneTankOutlinedFilled as default } diff --git a/src/IconPropaneTankRoundedFilled.tsx b/src/IconPropaneTankRoundedFilled.tsx new file mode 100644 index 000000000..1b819be1d --- /dev/null +++ b/src/IconPropaneTankRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPropaneTankRoundedFilled as default } diff --git a/src/IconPropaneTankSharpFilled.tsx b/src/IconPropaneTankSharpFilled.tsx new file mode 100644 index 000000000..12fc99505 --- /dev/null +++ b/src/IconPropaneTankSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPropaneTankSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPropaneTankSharpFilled as default } diff --git a/src/IconPsychiatryOutlinedFilled.tsx b/src/IconPsychiatryOutlinedFilled.tsx new file mode 100644 index 000000000..129e53de0 --- /dev/null +++ b/src/IconPsychiatryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychiatryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychiatryOutlinedFilled as default } diff --git a/src/IconPsychiatryRoundedFilled.tsx b/src/IconPsychiatryRoundedFilled.tsx new file mode 100644 index 000000000..86343a100 --- /dev/null +++ b/src/IconPsychiatryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychiatryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychiatryRoundedFilled as default } diff --git a/src/IconPsychiatrySharpFilled.tsx b/src/IconPsychiatrySharpFilled.tsx new file mode 100644 index 000000000..7dbb6a3d7 --- /dev/null +++ b/src/IconPsychiatrySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychiatrySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychiatrySharpFilled as default } diff --git a/src/IconPsychologyAltOutlinedFilled.tsx b/src/IconPsychologyAltOutlinedFilled.tsx new file mode 100644 index 000000000..7c5150634 --- /dev/null +++ b/src/IconPsychologyAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychologyAltOutlinedFilled as default } diff --git a/src/IconPsychologyAltRoundedFilled.tsx b/src/IconPsychologyAltRoundedFilled.tsx new file mode 100644 index 000000000..08a822d64 --- /dev/null +++ b/src/IconPsychologyAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychologyAltRoundedFilled as default } diff --git a/src/IconPsychologyAltSharpFilled.tsx b/src/IconPsychologyAltSharpFilled.tsx new file mode 100644 index 000000000..599f0eb00 --- /dev/null +++ b/src/IconPsychologyAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychologyAltSharpFilled as default } diff --git a/src/IconPsychologyOutlinedFilled.tsx b/src/IconPsychologyOutlinedFilled.tsx new file mode 100644 index 000000000..cf2f9fa8f --- /dev/null +++ b/src/IconPsychologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychologyOutlinedFilled as default } diff --git a/src/IconPsychologyRoundedFilled.tsx b/src/IconPsychologyRoundedFilled.tsx new file mode 100644 index 000000000..4313ebcad --- /dev/null +++ b/src/IconPsychologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychologyRoundedFilled as default } diff --git a/src/IconPsychologySharpFilled.tsx b/src/IconPsychologySharpFilled.tsx new file mode 100644 index 000000000..46f1d145f --- /dev/null +++ b/src/IconPsychologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPsychologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPsychologySharpFilled as default } diff --git a/src/IconPublicOffOutlinedFilled.tsx b/src/IconPublicOffOutlinedFilled.tsx new file mode 100644 index 000000000..6af27311c --- /dev/null +++ b/src/IconPublicOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublicOffOutlinedFilled as default } diff --git a/src/IconPublicOffRoundedFilled.tsx b/src/IconPublicOffRoundedFilled.tsx new file mode 100644 index 000000000..f96e2d6cb --- /dev/null +++ b/src/IconPublicOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublicOffRoundedFilled as default } diff --git a/src/IconPublicOffSharpFilled.tsx b/src/IconPublicOffSharpFilled.tsx new file mode 100644 index 000000000..980b73226 --- /dev/null +++ b/src/IconPublicOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublicOffSharpFilled as default } diff --git a/src/IconPublicOutlinedFilled.tsx b/src/IconPublicOutlinedFilled.tsx new file mode 100644 index 000000000..a5ee4d26f --- /dev/null +++ b/src/IconPublicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublicOutlinedFilled as default } diff --git a/src/IconPublicRoundedFilled.tsx b/src/IconPublicRoundedFilled.tsx new file mode 100644 index 000000000..a296f2907 --- /dev/null +++ b/src/IconPublicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublicRoundedFilled as default } diff --git a/src/IconPublicSharpFilled.tsx b/src/IconPublicSharpFilled.tsx new file mode 100644 index 000000000..c71ba4955 --- /dev/null +++ b/src/IconPublicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublicSharpFilled as default } diff --git a/src/IconPublishOutlinedFilled.tsx b/src/IconPublishOutlinedFilled.tsx new file mode 100644 index 000000000..224a483e3 --- /dev/null +++ b/src/IconPublishOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishOutlinedFilled as default } diff --git a/src/IconPublishRoundedFilled.tsx b/src/IconPublishRoundedFilled.tsx new file mode 100644 index 000000000..fe129bde5 --- /dev/null +++ b/src/IconPublishRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishRoundedFilled as default } diff --git a/src/IconPublishSharpFilled.tsx b/src/IconPublishSharpFilled.tsx new file mode 100644 index 000000000..62952371c --- /dev/null +++ b/src/IconPublishSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishSharpFilled as default } diff --git a/src/IconPublishedWithChangesOutlinedFilled.tsx b/src/IconPublishedWithChangesOutlinedFilled.tsx new file mode 100644 index 000000000..dc9fd14fd --- /dev/null +++ b/src/IconPublishedWithChangesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishedWithChangesOutlinedFilled as default } diff --git a/src/IconPublishedWithChangesRoundedFilled.tsx b/src/IconPublishedWithChangesRoundedFilled.tsx new file mode 100644 index 000000000..f01322503 --- /dev/null +++ b/src/IconPublishedWithChangesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishedWithChangesRoundedFilled as default } diff --git a/src/IconPublishedWithChangesSharpFilled.tsx b/src/IconPublishedWithChangesSharpFilled.tsx new file mode 100644 index 000000000..fd61e8f10 --- /dev/null +++ b/src/IconPublishedWithChangesSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPublishedWithChangesSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconPublishedWithChangesSharpFilled as default } diff --git a/src/IconPulmonologyOutlinedFilled.tsx b/src/IconPulmonologyOutlinedFilled.tsx new file mode 100644 index 000000000..015c42cea --- /dev/null +++ b/src/IconPulmonologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPulmonologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPulmonologyOutlinedFilled as default } diff --git a/src/IconPulmonologyRoundedFilled.tsx b/src/IconPulmonologyRoundedFilled.tsx new file mode 100644 index 000000000..1fe1fb26a --- /dev/null +++ b/src/IconPulmonologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPulmonologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPulmonologyRoundedFilled as default } diff --git a/src/IconPulmonologySharpFilled.tsx b/src/IconPulmonologySharpFilled.tsx new file mode 100644 index 000000000..c870ea770 --- /dev/null +++ b/src/IconPulmonologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPulmonologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPulmonologySharpFilled as default } diff --git a/src/IconPulseAlertOutlinedFilled.tsx b/src/IconPulseAlertOutlinedFilled.tsx new file mode 100644 index 000000000..0c5f343d8 --- /dev/null +++ b/src/IconPulseAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPulseAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPulseAlertOutlinedFilled as default } diff --git a/src/IconPulseAlertRoundedFilled.tsx b/src/IconPulseAlertRoundedFilled.tsx new file mode 100644 index 000000000..040cc8fc0 --- /dev/null +++ b/src/IconPulseAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPulseAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPulseAlertRoundedFilled as default } diff --git a/src/IconPulseAlertSharpFilled.tsx b/src/IconPulseAlertSharpFilled.tsx new file mode 100644 index 000000000..9a187c36d --- /dev/null +++ b/src/IconPulseAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPulseAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPulseAlertSharpFilled as default } diff --git a/src/IconPunchClockOutlinedFilled.tsx b/src/IconPunchClockOutlinedFilled.tsx new file mode 100644 index 000000000..e5cf39620 --- /dev/null +++ b/src/IconPunchClockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPunchClockOutlinedFilled as default } diff --git a/src/IconPunchClockRoundedFilled.tsx b/src/IconPunchClockRoundedFilled.tsx new file mode 100644 index 000000000..3296fd784 --- /dev/null +++ b/src/IconPunchClockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPunchClockRoundedFilled as default } diff --git a/src/IconPunchClockSharpFilled.tsx b/src/IconPunchClockSharpFilled.tsx new file mode 100644 index 000000000..0bc875594 --- /dev/null +++ b/src/IconPunchClockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconPunchClockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconPunchClockSharpFilled as default } diff --git a/src/IconQrCode2AddOutlinedFilled.tsx b/src/IconQrCode2AddOutlinedFilled.tsx new file mode 100644 index 000000000..9aa0a2c4f --- /dev/null +++ b/src/IconQrCode2AddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2AddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCode2AddOutlinedFilled as default } diff --git a/src/IconQrCode2AddRoundedFilled.tsx b/src/IconQrCode2AddRoundedFilled.tsx new file mode 100644 index 000000000..89985686e --- /dev/null +++ b/src/IconQrCode2AddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2AddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCode2AddRoundedFilled as default } diff --git a/src/IconQrCode2AddSharpFilled.tsx b/src/IconQrCode2AddSharpFilled.tsx new file mode 100644 index 000000000..3735cd0c9 --- /dev/null +++ b/src/IconQrCode2AddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2AddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCode2AddSharpFilled as default } diff --git a/src/IconQrCode2OutlinedFilled.tsx b/src/IconQrCode2OutlinedFilled.tsx new file mode 100644 index 000000000..d470d2a16 --- /dev/null +++ b/src/IconQrCode2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCode2OutlinedFilled as default } diff --git a/src/IconQrCode2RoundedFilled.tsx b/src/IconQrCode2RoundedFilled.tsx new file mode 100644 index 000000000..235e48ee2 --- /dev/null +++ b/src/IconQrCode2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCode2RoundedFilled as default } diff --git a/src/IconQrCode2SharpFilled.tsx b/src/IconQrCode2SharpFilled.tsx new file mode 100644 index 000000000..3502e4746 --- /dev/null +++ b/src/IconQrCode2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCode2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCode2SharpFilled as default } diff --git a/src/IconQrCodeOutlinedFilled.tsx b/src/IconQrCodeOutlinedFilled.tsx new file mode 100644 index 000000000..d6644ccdc --- /dev/null +++ b/src/IconQrCodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCodeOutlinedFilled as default } diff --git a/src/IconQrCodeRoundedFilled.tsx b/src/IconQrCodeRoundedFilled.tsx new file mode 100644 index 000000000..1c55d1cfb --- /dev/null +++ b/src/IconQrCodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCodeRoundedFilled as default } diff --git a/src/IconQrCodeScannerOutlinedFilled.tsx b/src/IconQrCodeScannerOutlinedFilled.tsx new file mode 100644 index 000000000..d41ce5402 --- /dev/null +++ b/src/IconQrCodeScannerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCodeScannerOutlinedFilled as default } diff --git a/src/IconQrCodeScannerRoundedFilled.tsx b/src/IconQrCodeScannerRoundedFilled.tsx new file mode 100644 index 000000000..20f970b57 --- /dev/null +++ b/src/IconQrCodeScannerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCodeScannerRoundedFilled as default } diff --git a/src/IconQrCodeScannerSharpFilled.tsx b/src/IconQrCodeScannerSharpFilled.tsx new file mode 100644 index 000000000..f621f0673 --- /dev/null +++ b/src/IconQrCodeScannerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeScannerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCodeScannerSharpFilled as default } diff --git a/src/IconQrCodeSharpFilled.tsx b/src/IconQrCodeSharpFilled.tsx new file mode 100644 index 000000000..a775d2015 --- /dev/null +++ b/src/IconQrCodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQrCodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQrCodeSharpFilled as default } diff --git a/src/IconQueryStatsOutlinedFilled.tsx b/src/IconQueryStatsOutlinedFilled.tsx new file mode 100644 index 000000000..2460e0567 --- /dev/null +++ b/src/IconQueryStatsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueryStatsOutlinedFilled as default } diff --git a/src/IconQueryStatsRoundedFilled.tsx b/src/IconQueryStatsRoundedFilled.tsx new file mode 100644 index 000000000..72799de3f --- /dev/null +++ b/src/IconQueryStatsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueryStatsRoundedFilled as default } diff --git a/src/IconQueryStatsSharpFilled.tsx b/src/IconQueryStatsSharpFilled.tsx new file mode 100644 index 000000000..c3430ce1e --- /dev/null +++ b/src/IconQueryStatsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueryStatsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueryStatsSharpFilled as default } diff --git a/src/IconQuestionExchangeOutlinedFilled.tsx b/src/IconQuestionExchangeOutlinedFilled.tsx new file mode 100644 index 000000000..46f543f67 --- /dev/null +++ b/src/IconQuestionExchangeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionExchangeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconQuestionExchangeOutlinedFilled as default } diff --git a/src/IconQuestionExchangeRoundedFilled.tsx b/src/IconQuestionExchangeRoundedFilled.tsx new file mode 100644 index 000000000..666de2590 --- /dev/null +++ b/src/IconQuestionExchangeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionExchangeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconQuestionExchangeRoundedFilled as default } diff --git a/src/IconQuestionExchangeSharpFilled.tsx b/src/IconQuestionExchangeSharpFilled.tsx new file mode 100644 index 000000000..2160e5bc6 --- /dev/null +++ b/src/IconQuestionExchangeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionExchangeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuestionExchangeSharpFilled as default } diff --git a/src/IconQuestionMarkOutlinedFilled.tsx b/src/IconQuestionMarkOutlinedFilled.tsx new file mode 100644 index 000000000..180528ad3 --- /dev/null +++ b/src/IconQuestionMarkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuestionMarkOutlinedFilled as default } diff --git a/src/IconQuestionMarkRoundedFilled.tsx b/src/IconQuestionMarkRoundedFilled.tsx new file mode 100644 index 000000000..35e58a727 --- /dev/null +++ b/src/IconQuestionMarkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuestionMarkRoundedFilled as default } diff --git a/src/IconQuestionMarkSharpFilled.tsx b/src/IconQuestionMarkSharpFilled.tsx new file mode 100644 index 000000000..675d07ef8 --- /dev/null +++ b/src/IconQuestionMarkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuestionMarkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuestionMarkSharpFilled as default } diff --git a/src/IconQueueMusicOutlinedFilled.tsx b/src/IconQueueMusicOutlinedFilled.tsx new file mode 100644 index 000000000..0689b5296 --- /dev/null +++ b/src/IconQueueMusicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueueMusicOutlinedFilled as default } diff --git a/src/IconQueueMusicRoundedFilled.tsx b/src/IconQueueMusicRoundedFilled.tsx new file mode 100644 index 000000000..03b7678aa --- /dev/null +++ b/src/IconQueueMusicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueueMusicRoundedFilled as default } diff --git a/src/IconQueueMusicSharpFilled.tsx b/src/IconQueueMusicSharpFilled.tsx new file mode 100644 index 000000000..2cb9e0f5d --- /dev/null +++ b/src/IconQueueMusicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueueMusicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueueMusicSharpFilled as default } diff --git a/src/IconQueuePlayNextOutlinedFilled.tsx b/src/IconQueuePlayNextOutlinedFilled.tsx new file mode 100644 index 000000000..ced4f8926 --- /dev/null +++ b/src/IconQueuePlayNextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueuePlayNextOutlinedFilled as default } diff --git a/src/IconQueuePlayNextRoundedFilled.tsx b/src/IconQueuePlayNextRoundedFilled.tsx new file mode 100644 index 000000000..ef233e63f --- /dev/null +++ b/src/IconQueuePlayNextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueuePlayNextRoundedFilled as default } diff --git a/src/IconQueuePlayNextSharpFilled.tsx b/src/IconQueuePlayNextSharpFilled.tsx new file mode 100644 index 000000000..595bbcb1d --- /dev/null +++ b/src/IconQueuePlayNextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQueuePlayNextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQueuePlayNextSharpFilled as default } diff --git a/src/IconQuickPhrasesOutlinedFilled.tsx b/src/IconQuickPhrasesOutlinedFilled.tsx new file mode 100644 index 000000000..5cbd8ac9e --- /dev/null +++ b/src/IconQuickPhrasesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickPhrasesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickPhrasesOutlinedFilled as default } diff --git a/src/IconQuickPhrasesRoundedFilled.tsx b/src/IconQuickPhrasesRoundedFilled.tsx new file mode 100644 index 000000000..0cc63f2a2 --- /dev/null +++ b/src/IconQuickPhrasesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickPhrasesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickPhrasesRoundedFilled as default } diff --git a/src/IconQuickPhrasesSharpFilled.tsx b/src/IconQuickPhrasesSharpFilled.tsx new file mode 100644 index 000000000..c09441418 --- /dev/null +++ b/src/IconQuickPhrasesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickPhrasesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickPhrasesSharpFilled as default } diff --git a/src/IconQuickReferenceAllOutlinedFilled.tsx b/src/IconQuickReferenceAllOutlinedFilled.tsx new file mode 100644 index 000000000..9e0eb988d --- /dev/null +++ b/src/IconQuickReferenceAllOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReferenceAllOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReferenceAllOutlinedFilled as default } diff --git a/src/IconQuickReferenceAllRoundedFilled.tsx b/src/IconQuickReferenceAllRoundedFilled.tsx new file mode 100644 index 000000000..61f9461d6 --- /dev/null +++ b/src/IconQuickReferenceAllRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReferenceAllRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReferenceAllRoundedFilled as default } diff --git a/src/IconQuickReferenceAllSharpFilled.tsx b/src/IconQuickReferenceAllSharpFilled.tsx new file mode 100644 index 000000000..7743a6ecc --- /dev/null +++ b/src/IconQuickReferenceAllSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReferenceAllSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReferenceAllSharpFilled as default } diff --git a/src/IconQuickReferenceOutlinedFilled.tsx b/src/IconQuickReferenceOutlinedFilled.tsx new file mode 100644 index 000000000..ab71a9f1f --- /dev/null +++ b/src/IconQuickReferenceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReferenceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReferenceOutlinedFilled as default } diff --git a/src/IconQuickReferenceRoundedFilled.tsx b/src/IconQuickReferenceRoundedFilled.tsx new file mode 100644 index 000000000..8c50cf6b3 --- /dev/null +++ b/src/IconQuickReferenceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReferenceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReferenceRoundedFilled as default } diff --git a/src/IconQuickReferenceSharpFilled.tsx b/src/IconQuickReferenceSharpFilled.tsx new file mode 100644 index 000000000..7d69e7428 --- /dev/null +++ b/src/IconQuickReferenceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReferenceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReferenceSharpFilled as default } diff --git a/src/IconQuickReorderOutlinedFilled.tsx b/src/IconQuickReorderOutlinedFilled.tsx new file mode 100644 index 000000000..5f2161359 --- /dev/null +++ b/src/IconQuickReorderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReorderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReorderOutlinedFilled as default } diff --git a/src/IconQuickReorderRoundedFilled.tsx b/src/IconQuickReorderRoundedFilled.tsx new file mode 100644 index 000000000..064949a9a --- /dev/null +++ b/src/IconQuickReorderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReorderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReorderRoundedFilled as default } diff --git a/src/IconQuickReorderSharpFilled.tsx b/src/IconQuickReorderSharpFilled.tsx new file mode 100644 index 000000000..5715b107b --- /dev/null +++ b/src/IconQuickReorderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickReorderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickReorderSharpFilled as default } diff --git a/src/IconQuickreplyOutlinedFilled.tsx b/src/IconQuickreplyOutlinedFilled.tsx new file mode 100644 index 000000000..9f590b64f --- /dev/null +++ b/src/IconQuickreplyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickreplyOutlinedFilled as default } diff --git a/src/IconQuickreplyRoundedFilled.tsx b/src/IconQuickreplyRoundedFilled.tsx new file mode 100644 index 000000000..5afe75dda --- /dev/null +++ b/src/IconQuickreplyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickreplyRoundedFilled as default } diff --git a/src/IconQuickreplySharpFilled.tsx b/src/IconQuickreplySharpFilled.tsx new file mode 100644 index 000000000..c1c62b81f --- /dev/null +++ b/src/IconQuickreplySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuickreplySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuickreplySharpFilled as default } diff --git a/src/IconQuizOutlinedFilled.tsx b/src/IconQuizOutlinedFilled.tsx new file mode 100644 index 000000000..011d42b61 --- /dev/null +++ b/src/IconQuizOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuizOutlinedFilled as default } diff --git a/src/IconQuizRoundedFilled.tsx b/src/IconQuizRoundedFilled.tsx new file mode 100644 index 000000000..a70191f21 --- /dev/null +++ b/src/IconQuizRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuizRoundedFilled as default } diff --git a/src/IconQuizSharpFilled.tsx b/src/IconQuizSharpFilled.tsx new file mode 100644 index 000000000..904cdb19f --- /dev/null +++ b/src/IconQuizSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconQuizSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconQuizSharpFilled as default } diff --git a/src/IconRMobiledataOutlinedFilled.tsx b/src/IconRMobiledataOutlinedFilled.tsx new file mode 100644 index 000000000..75288304a --- /dev/null +++ b/src/IconRMobiledataOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRMobiledataOutlinedFilled as default } diff --git a/src/IconRMobiledataRoundedFilled.tsx b/src/IconRMobiledataRoundedFilled.tsx new file mode 100644 index 000000000..17ad0809f --- /dev/null +++ b/src/IconRMobiledataRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRMobiledataRoundedFilled as default } diff --git a/src/IconRMobiledataSharpFilled.tsx b/src/IconRMobiledataSharpFilled.tsx new file mode 100644 index 000000000..64492d03f --- /dev/null +++ b/src/IconRMobiledataSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRMobiledataSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRMobiledataSharpFilled as default } diff --git a/src/IconRadarOutlinedFilled.tsx b/src/IconRadarOutlinedFilled.tsx new file mode 100644 index 000000000..8faba460e --- /dev/null +++ b/src/IconRadarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadarOutlinedFilled as default } diff --git a/src/IconRadarRoundedFilled.tsx b/src/IconRadarRoundedFilled.tsx new file mode 100644 index 000000000..a991ef100 --- /dev/null +++ b/src/IconRadarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadarRoundedFilled as default } diff --git a/src/IconRadarSharpFilled.tsx b/src/IconRadarSharpFilled.tsx new file mode 100644 index 000000000..4d8780cc2 --- /dev/null +++ b/src/IconRadarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadarSharpFilled as default } diff --git a/src/IconRadioButtonCheckedOutlinedFilled.tsx b/src/IconRadioButtonCheckedOutlinedFilled.tsx new file mode 100644 index 000000000..754735f06 --- /dev/null +++ b/src/IconRadioButtonCheckedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonCheckedOutlinedFilled as default } diff --git a/src/IconRadioButtonCheckedRoundedFilled.tsx b/src/IconRadioButtonCheckedRoundedFilled.tsx new file mode 100644 index 000000000..df6fd7b5b --- /dev/null +++ b/src/IconRadioButtonCheckedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonCheckedRoundedFilled as default } diff --git a/src/IconRadioButtonCheckedSharpFilled.tsx b/src/IconRadioButtonCheckedSharpFilled.tsx new file mode 100644 index 000000000..e3b31928b --- /dev/null +++ b/src/IconRadioButtonCheckedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonCheckedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonCheckedSharpFilled as default } diff --git a/src/IconRadioButtonPartialOutlinedFilled.tsx b/src/IconRadioButtonPartialOutlinedFilled.tsx new file mode 100644 index 000000000..7f03965ca --- /dev/null +++ b/src/IconRadioButtonPartialOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonPartialOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonPartialOutlinedFilled as default } diff --git a/src/IconRadioButtonPartialRoundedFilled.tsx b/src/IconRadioButtonPartialRoundedFilled.tsx new file mode 100644 index 000000000..951e4577b --- /dev/null +++ b/src/IconRadioButtonPartialRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonPartialRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonPartialRoundedFilled as default } diff --git a/src/IconRadioButtonPartialSharpFilled.tsx b/src/IconRadioButtonPartialSharpFilled.tsx new file mode 100644 index 000000000..727894390 --- /dev/null +++ b/src/IconRadioButtonPartialSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonPartialSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonPartialSharpFilled as default } diff --git a/src/IconRadioButtonUncheckedOutlinedFilled.tsx b/src/IconRadioButtonUncheckedOutlinedFilled.tsx new file mode 100644 index 000000000..7d7eab99a --- /dev/null +++ b/src/IconRadioButtonUncheckedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonUncheckedOutlinedFilled as default } diff --git a/src/IconRadioButtonUncheckedRoundedFilled.tsx b/src/IconRadioButtonUncheckedRoundedFilled.tsx new file mode 100644 index 000000000..e68326049 --- /dev/null +++ b/src/IconRadioButtonUncheckedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonUncheckedRoundedFilled as default } diff --git a/src/IconRadioButtonUncheckedSharpFilled.tsx b/src/IconRadioButtonUncheckedSharpFilled.tsx new file mode 100644 index 000000000..dae0eb850 --- /dev/null +++ b/src/IconRadioButtonUncheckedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioButtonUncheckedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioButtonUncheckedSharpFilled as default } diff --git a/src/IconRadioOutlinedFilled.tsx b/src/IconRadioOutlinedFilled.tsx new file mode 100644 index 000000000..e577f58e7 --- /dev/null +++ b/src/IconRadioOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioOutlinedFilled as default } diff --git a/src/IconRadioRoundedFilled.tsx b/src/IconRadioRoundedFilled.tsx new file mode 100644 index 000000000..8c5b98ba4 --- /dev/null +++ b/src/IconRadioRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioRoundedFilled as default } diff --git a/src/IconRadioSharpFilled.tsx b/src/IconRadioSharpFilled.tsx new file mode 100644 index 000000000..0f743b597 --- /dev/null +++ b/src/IconRadioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadioSharpFilled as default } diff --git a/src/IconRadiologyOutlinedFilled.tsx b/src/IconRadiologyOutlinedFilled.tsx new file mode 100644 index 000000000..b57992a25 --- /dev/null +++ b/src/IconRadiologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadiologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadiologyOutlinedFilled as default } diff --git a/src/IconRadiologyRoundedFilled.tsx b/src/IconRadiologyRoundedFilled.tsx new file mode 100644 index 000000000..e1e5243cc --- /dev/null +++ b/src/IconRadiologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadiologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadiologyRoundedFilled as default } diff --git a/src/IconRadiologySharpFilled.tsx b/src/IconRadiologySharpFilled.tsx new file mode 100644 index 000000000..b681b3ebf --- /dev/null +++ b/src/IconRadiologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRadiologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRadiologySharpFilled as default } diff --git a/src/IconRailwayAlert2OutlinedFilled.tsx b/src/IconRailwayAlert2OutlinedFilled.tsx new file mode 100644 index 000000000..96552f465 --- /dev/null +++ b/src/IconRailwayAlert2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlert2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRailwayAlert2OutlinedFilled as default } diff --git a/src/IconRailwayAlert2RoundedFilled.tsx b/src/IconRailwayAlert2RoundedFilled.tsx new file mode 100644 index 000000000..a64e2a20b --- /dev/null +++ b/src/IconRailwayAlert2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlert2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRailwayAlert2RoundedFilled as default } diff --git a/src/IconRailwayAlert2SharpFilled.tsx b/src/IconRailwayAlert2SharpFilled.tsx new file mode 100644 index 000000000..496221e1e --- /dev/null +++ b/src/IconRailwayAlert2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlert2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRailwayAlert2SharpFilled as default } diff --git a/src/IconRailwayAlertOutlinedFilled.tsx b/src/IconRailwayAlertOutlinedFilled.tsx new file mode 100644 index 000000000..6bfb658f1 --- /dev/null +++ b/src/IconRailwayAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRailwayAlertOutlinedFilled as default } diff --git a/src/IconRailwayAlertRoundedFilled.tsx b/src/IconRailwayAlertRoundedFilled.tsx new file mode 100644 index 000000000..e147af08e --- /dev/null +++ b/src/IconRailwayAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRailwayAlertRoundedFilled as default } diff --git a/src/IconRailwayAlertSharpFilled.tsx b/src/IconRailwayAlertSharpFilled.tsx new file mode 100644 index 000000000..51aa9e27d --- /dev/null +++ b/src/IconRailwayAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRailwayAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRailwayAlertSharpFilled as default } diff --git a/src/IconRainyHeavyOutlinedFilled.tsx b/src/IconRainyHeavyOutlinedFilled.tsx new file mode 100644 index 000000000..d6752d4ab --- /dev/null +++ b/src/IconRainyHeavyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyHeavyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyHeavyOutlinedFilled as default } diff --git a/src/IconRainyHeavyRoundedFilled.tsx b/src/IconRainyHeavyRoundedFilled.tsx new file mode 100644 index 000000000..7abac2dc4 --- /dev/null +++ b/src/IconRainyHeavyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyHeavyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyHeavyRoundedFilled as default } diff --git a/src/IconRainyHeavySharpFilled.tsx b/src/IconRainyHeavySharpFilled.tsx new file mode 100644 index 000000000..a06fb4bd8 --- /dev/null +++ b/src/IconRainyHeavySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyHeavySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyHeavySharpFilled as default } diff --git a/src/IconRainyLightOutlinedFilled.tsx b/src/IconRainyLightOutlinedFilled.tsx new file mode 100644 index 000000000..1223d1a55 --- /dev/null +++ b/src/IconRainyLightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyLightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyLightOutlinedFilled as default } diff --git a/src/IconRainyLightRoundedFilled.tsx b/src/IconRainyLightRoundedFilled.tsx new file mode 100644 index 000000000..5584c1353 --- /dev/null +++ b/src/IconRainyLightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyLightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyLightRoundedFilled as default } diff --git a/src/IconRainyLightSharpFilled.tsx b/src/IconRainyLightSharpFilled.tsx new file mode 100644 index 000000000..12b247e6a --- /dev/null +++ b/src/IconRainyLightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyLightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyLightSharpFilled as default } diff --git a/src/IconRainyOutlinedFilled.tsx b/src/IconRainyOutlinedFilled.tsx new file mode 100644 index 000000000..4a68232ee --- /dev/null +++ b/src/IconRainyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyOutlinedFilled as default } diff --git a/src/IconRainyRoundedFilled.tsx b/src/IconRainyRoundedFilled.tsx new file mode 100644 index 000000000..6af0545c6 --- /dev/null +++ b/src/IconRainyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainyRoundedFilled as default } diff --git a/src/IconRainySharpFilled.tsx b/src/IconRainySharpFilled.tsx new file mode 100644 index 000000000..cf40d2bf6 --- /dev/null +++ b/src/IconRainySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainySharpFilled as default } diff --git a/src/IconRainySnowOutlinedFilled.tsx b/src/IconRainySnowOutlinedFilled.tsx new file mode 100644 index 000000000..eb1e67b85 --- /dev/null +++ b/src/IconRainySnowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainySnowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainySnowOutlinedFilled as default } diff --git a/src/IconRainySnowRoundedFilled.tsx b/src/IconRainySnowRoundedFilled.tsx new file mode 100644 index 000000000..259d23f6b --- /dev/null +++ b/src/IconRainySnowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainySnowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainySnowRoundedFilled as default } diff --git a/src/IconRainySnowSharpFilled.tsx b/src/IconRainySnowSharpFilled.tsx new file mode 100644 index 000000000..6598be739 --- /dev/null +++ b/src/IconRainySnowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRainySnowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRainySnowSharpFilled as default } diff --git a/src/IconRamenDiningOutlinedFilled.tsx b/src/IconRamenDiningOutlinedFilled.tsx new file mode 100644 index 000000000..543f9414e --- /dev/null +++ b/src/IconRamenDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRamenDiningOutlinedFilled as default } diff --git a/src/IconRamenDiningRoundedFilled.tsx b/src/IconRamenDiningRoundedFilled.tsx new file mode 100644 index 000000000..9b97ee552 --- /dev/null +++ b/src/IconRamenDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRamenDiningRoundedFilled as default } diff --git a/src/IconRamenDiningSharpFilled.tsx b/src/IconRamenDiningSharpFilled.tsx new file mode 100644 index 000000000..5c26745ad --- /dev/null +++ b/src/IconRamenDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRamenDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRamenDiningSharpFilled as default } diff --git a/src/IconRampLeftOutlinedFilled.tsx b/src/IconRampLeftOutlinedFilled.tsx new file mode 100644 index 000000000..74a80bead --- /dev/null +++ b/src/IconRampLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRampLeftOutlinedFilled as default } diff --git a/src/IconRampLeftRoundedFilled.tsx b/src/IconRampLeftRoundedFilled.tsx new file mode 100644 index 000000000..8f833ae53 --- /dev/null +++ b/src/IconRampLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRampLeftRoundedFilled as default } diff --git a/src/IconRampLeftSharpFilled.tsx b/src/IconRampLeftSharpFilled.tsx new file mode 100644 index 000000000..93ec80ee0 --- /dev/null +++ b/src/IconRampLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRampLeftSharpFilled as default } diff --git a/src/IconRampRightOutlinedFilled.tsx b/src/IconRampRightOutlinedFilled.tsx new file mode 100644 index 000000000..db727b7d2 --- /dev/null +++ b/src/IconRampRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRampRightOutlinedFilled as default } diff --git a/src/IconRampRightRoundedFilled.tsx b/src/IconRampRightRoundedFilled.tsx new file mode 100644 index 000000000..6c4a7cbfc --- /dev/null +++ b/src/IconRampRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRampRightRoundedFilled as default } diff --git a/src/IconRampRightSharpFilled.tsx b/src/IconRampRightSharpFilled.tsx new file mode 100644 index 000000000..4eddb0012 --- /dev/null +++ b/src/IconRampRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRampRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRampRightSharpFilled as default } diff --git a/src/IconRangeHoodOutlinedFilled.tsx b/src/IconRangeHoodOutlinedFilled.tsx new file mode 100644 index 000000000..bdfb7e18b --- /dev/null +++ b/src/IconRangeHoodOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRangeHoodOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRangeHoodOutlinedFilled as default } diff --git a/src/IconRangeHoodRoundedFilled.tsx b/src/IconRangeHoodRoundedFilled.tsx new file mode 100644 index 000000000..1d15d61af --- /dev/null +++ b/src/IconRangeHoodRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRangeHoodRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRangeHoodRoundedFilled as default } diff --git a/src/IconRangeHoodSharpFilled.tsx b/src/IconRangeHoodSharpFilled.tsx new file mode 100644 index 000000000..8c5b942c4 --- /dev/null +++ b/src/IconRangeHoodSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRangeHoodSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRangeHoodSharpFilled as default } diff --git a/src/IconRateReviewOutlinedFilled.tsx b/src/IconRateReviewOutlinedFilled.tsx new file mode 100644 index 000000000..0ec9e67dc --- /dev/null +++ b/src/IconRateReviewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRateReviewOutlinedFilled as default } diff --git a/src/IconRateReviewRoundedFilled.tsx b/src/IconRateReviewRoundedFilled.tsx new file mode 100644 index 000000000..a64b8957d --- /dev/null +++ b/src/IconRateReviewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRateReviewRoundedFilled as default } diff --git a/src/IconRateReviewSharpFilled.tsx b/src/IconRateReviewSharpFilled.tsx new file mode 100644 index 000000000..5557b35c9 --- /dev/null +++ b/src/IconRateReviewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRateReviewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRateReviewSharpFilled as default } diff --git a/src/IconRavenOutlinedFilled.tsx b/src/IconRavenOutlinedFilled.tsx new file mode 100644 index 000000000..a955c6260 --- /dev/null +++ b/src/IconRavenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRavenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRavenOutlinedFilled as default } diff --git a/src/IconRavenRoundedFilled.tsx b/src/IconRavenRoundedFilled.tsx new file mode 100644 index 000000000..bbde2273d --- /dev/null +++ b/src/IconRavenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRavenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRavenRoundedFilled as default } diff --git a/src/IconRavenSharpFilled.tsx b/src/IconRavenSharpFilled.tsx new file mode 100644 index 000000000..a194570ee --- /dev/null +++ b/src/IconRavenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRavenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRavenSharpFilled as default } diff --git a/src/IconRawOffOutlinedFilled.tsx b/src/IconRawOffOutlinedFilled.tsx new file mode 100644 index 000000000..8c729e8ea --- /dev/null +++ b/src/IconRawOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRawOffOutlinedFilled as default } diff --git a/src/IconRawOffRoundedFilled.tsx b/src/IconRawOffRoundedFilled.tsx new file mode 100644 index 000000000..0d4032d45 --- /dev/null +++ b/src/IconRawOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRawOffRoundedFilled as default } diff --git a/src/IconRawOffSharpFilled.tsx b/src/IconRawOffSharpFilled.tsx new file mode 100644 index 000000000..e8955a0f9 --- /dev/null +++ b/src/IconRawOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRawOffSharpFilled as default } diff --git a/src/IconRawOnOutlinedFilled.tsx b/src/IconRawOnOutlinedFilled.tsx new file mode 100644 index 000000000..f3804246e --- /dev/null +++ b/src/IconRawOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRawOnOutlinedFilled as default } diff --git a/src/IconRawOnRoundedFilled.tsx b/src/IconRawOnRoundedFilled.tsx new file mode 100644 index 000000000..719a31f37 --- /dev/null +++ b/src/IconRawOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRawOnRoundedFilled as default } diff --git a/src/IconRawOnSharpFilled.tsx b/src/IconRawOnSharpFilled.tsx new file mode 100644 index 000000000..10511c25a --- /dev/null +++ b/src/IconRawOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRawOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRawOnSharpFilled as default } diff --git a/src/IconReadMoreOutlinedFilled.tsx b/src/IconReadMoreOutlinedFilled.tsx new file mode 100644 index 000000000..3ab65f73c --- /dev/null +++ b/src/IconReadMoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReadMoreOutlinedFilled as default } diff --git a/src/IconReadMoreRoundedFilled.tsx b/src/IconReadMoreRoundedFilled.tsx new file mode 100644 index 000000000..d77fed0d3 --- /dev/null +++ b/src/IconReadMoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReadMoreRoundedFilled as default } diff --git a/src/IconReadMoreSharpFilled.tsx b/src/IconReadMoreSharpFilled.tsx new file mode 100644 index 000000000..ebf3e41c0 --- /dev/null +++ b/src/IconReadMoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadMoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReadMoreSharpFilled as default } diff --git a/src/IconReadinessScoreOutlinedFilled.tsx b/src/IconReadinessScoreOutlinedFilled.tsx new file mode 100644 index 000000000..96ffc20a3 --- /dev/null +++ b/src/IconReadinessScoreOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadinessScoreOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconReadinessScoreOutlinedFilled as default } diff --git a/src/IconReadinessScoreRoundedFilled.tsx b/src/IconReadinessScoreRoundedFilled.tsx new file mode 100644 index 000000000..3f73b4797 --- /dev/null +++ b/src/IconReadinessScoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadinessScoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReadinessScoreRoundedFilled as default } diff --git a/src/IconReadinessScoreSharpFilled.tsx b/src/IconReadinessScoreSharpFilled.tsx new file mode 100644 index 000000000..7289d6c25 --- /dev/null +++ b/src/IconReadinessScoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReadinessScoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReadinessScoreSharpFilled as default } diff --git a/src/IconRealEstateAgentOutlinedFilled.tsx b/src/IconRealEstateAgentOutlinedFilled.tsx new file mode 100644 index 000000000..95dc6d6bc --- /dev/null +++ b/src/IconRealEstateAgentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRealEstateAgentOutlinedFilled as default } diff --git a/src/IconRealEstateAgentRoundedFilled.tsx b/src/IconRealEstateAgentRoundedFilled.tsx new file mode 100644 index 000000000..c3e9c7961 --- /dev/null +++ b/src/IconRealEstateAgentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRealEstateAgentRoundedFilled as default } diff --git a/src/IconRealEstateAgentSharpFilled.tsx b/src/IconRealEstateAgentSharpFilled.tsx new file mode 100644 index 000000000..d23612ca7 --- /dev/null +++ b/src/IconRealEstateAgentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRealEstateAgentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRealEstateAgentSharpFilled as default } diff --git a/src/IconRearCameraOutlinedFilled.tsx b/src/IconRearCameraOutlinedFilled.tsx new file mode 100644 index 000000000..409f07499 --- /dev/null +++ b/src/IconRearCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRearCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRearCameraOutlinedFilled as default } diff --git a/src/IconRearCameraRoundedFilled.tsx b/src/IconRearCameraRoundedFilled.tsx new file mode 100644 index 000000000..aa534813b --- /dev/null +++ b/src/IconRearCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRearCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRearCameraRoundedFilled as default } diff --git a/src/IconRearCameraSharpFilled.tsx b/src/IconRearCameraSharpFilled.tsx new file mode 100644 index 000000000..602174380 --- /dev/null +++ b/src/IconRearCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRearCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRearCameraSharpFilled as default } diff --git a/src/IconRebaseEditOutlinedFilled.tsx b/src/IconRebaseEditOutlinedFilled.tsx new file mode 100644 index 000000000..3591d4bdd --- /dev/null +++ b/src/IconRebaseEditOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRebaseEditOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRebaseEditOutlinedFilled as default } diff --git a/src/IconRebaseEditRoundedFilled.tsx b/src/IconRebaseEditRoundedFilled.tsx new file mode 100644 index 000000000..eb6a15516 --- /dev/null +++ b/src/IconRebaseEditRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRebaseEditRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRebaseEditRoundedFilled as default } diff --git a/src/IconRebaseEditSharpFilled.tsx b/src/IconRebaseEditSharpFilled.tsx new file mode 100644 index 000000000..91a116f7d --- /dev/null +++ b/src/IconRebaseEditSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRebaseEditSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRebaseEditSharpFilled as default } diff --git a/src/IconRebaseOutlinedFilled.tsx b/src/IconRebaseOutlinedFilled.tsx new file mode 100644 index 000000000..dd96bcdae --- /dev/null +++ b/src/IconRebaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRebaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRebaseOutlinedFilled as default } diff --git a/src/IconRebaseRoundedFilled.tsx b/src/IconRebaseRoundedFilled.tsx new file mode 100644 index 000000000..857abdcda --- /dev/null +++ b/src/IconRebaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRebaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRebaseRoundedFilled as default } diff --git a/src/IconRebaseSharpFilled.tsx b/src/IconRebaseSharpFilled.tsx new file mode 100644 index 000000000..43c6b0dc1 --- /dev/null +++ b/src/IconRebaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRebaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRebaseSharpFilled as default } diff --git a/src/IconReceiptLongOffOutlinedFilled.tsx b/src/IconReceiptLongOffOutlinedFilled.tsx new file mode 100644 index 000000000..9d3b9aa6b --- /dev/null +++ b/src/IconReceiptLongOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptLongOffOutlinedFilled as default } diff --git a/src/IconReceiptLongOffRoundedFilled.tsx b/src/IconReceiptLongOffRoundedFilled.tsx new file mode 100644 index 000000000..61470a82e --- /dev/null +++ b/src/IconReceiptLongOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptLongOffRoundedFilled as default } diff --git a/src/IconReceiptLongOffSharpFilled.tsx b/src/IconReceiptLongOffSharpFilled.tsx new file mode 100644 index 000000000..005ea995f --- /dev/null +++ b/src/IconReceiptLongOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptLongOffSharpFilled as default } diff --git a/src/IconReceiptLongOutlinedFilled.tsx b/src/IconReceiptLongOutlinedFilled.tsx new file mode 100644 index 000000000..aeb0f7d9a --- /dev/null +++ b/src/IconReceiptLongOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptLongOutlinedFilled as default } diff --git a/src/IconReceiptLongRoundedFilled.tsx b/src/IconReceiptLongRoundedFilled.tsx new file mode 100644 index 000000000..635a92095 --- /dev/null +++ b/src/IconReceiptLongRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptLongRoundedFilled as default } diff --git a/src/IconReceiptLongSharpFilled.tsx b/src/IconReceiptLongSharpFilled.tsx new file mode 100644 index 000000000..79fae20c9 --- /dev/null +++ b/src/IconReceiptLongSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptLongSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptLongSharpFilled as default } diff --git a/src/IconReceiptOutlinedFilled.tsx b/src/IconReceiptOutlinedFilled.tsx new file mode 100644 index 000000000..41e1cef54 --- /dev/null +++ b/src/IconReceiptOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptOutlinedFilled as default } diff --git a/src/IconReceiptRoundedFilled.tsx b/src/IconReceiptRoundedFilled.tsx new file mode 100644 index 000000000..fe2486099 --- /dev/null +++ b/src/IconReceiptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptRoundedFilled as default } diff --git a/src/IconReceiptSharpFilled.tsx b/src/IconReceiptSharpFilled.tsx new file mode 100644 index 000000000..d35e41bb5 --- /dev/null +++ b/src/IconReceiptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReceiptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReceiptSharpFilled as default } diff --git a/src/IconRecentActorsOutlinedFilled.tsx b/src/IconRecentActorsOutlinedFilled.tsx new file mode 100644 index 000000000..c66404d02 --- /dev/null +++ b/src/IconRecentActorsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentActorsOutlinedFilled as default } diff --git a/src/IconRecentActorsRoundedFilled.tsx b/src/IconRecentActorsRoundedFilled.tsx new file mode 100644 index 000000000..7b00e5246 --- /dev/null +++ b/src/IconRecentActorsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentActorsRoundedFilled as default } diff --git a/src/IconRecentActorsSharpFilled.tsx b/src/IconRecentActorsSharpFilled.tsx new file mode 100644 index 000000000..8a7708d25 --- /dev/null +++ b/src/IconRecentActorsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentActorsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentActorsSharpFilled as default } diff --git a/src/IconRecentPatientOutlinedFilled.tsx b/src/IconRecentPatientOutlinedFilled.tsx new file mode 100644 index 000000000..aec6a3a37 --- /dev/null +++ b/src/IconRecentPatientOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentPatientOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentPatientOutlinedFilled as default } diff --git a/src/IconRecentPatientRoundedFilled.tsx b/src/IconRecentPatientRoundedFilled.tsx new file mode 100644 index 000000000..1352ba328 --- /dev/null +++ b/src/IconRecentPatientRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentPatientRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentPatientRoundedFilled as default } diff --git a/src/IconRecentPatientSharpFilled.tsx b/src/IconRecentPatientSharpFilled.tsx new file mode 100644 index 000000000..312590f3a --- /dev/null +++ b/src/IconRecentPatientSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecentPatientSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecentPatientSharpFilled as default } diff --git a/src/IconRecenterOutlinedFilled.tsx b/src/IconRecenterOutlinedFilled.tsx new file mode 100644 index 000000000..c05b00f42 --- /dev/null +++ b/src/IconRecenterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecenterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecenterOutlinedFilled as default } diff --git a/src/IconRecenterRoundedFilled.tsx b/src/IconRecenterRoundedFilled.tsx new file mode 100644 index 000000000..1e68161ae --- /dev/null +++ b/src/IconRecenterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecenterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecenterRoundedFilled as default } diff --git a/src/IconRecenterSharpFilled.tsx b/src/IconRecenterSharpFilled.tsx new file mode 100644 index 000000000..411e49c42 --- /dev/null +++ b/src/IconRecenterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecenterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecenterSharpFilled as default } diff --git a/src/IconRecommendOutlinedFilled.tsx b/src/IconRecommendOutlinedFilled.tsx new file mode 100644 index 000000000..6d3912f53 --- /dev/null +++ b/src/IconRecommendOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecommendOutlinedFilled as default } diff --git a/src/IconRecommendRoundedFilled.tsx b/src/IconRecommendRoundedFilled.tsx new file mode 100644 index 000000000..234bfcb36 --- /dev/null +++ b/src/IconRecommendRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecommendRoundedFilled as default } diff --git a/src/IconRecommendSharpFilled.tsx b/src/IconRecommendSharpFilled.tsx new file mode 100644 index 000000000..289a7043d --- /dev/null +++ b/src/IconRecommendSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecommendSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecommendSharpFilled as default } diff --git a/src/IconRecordVoiceOverOutlinedFilled.tsx b/src/IconRecordVoiceOverOutlinedFilled.tsx new file mode 100644 index 000000000..523bba279 --- /dev/null +++ b/src/IconRecordVoiceOverOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRecordVoiceOverOutlinedFilled as default } diff --git a/src/IconRecordVoiceOverRoundedFilled.tsx b/src/IconRecordVoiceOverRoundedFilled.tsx new file mode 100644 index 000000000..7dfb28768 --- /dev/null +++ b/src/IconRecordVoiceOverRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRecordVoiceOverRoundedFilled as default } diff --git a/src/IconRecordVoiceOverSharpFilled.tsx b/src/IconRecordVoiceOverSharpFilled.tsx new file mode 100644 index 000000000..d4996f173 --- /dev/null +++ b/src/IconRecordVoiceOverSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecordVoiceOverSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecordVoiceOverSharpFilled as default } diff --git a/src/IconRectangleOutlinedFilled.tsx b/src/IconRectangleOutlinedFilled.tsx new file mode 100644 index 000000000..34eaab816 --- /dev/null +++ b/src/IconRectangleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRectangleOutlinedFilled as default } diff --git a/src/IconRectangleRoundedFilled.tsx b/src/IconRectangleRoundedFilled.tsx new file mode 100644 index 000000000..e4148cdd6 --- /dev/null +++ b/src/IconRectangleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRectangleRoundedFilled as default } diff --git a/src/IconRectangleSharpFilled.tsx b/src/IconRectangleSharpFilled.tsx new file mode 100644 index 000000000..ecff52ffe --- /dev/null +++ b/src/IconRectangleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRectangleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRectangleSharpFilled as default } diff --git a/src/IconRecyclingOutlinedFilled.tsx b/src/IconRecyclingOutlinedFilled.tsx new file mode 100644 index 000000000..14bd73c99 --- /dev/null +++ b/src/IconRecyclingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecyclingOutlinedFilled as default } diff --git a/src/IconRecyclingRoundedFilled.tsx b/src/IconRecyclingRoundedFilled.tsx new file mode 100644 index 000000000..c10e93b72 --- /dev/null +++ b/src/IconRecyclingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecyclingRoundedFilled as default } diff --git a/src/IconRecyclingSharpFilled.tsx b/src/IconRecyclingSharpFilled.tsx new file mode 100644 index 000000000..b96ec07d3 --- /dev/null +++ b/src/IconRecyclingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRecyclingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRecyclingSharpFilled as default } diff --git a/src/IconRedeemOutlinedFilled.tsx b/src/IconRedeemOutlinedFilled.tsx new file mode 100644 index 000000000..c26f9afd4 --- /dev/null +++ b/src/IconRedeemOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRedeemOutlinedFilled as default } diff --git a/src/IconRedeemRoundedFilled.tsx b/src/IconRedeemRoundedFilled.tsx new file mode 100644 index 000000000..1b9e8c602 --- /dev/null +++ b/src/IconRedeemRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRedeemRoundedFilled as default } diff --git a/src/IconRedeemSharpFilled.tsx b/src/IconRedeemSharpFilled.tsx new file mode 100644 index 000000000..7ada06cff --- /dev/null +++ b/src/IconRedeemSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedeemSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRedeemSharpFilled as default } diff --git a/src/IconRedoOutlinedFilled.tsx b/src/IconRedoOutlinedFilled.tsx new file mode 100644 index 000000000..75c8906dd --- /dev/null +++ b/src/IconRedoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRedoOutlinedFilled as default } diff --git a/src/IconRedoRoundedFilled.tsx b/src/IconRedoRoundedFilled.tsx new file mode 100644 index 000000000..1415df732 --- /dev/null +++ b/src/IconRedoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRedoRoundedFilled as default } diff --git a/src/IconRedoSharpFilled.tsx b/src/IconRedoSharpFilled.tsx new file mode 100644 index 000000000..772436910 --- /dev/null +++ b/src/IconRedoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRedoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRedoSharpFilled as default } diff --git a/src/IconReduceCapacityOutlinedFilled.tsx b/src/IconReduceCapacityOutlinedFilled.tsx new file mode 100644 index 000000000..e76652db9 --- /dev/null +++ b/src/IconReduceCapacityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconReduceCapacityOutlinedFilled as default } diff --git a/src/IconReduceCapacityRoundedFilled.tsx b/src/IconReduceCapacityRoundedFilled.tsx new file mode 100644 index 000000000..955598119 --- /dev/null +++ b/src/IconReduceCapacityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReduceCapacityRoundedFilled as default } diff --git a/src/IconReduceCapacitySharpFilled.tsx b/src/IconReduceCapacitySharpFilled.tsx new file mode 100644 index 000000000..57d6aa272 --- /dev/null +++ b/src/IconReduceCapacitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReduceCapacitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReduceCapacitySharpFilled as default } diff --git a/src/IconRefreshOutlinedFilled.tsx b/src/IconRefreshOutlinedFilled.tsx new file mode 100644 index 000000000..61eaa3ec6 --- /dev/null +++ b/src/IconRefreshOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRefreshOutlinedFilled as default } diff --git a/src/IconRefreshRoundedFilled.tsx b/src/IconRefreshRoundedFilled.tsx new file mode 100644 index 000000000..753f305b9 --- /dev/null +++ b/src/IconRefreshRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRefreshRoundedFilled as default } diff --git a/src/IconRefreshSharpFilled.tsx b/src/IconRefreshSharpFilled.tsx new file mode 100644 index 000000000..62f42a6cd --- /dev/null +++ b/src/IconRefreshSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRefreshSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRefreshSharpFilled as default } diff --git a/src/IconRegularExpressionOutlinedFilled.tsx b/src/IconRegularExpressionOutlinedFilled.tsx new file mode 100644 index 000000000..a684c7fac --- /dev/null +++ b/src/IconRegularExpressionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRegularExpressionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRegularExpressionOutlinedFilled as default } diff --git a/src/IconRegularExpressionRoundedFilled.tsx b/src/IconRegularExpressionRoundedFilled.tsx new file mode 100644 index 000000000..25beca297 --- /dev/null +++ b/src/IconRegularExpressionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRegularExpressionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRegularExpressionRoundedFilled as default } diff --git a/src/IconRegularExpressionSharpFilled.tsx b/src/IconRegularExpressionSharpFilled.tsx new file mode 100644 index 000000000..f03509a97 --- /dev/null +++ b/src/IconRegularExpressionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRegularExpressionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRegularExpressionSharpFilled as default } diff --git a/src/IconRelaxOutlinedFilled.tsx b/src/IconRelaxOutlinedFilled.tsx new file mode 100644 index 000000000..de74ea2cd --- /dev/null +++ b/src/IconRelaxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRelaxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRelaxOutlinedFilled as default } diff --git a/src/IconRelaxRoundedFilled.tsx b/src/IconRelaxRoundedFilled.tsx new file mode 100644 index 000000000..697314273 --- /dev/null +++ b/src/IconRelaxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRelaxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRelaxRoundedFilled as default } diff --git a/src/IconRelaxSharpFilled.tsx b/src/IconRelaxSharpFilled.tsx new file mode 100644 index 000000000..32f72ecd4 --- /dev/null +++ b/src/IconRelaxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRelaxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRelaxSharpFilled as default } diff --git a/src/IconReleaseAlertOutlinedFilled.tsx b/src/IconReleaseAlertOutlinedFilled.tsx new file mode 100644 index 000000000..b528d5fcf --- /dev/null +++ b/src/IconReleaseAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReleaseAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReleaseAlertOutlinedFilled as default } diff --git a/src/IconReleaseAlertRoundedFilled.tsx b/src/IconReleaseAlertRoundedFilled.tsx new file mode 100644 index 000000000..406820f60 --- /dev/null +++ b/src/IconReleaseAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReleaseAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReleaseAlertRoundedFilled as default } diff --git a/src/IconReleaseAlertSharpFilled.tsx b/src/IconReleaseAlertSharpFilled.tsx new file mode 100644 index 000000000..757df569e --- /dev/null +++ b/src/IconReleaseAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReleaseAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReleaseAlertSharpFilled as default } diff --git a/src/IconRememberMeOutlinedFilled.tsx b/src/IconRememberMeOutlinedFilled.tsx new file mode 100644 index 000000000..799ed9ac3 --- /dev/null +++ b/src/IconRememberMeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRememberMeOutlinedFilled as default } diff --git a/src/IconRememberMeRoundedFilled.tsx b/src/IconRememberMeRoundedFilled.tsx new file mode 100644 index 000000000..a37a94c26 --- /dev/null +++ b/src/IconRememberMeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRememberMeRoundedFilled as default } diff --git a/src/IconRememberMeSharpFilled.tsx b/src/IconRememberMeSharpFilled.tsx new file mode 100644 index 000000000..f2ae8c480 --- /dev/null +++ b/src/IconRememberMeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRememberMeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRememberMeSharpFilled as default } diff --git a/src/IconReminderOutlinedFilled.tsx b/src/IconReminderOutlinedFilled.tsx new file mode 100644 index 000000000..833a863a0 --- /dev/null +++ b/src/IconReminderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReminderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReminderOutlinedFilled as default } diff --git a/src/IconReminderRoundedFilled.tsx b/src/IconReminderRoundedFilled.tsx new file mode 100644 index 000000000..fc36c72b2 --- /dev/null +++ b/src/IconReminderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReminderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReminderRoundedFilled as default } diff --git a/src/IconReminderSharpFilled.tsx b/src/IconReminderSharpFilled.tsx new file mode 100644 index 000000000..bbc6ca140 --- /dev/null +++ b/src/IconReminderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReminderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReminderSharpFilled as default } diff --git a/src/IconRemoteGenOutlinedFilled.tsx b/src/IconRemoteGenOutlinedFilled.tsx new file mode 100644 index 000000000..0fc5e2157 --- /dev/null +++ b/src/IconRemoteGenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoteGenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoteGenOutlinedFilled as default } diff --git a/src/IconRemoteGenRoundedFilled.tsx b/src/IconRemoteGenRoundedFilled.tsx new file mode 100644 index 000000000..c75d8b116 --- /dev/null +++ b/src/IconRemoteGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoteGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoteGenRoundedFilled as default } diff --git a/src/IconRemoteGenSharpFilled.tsx b/src/IconRemoteGenSharpFilled.tsx new file mode 100644 index 000000000..94627d0db --- /dev/null +++ b/src/IconRemoteGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoteGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoteGenSharpFilled as default } diff --git a/src/IconRemoveDoneOutlinedFilled.tsx b/src/IconRemoveDoneOutlinedFilled.tsx new file mode 100644 index 000000000..585510e22 --- /dev/null +++ b/src/IconRemoveDoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveDoneOutlinedFilled as default } diff --git a/src/IconRemoveDoneRoundedFilled.tsx b/src/IconRemoveDoneRoundedFilled.tsx new file mode 100644 index 000000000..ff570f286 --- /dev/null +++ b/src/IconRemoveDoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveDoneRoundedFilled as default } diff --git a/src/IconRemoveDoneSharpFilled.tsx b/src/IconRemoveDoneSharpFilled.tsx new file mode 100644 index 000000000..79383e4f2 --- /dev/null +++ b/src/IconRemoveDoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveDoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveDoneSharpFilled as default } diff --git a/src/IconRemoveFromQueueOutlinedFilled.tsx b/src/IconRemoveFromQueueOutlinedFilled.tsx new file mode 100644 index 000000000..b12aae457 --- /dev/null +++ b/src/IconRemoveFromQueueOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveFromQueueOutlinedFilled as default } diff --git a/src/IconRemoveFromQueueRoundedFilled.tsx b/src/IconRemoveFromQueueRoundedFilled.tsx new file mode 100644 index 000000000..d2ccf0eca --- /dev/null +++ b/src/IconRemoveFromQueueRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveFromQueueRoundedFilled as default } diff --git a/src/IconRemoveFromQueueSharpFilled.tsx b/src/IconRemoveFromQueueSharpFilled.tsx new file mode 100644 index 000000000..9aca10acf --- /dev/null +++ b/src/IconRemoveFromQueueSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveFromQueueSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveFromQueueSharpFilled as default } diff --git a/src/IconRemoveModeratorOutlinedFilled.tsx b/src/IconRemoveModeratorOutlinedFilled.tsx new file mode 100644 index 000000000..a6c81f13e --- /dev/null +++ b/src/IconRemoveModeratorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveModeratorOutlinedFilled as default } diff --git a/src/IconRemoveModeratorRoundedFilled.tsx b/src/IconRemoveModeratorRoundedFilled.tsx new file mode 100644 index 000000000..446aad5b1 --- /dev/null +++ b/src/IconRemoveModeratorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveModeratorRoundedFilled as default } diff --git a/src/IconRemoveModeratorSharpFilled.tsx b/src/IconRemoveModeratorSharpFilled.tsx new file mode 100644 index 000000000..351dc3e4f --- /dev/null +++ b/src/IconRemoveModeratorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveModeratorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveModeratorSharpFilled as default } diff --git a/src/IconRemoveOutlinedFilled.tsx b/src/IconRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..c5e56262e --- /dev/null +++ b/src/IconRemoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveOutlinedFilled as default } diff --git a/src/IconRemoveRoadOutlinedFilled.tsx b/src/IconRemoveRoadOutlinedFilled.tsx new file mode 100644 index 000000000..0f1cdc72d --- /dev/null +++ b/src/IconRemoveRoadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveRoadOutlinedFilled as default } diff --git a/src/IconRemoveRoadRoundedFilled.tsx b/src/IconRemoveRoadRoundedFilled.tsx new file mode 100644 index 000000000..0bc50a6f4 --- /dev/null +++ b/src/IconRemoveRoadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveRoadRoundedFilled as default } diff --git a/src/IconRemoveRoadSharpFilled.tsx b/src/IconRemoveRoadSharpFilled.tsx new file mode 100644 index 000000000..ea5553564 --- /dev/null +++ b/src/IconRemoveRoadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveRoadSharpFilled as default } diff --git a/src/IconRemoveRoundedFilled.tsx b/src/IconRemoveRoundedFilled.tsx new file mode 100644 index 000000000..5a9f45a0f --- /dev/null +++ b/src/IconRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveRoundedFilled as default } diff --git a/src/IconRemoveSelectionOutlinedFilled.tsx b/src/IconRemoveSelectionOutlinedFilled.tsx new file mode 100644 index 000000000..c79560895 --- /dev/null +++ b/src/IconRemoveSelectionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveSelectionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveSelectionOutlinedFilled as default } diff --git a/src/IconRemoveSelectionRoundedFilled.tsx b/src/IconRemoveSelectionRoundedFilled.tsx new file mode 100644 index 000000000..4697d5ae8 --- /dev/null +++ b/src/IconRemoveSelectionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveSelectionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveSelectionRoundedFilled as default } diff --git a/src/IconRemoveSelectionSharpFilled.tsx b/src/IconRemoveSelectionSharpFilled.tsx new file mode 100644 index 000000000..f33955949 --- /dev/null +++ b/src/IconRemoveSelectionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveSelectionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveSelectionSharpFilled as default } diff --git a/src/IconRemoveSharpFilled.tsx b/src/IconRemoveSharpFilled.tsx new file mode 100644 index 000000000..a980b7beb --- /dev/null +++ b/src/IconRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveSharpFilled as default } diff --git a/src/IconRemoveShoppingCartOutlinedFilled.tsx b/src/IconRemoveShoppingCartOutlinedFilled.tsx new file mode 100644 index 000000000..5737d2206 --- /dev/null +++ b/src/IconRemoveShoppingCartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveShoppingCartOutlinedFilled as default } diff --git a/src/IconRemoveShoppingCartRoundedFilled.tsx b/src/IconRemoveShoppingCartRoundedFilled.tsx new file mode 100644 index 000000000..9924c0fe8 --- /dev/null +++ b/src/IconRemoveShoppingCartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveShoppingCartRoundedFilled as default } diff --git a/src/IconRemoveShoppingCartSharpFilled.tsx b/src/IconRemoveShoppingCartSharpFilled.tsx new file mode 100644 index 000000000..6145895fe --- /dev/null +++ b/src/IconRemoveShoppingCartSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRemoveShoppingCartSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRemoveShoppingCartSharpFilled as default } diff --git a/src/IconReopenWindowOutlinedFilled.tsx b/src/IconReopenWindowOutlinedFilled.tsx new file mode 100644 index 000000000..50c5d98f8 --- /dev/null +++ b/src/IconReopenWindowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReopenWindowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReopenWindowOutlinedFilled as default } diff --git a/src/IconReopenWindowRoundedFilled.tsx b/src/IconReopenWindowRoundedFilled.tsx new file mode 100644 index 000000000..40592fe38 --- /dev/null +++ b/src/IconReopenWindowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReopenWindowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReopenWindowRoundedFilled as default } diff --git a/src/IconReopenWindowSharpFilled.tsx b/src/IconReopenWindowSharpFilled.tsx new file mode 100644 index 000000000..137539091 --- /dev/null +++ b/src/IconReopenWindowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReopenWindowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReopenWindowSharpFilled as default } diff --git a/src/IconReorderOutlinedFilled.tsx b/src/IconReorderOutlinedFilled.tsx new file mode 100644 index 000000000..e15cc56ab --- /dev/null +++ b/src/IconReorderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReorderOutlinedFilled as default } diff --git a/src/IconReorderRoundedFilled.tsx b/src/IconReorderRoundedFilled.tsx new file mode 100644 index 000000000..435a8ec0c --- /dev/null +++ b/src/IconReorderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReorderRoundedFilled as default } diff --git a/src/IconReorderSharpFilled.tsx b/src/IconReorderSharpFilled.tsx new file mode 100644 index 000000000..1df43852c --- /dev/null +++ b/src/IconReorderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReorderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReorderSharpFilled as default } diff --git a/src/IconRepartitionOutlinedFilled.tsx b/src/IconRepartitionOutlinedFilled.tsx new file mode 100644 index 000000000..776a813c6 --- /dev/null +++ b/src/IconRepartitionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepartitionOutlinedFilled as default } diff --git a/src/IconRepartitionRoundedFilled.tsx b/src/IconRepartitionRoundedFilled.tsx new file mode 100644 index 000000000..e970b3c56 --- /dev/null +++ b/src/IconRepartitionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepartitionRoundedFilled as default } diff --git a/src/IconRepartitionSharpFilled.tsx b/src/IconRepartitionSharpFilled.tsx new file mode 100644 index 000000000..d9120913a --- /dev/null +++ b/src/IconRepartitionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepartitionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepartitionSharpFilled as default } diff --git a/src/IconRepeatOnOutlinedFilled.tsx b/src/IconRepeatOnOutlinedFilled.tsx new file mode 100644 index 000000000..03dc9d75c --- /dev/null +++ b/src/IconRepeatOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOnOutlinedFilled as default } diff --git a/src/IconRepeatOnRoundedFilled.tsx b/src/IconRepeatOnRoundedFilled.tsx new file mode 100644 index 000000000..bcbed47c5 --- /dev/null +++ b/src/IconRepeatOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOnRoundedFilled as default } diff --git a/src/IconRepeatOnSharpFilled.tsx b/src/IconRepeatOnSharpFilled.tsx new file mode 100644 index 000000000..919ae2dce --- /dev/null +++ b/src/IconRepeatOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOnSharpFilled as default } diff --git a/src/IconRepeatOneOnOutlinedFilled.tsx b/src/IconRepeatOneOnOutlinedFilled.tsx new file mode 100644 index 000000000..2605fc18b --- /dev/null +++ b/src/IconRepeatOneOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneOnOutlinedFilled as default } diff --git a/src/IconRepeatOneOnRoundedFilled.tsx b/src/IconRepeatOneOnRoundedFilled.tsx new file mode 100644 index 000000000..142e9965f --- /dev/null +++ b/src/IconRepeatOneOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneOnRoundedFilled as default } diff --git a/src/IconRepeatOneOnSharpFilled.tsx b/src/IconRepeatOneOnSharpFilled.tsx new file mode 100644 index 000000000..06bbb3a30 --- /dev/null +++ b/src/IconRepeatOneOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneOnSharpFilled as default } diff --git a/src/IconRepeatOneOutlinedFilled.tsx b/src/IconRepeatOneOutlinedFilled.tsx new file mode 100644 index 000000000..6200ea877 --- /dev/null +++ b/src/IconRepeatOneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneOutlinedFilled as default } diff --git a/src/IconRepeatOneRoundedFilled.tsx b/src/IconRepeatOneRoundedFilled.tsx new file mode 100644 index 000000000..372850722 --- /dev/null +++ b/src/IconRepeatOneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneRoundedFilled as default } diff --git a/src/IconRepeatOneSharpFilled.tsx b/src/IconRepeatOneSharpFilled.tsx new file mode 100644 index 000000000..ae1b7eff0 --- /dev/null +++ b/src/IconRepeatOneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOneSharpFilled as default } diff --git a/src/IconRepeatOutlinedFilled.tsx b/src/IconRepeatOutlinedFilled.tsx new file mode 100644 index 000000000..ba5a665b0 --- /dev/null +++ b/src/IconRepeatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatOutlinedFilled as default } diff --git a/src/IconRepeatRoundedFilled.tsx b/src/IconRepeatRoundedFilled.tsx new file mode 100644 index 000000000..8f3216876 --- /dev/null +++ b/src/IconRepeatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatRoundedFilled as default } diff --git a/src/IconRepeatSharpFilled.tsx b/src/IconRepeatSharpFilled.tsx new file mode 100644 index 000000000..105d7a8c6 --- /dev/null +++ b/src/IconRepeatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRepeatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRepeatSharpFilled as default } diff --git a/src/IconReplaceAudioOutlinedFilled.tsx b/src/IconReplaceAudioOutlinedFilled.tsx new file mode 100644 index 000000000..71f0009f3 --- /dev/null +++ b/src/IconReplaceAudioOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceAudioOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceAudioOutlinedFilled as default } diff --git a/src/IconReplaceAudioRoundedFilled.tsx b/src/IconReplaceAudioRoundedFilled.tsx new file mode 100644 index 000000000..7be12150a --- /dev/null +++ b/src/IconReplaceAudioRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceAudioRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceAudioRoundedFilled as default } diff --git a/src/IconReplaceAudioSharpFilled.tsx b/src/IconReplaceAudioSharpFilled.tsx new file mode 100644 index 000000000..a5089dc94 --- /dev/null +++ b/src/IconReplaceAudioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceAudioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceAudioSharpFilled as default } diff --git a/src/IconReplaceImageOutlinedFilled.tsx b/src/IconReplaceImageOutlinedFilled.tsx new file mode 100644 index 000000000..cbf327a21 --- /dev/null +++ b/src/IconReplaceImageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceImageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceImageOutlinedFilled as default } diff --git a/src/IconReplaceImageRoundedFilled.tsx b/src/IconReplaceImageRoundedFilled.tsx new file mode 100644 index 000000000..54f81936b --- /dev/null +++ b/src/IconReplaceImageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceImageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceImageRoundedFilled as default } diff --git a/src/IconReplaceImageSharpFilled.tsx b/src/IconReplaceImageSharpFilled.tsx new file mode 100644 index 000000000..b89e19286 --- /dev/null +++ b/src/IconReplaceImageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceImageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceImageSharpFilled as default } diff --git a/src/IconReplaceVideoOutlinedFilled.tsx b/src/IconReplaceVideoOutlinedFilled.tsx new file mode 100644 index 000000000..e11639ec8 --- /dev/null +++ b/src/IconReplaceVideoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceVideoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceVideoOutlinedFilled as default } diff --git a/src/IconReplaceVideoRoundedFilled.tsx b/src/IconReplaceVideoRoundedFilled.tsx new file mode 100644 index 000000000..632849239 --- /dev/null +++ b/src/IconReplaceVideoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceVideoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceVideoRoundedFilled as default } diff --git a/src/IconReplaceVideoSharpFilled.tsx b/src/IconReplaceVideoSharpFilled.tsx new file mode 100644 index 000000000..4005d71b8 --- /dev/null +++ b/src/IconReplaceVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaceVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaceVideoSharpFilled as default } diff --git a/src/IconReplay10OutlinedFilled.tsx b/src/IconReplay10OutlinedFilled.tsx new file mode 100644 index 000000000..6b12e1834 --- /dev/null +++ b/src/IconReplay10OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay10OutlinedFilled as default } diff --git a/src/IconReplay10RoundedFilled.tsx b/src/IconReplay10RoundedFilled.tsx new file mode 100644 index 000000000..0a6a00a24 --- /dev/null +++ b/src/IconReplay10RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay10RoundedFilled as default } diff --git a/src/IconReplay10SharpFilled.tsx b/src/IconReplay10SharpFilled.tsx new file mode 100644 index 000000000..64ee62dd1 --- /dev/null +++ b/src/IconReplay10SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay10SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay10SharpFilled as default } diff --git a/src/IconReplay30OutlinedFilled.tsx b/src/IconReplay30OutlinedFilled.tsx new file mode 100644 index 000000000..db519f088 --- /dev/null +++ b/src/IconReplay30OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay30OutlinedFilled as default } diff --git a/src/IconReplay30RoundedFilled.tsx b/src/IconReplay30RoundedFilled.tsx new file mode 100644 index 000000000..6be63d6d6 --- /dev/null +++ b/src/IconReplay30RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay30RoundedFilled as default } diff --git a/src/IconReplay30SharpFilled.tsx b/src/IconReplay30SharpFilled.tsx new file mode 100644 index 000000000..232d4c29b --- /dev/null +++ b/src/IconReplay30SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay30SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay30SharpFilled as default } diff --git a/src/IconReplay5OutlinedFilled.tsx b/src/IconReplay5OutlinedFilled.tsx new file mode 100644 index 000000000..486b7f43e --- /dev/null +++ b/src/IconReplay5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay5OutlinedFilled as default } diff --git a/src/IconReplay5RoundedFilled.tsx b/src/IconReplay5RoundedFilled.tsx new file mode 100644 index 000000000..c78620495 --- /dev/null +++ b/src/IconReplay5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay5RoundedFilled as default } diff --git a/src/IconReplay5SharpFilled.tsx b/src/IconReplay5SharpFilled.tsx new file mode 100644 index 000000000..e1f91b96c --- /dev/null +++ b/src/IconReplay5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplay5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplay5SharpFilled as default } diff --git a/src/IconReplayOutlinedFilled.tsx b/src/IconReplayOutlinedFilled.tsx new file mode 100644 index 000000000..7247aa1c6 --- /dev/null +++ b/src/IconReplayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplayOutlinedFilled as default } diff --git a/src/IconReplayRoundedFilled.tsx b/src/IconReplayRoundedFilled.tsx new file mode 100644 index 000000000..0174ee32e --- /dev/null +++ b/src/IconReplayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplayRoundedFilled as default } diff --git a/src/IconReplaySharpFilled.tsx b/src/IconReplaySharpFilled.tsx new file mode 100644 index 000000000..8ac658441 --- /dev/null +++ b/src/IconReplaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplaySharpFilled as default } diff --git a/src/IconReplyAllOutlinedFilled.tsx b/src/IconReplyAllOutlinedFilled.tsx new file mode 100644 index 000000000..298df10a9 --- /dev/null +++ b/src/IconReplyAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplyAllOutlinedFilled as default } diff --git a/src/IconReplyAllRoundedFilled.tsx b/src/IconReplyAllRoundedFilled.tsx new file mode 100644 index 000000000..e3495c810 --- /dev/null +++ b/src/IconReplyAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplyAllRoundedFilled as default } diff --git a/src/IconReplyAllSharpFilled.tsx b/src/IconReplyAllSharpFilled.tsx new file mode 100644 index 000000000..47472f533 --- /dev/null +++ b/src/IconReplyAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplyAllSharpFilled as default } diff --git a/src/IconReplyOutlinedFilled.tsx b/src/IconReplyOutlinedFilled.tsx new file mode 100644 index 000000000..d77a9ab33 --- /dev/null +++ b/src/IconReplyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplyOutlinedFilled as default } diff --git a/src/IconReplyRoundedFilled.tsx b/src/IconReplyRoundedFilled.tsx new file mode 100644 index 000000000..b374b89f1 --- /dev/null +++ b/src/IconReplyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplyRoundedFilled as default } diff --git a/src/IconReplySharpFilled.tsx b/src/IconReplySharpFilled.tsx new file mode 100644 index 000000000..eb1e34a5f --- /dev/null +++ b/src/IconReplySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReplySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReplySharpFilled as default } diff --git a/src/IconReportOffOutlinedFilled.tsx b/src/IconReportOffOutlinedFilled.tsx new file mode 100644 index 000000000..52620d37a --- /dev/null +++ b/src/IconReportOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReportOffOutlinedFilled as default } diff --git a/src/IconReportOffRoundedFilled.tsx b/src/IconReportOffRoundedFilled.tsx new file mode 100644 index 000000000..7775443f8 --- /dev/null +++ b/src/IconReportOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReportOffRoundedFilled as default } diff --git a/src/IconReportOffSharpFilled.tsx b/src/IconReportOffSharpFilled.tsx new file mode 100644 index 000000000..4c50c7d69 --- /dev/null +++ b/src/IconReportOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReportOffSharpFilled as default } diff --git a/src/IconReportOutlinedFilled.tsx b/src/IconReportOutlinedFilled.tsx new file mode 100644 index 000000000..d8591c141 --- /dev/null +++ b/src/IconReportOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReportOutlinedFilled as default } diff --git a/src/IconReportRoundedFilled.tsx b/src/IconReportRoundedFilled.tsx new file mode 100644 index 000000000..475dea3a2 --- /dev/null +++ b/src/IconReportRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReportRoundedFilled as default } diff --git a/src/IconReportSharpFilled.tsx b/src/IconReportSharpFilled.tsx new file mode 100644 index 000000000..797fab04c --- /dev/null +++ b/src/IconReportSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReportSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReportSharpFilled as default } diff --git a/src/IconRequestPageOutlinedFilled.tsx b/src/IconRequestPageOutlinedFilled.tsx new file mode 100644 index 000000000..429d7fbe7 --- /dev/null +++ b/src/IconRequestPageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRequestPageOutlinedFilled as default } diff --git a/src/IconRequestPageRoundedFilled.tsx b/src/IconRequestPageRoundedFilled.tsx new file mode 100644 index 000000000..3742311c6 --- /dev/null +++ b/src/IconRequestPageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRequestPageRoundedFilled as default } diff --git a/src/IconRequestPageSharpFilled.tsx b/src/IconRequestPageSharpFilled.tsx new file mode 100644 index 000000000..77ef6ad12 --- /dev/null +++ b/src/IconRequestPageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestPageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRequestPageSharpFilled as default } diff --git a/src/IconRequestQuoteOutlinedFilled.tsx b/src/IconRequestQuoteOutlinedFilled.tsx new file mode 100644 index 000000000..040d1145f --- /dev/null +++ b/src/IconRequestQuoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRequestQuoteOutlinedFilled as default } diff --git a/src/IconRequestQuoteRoundedFilled.tsx b/src/IconRequestQuoteRoundedFilled.tsx new file mode 100644 index 000000000..d1ab6e345 --- /dev/null +++ b/src/IconRequestQuoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRequestQuoteRoundedFilled as default } diff --git a/src/IconRequestQuoteSharpFilled.tsx b/src/IconRequestQuoteSharpFilled.tsx new file mode 100644 index 000000000..1a1882760 --- /dev/null +++ b/src/IconRequestQuoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRequestQuoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRequestQuoteSharpFilled as default } diff --git a/src/IconResetBrightnessOutlinedFilled.tsx b/src/IconResetBrightnessOutlinedFilled.tsx new file mode 100644 index 000000000..95ed24855 --- /dev/null +++ b/src/IconResetBrightnessOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetBrightnessOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetBrightnessOutlinedFilled as default } diff --git a/src/IconResetBrightnessRoundedFilled.tsx b/src/IconResetBrightnessRoundedFilled.tsx new file mode 100644 index 000000000..3b3866c7e --- /dev/null +++ b/src/IconResetBrightnessRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetBrightnessRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetBrightnessRoundedFilled as default } diff --git a/src/IconResetBrightnessSharpFilled.tsx b/src/IconResetBrightnessSharpFilled.tsx new file mode 100644 index 000000000..17fc70d0e --- /dev/null +++ b/src/IconResetBrightnessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetBrightnessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetBrightnessSharpFilled as default } diff --git a/src/IconResetFocusOutlinedFilled.tsx b/src/IconResetFocusOutlinedFilled.tsx new file mode 100644 index 000000000..001ea2ab7 --- /dev/null +++ b/src/IconResetFocusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetFocusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetFocusOutlinedFilled as default } diff --git a/src/IconResetFocusRoundedFilled.tsx b/src/IconResetFocusRoundedFilled.tsx new file mode 100644 index 000000000..9347f9fe3 --- /dev/null +++ b/src/IconResetFocusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetFocusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetFocusRoundedFilled as default } diff --git a/src/IconResetFocusSharpFilled.tsx b/src/IconResetFocusSharpFilled.tsx new file mode 100644 index 000000000..c48a47cae --- /dev/null +++ b/src/IconResetFocusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetFocusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetFocusSharpFilled as default } diff --git a/src/IconResetImageOutlinedFilled.tsx b/src/IconResetImageOutlinedFilled.tsx new file mode 100644 index 000000000..92adf4970 --- /dev/null +++ b/src/IconResetImageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetImageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetImageOutlinedFilled as default } diff --git a/src/IconResetImageRoundedFilled.tsx b/src/IconResetImageRoundedFilled.tsx new file mode 100644 index 000000000..e067ed1f9 --- /dev/null +++ b/src/IconResetImageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetImageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetImageRoundedFilled as default } diff --git a/src/IconResetImageSharpFilled.tsx b/src/IconResetImageSharpFilled.tsx new file mode 100644 index 000000000..57e5988e4 --- /dev/null +++ b/src/IconResetImageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetImageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetImageSharpFilled as default } diff --git a/src/IconResetIsoOutlinedFilled.tsx b/src/IconResetIsoOutlinedFilled.tsx new file mode 100644 index 000000000..cf365356d --- /dev/null +++ b/src/IconResetIsoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetIsoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetIsoOutlinedFilled as default } diff --git a/src/IconResetIsoRoundedFilled.tsx b/src/IconResetIsoRoundedFilled.tsx new file mode 100644 index 000000000..c8a2f26ac --- /dev/null +++ b/src/IconResetIsoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetIsoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetIsoRoundedFilled as default } diff --git a/src/IconResetIsoSharpFilled.tsx b/src/IconResetIsoSharpFilled.tsx new file mode 100644 index 000000000..e9c921cc5 --- /dev/null +++ b/src/IconResetIsoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetIsoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetIsoSharpFilled as default } diff --git a/src/IconResetSettingsOutlinedFilled.tsx b/src/IconResetSettingsOutlinedFilled.tsx new file mode 100644 index 000000000..b853ee32d --- /dev/null +++ b/src/IconResetSettingsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetSettingsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetSettingsOutlinedFilled as default } diff --git a/src/IconResetSettingsRoundedFilled.tsx b/src/IconResetSettingsRoundedFilled.tsx new file mode 100644 index 000000000..4ed9da443 --- /dev/null +++ b/src/IconResetSettingsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetSettingsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetSettingsRoundedFilled as default } diff --git a/src/IconResetSettingsSharpFilled.tsx b/src/IconResetSettingsSharpFilled.tsx new file mode 100644 index 000000000..a0974772b --- /dev/null +++ b/src/IconResetSettingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetSettingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetSettingsSharpFilled as default } diff --git a/src/IconResetShadowOutlinedFilled.tsx b/src/IconResetShadowOutlinedFilled.tsx new file mode 100644 index 000000000..65e3b5c6c --- /dev/null +++ b/src/IconResetShadowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetShadowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetShadowOutlinedFilled as default } diff --git a/src/IconResetShadowRoundedFilled.tsx b/src/IconResetShadowRoundedFilled.tsx new file mode 100644 index 000000000..4fbfca6af --- /dev/null +++ b/src/IconResetShadowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetShadowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetShadowRoundedFilled as default } diff --git a/src/IconResetShadowSharpFilled.tsx b/src/IconResetShadowSharpFilled.tsx new file mode 100644 index 000000000..593eb2bb2 --- /dev/null +++ b/src/IconResetShadowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetShadowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetShadowSharpFilled as default } diff --git a/src/IconResetShutterSpeedOutlinedFilled.tsx b/src/IconResetShutterSpeedOutlinedFilled.tsx new file mode 100644 index 000000000..32ab36495 --- /dev/null +++ b/src/IconResetShutterSpeedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetShutterSpeedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetShutterSpeedOutlinedFilled as default } diff --git a/src/IconResetShutterSpeedRoundedFilled.tsx b/src/IconResetShutterSpeedRoundedFilled.tsx new file mode 100644 index 000000000..df2c0c740 --- /dev/null +++ b/src/IconResetShutterSpeedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetShutterSpeedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetShutterSpeedRoundedFilled as default } diff --git a/src/IconResetShutterSpeedSharpFilled.tsx b/src/IconResetShutterSpeedSharpFilled.tsx new file mode 100644 index 000000000..8b5d93dfb --- /dev/null +++ b/src/IconResetShutterSpeedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetShutterSpeedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetShutterSpeedSharpFilled as default } diff --git a/src/IconResetTvOutlinedFilled.tsx b/src/IconResetTvOutlinedFilled.tsx new file mode 100644 index 000000000..d949c2263 --- /dev/null +++ b/src/IconResetTvOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetTvOutlinedFilled as default } diff --git a/src/IconResetTvRoundedFilled.tsx b/src/IconResetTvRoundedFilled.tsx new file mode 100644 index 000000000..77c047157 --- /dev/null +++ b/src/IconResetTvRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetTvRoundedFilled as default } diff --git a/src/IconResetTvSharpFilled.tsx b/src/IconResetTvSharpFilled.tsx new file mode 100644 index 000000000..b01847a3e --- /dev/null +++ b/src/IconResetTvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetTvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetTvSharpFilled as default } diff --git a/src/IconResetWhiteBalanceOutlinedFilled.tsx b/src/IconResetWhiteBalanceOutlinedFilled.tsx new file mode 100644 index 000000000..7ca71e830 --- /dev/null +++ b/src/IconResetWhiteBalanceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetWhiteBalanceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetWhiteBalanceOutlinedFilled as default } diff --git a/src/IconResetWhiteBalanceRoundedFilled.tsx b/src/IconResetWhiteBalanceRoundedFilled.tsx new file mode 100644 index 000000000..fd8b74c49 --- /dev/null +++ b/src/IconResetWhiteBalanceRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetWhiteBalanceRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetWhiteBalanceRoundedFilled as default } diff --git a/src/IconResetWhiteBalanceSharpFilled.tsx b/src/IconResetWhiteBalanceSharpFilled.tsx new file mode 100644 index 000000000..a593c8e03 --- /dev/null +++ b/src/IconResetWhiteBalanceSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetWhiteBalanceSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResetWhiteBalanceSharpFilled as default } diff --git a/src/IconResetWrenchOutlinedFilled.tsx b/src/IconResetWrenchOutlinedFilled.tsx new file mode 100644 index 000000000..91cc1d602 --- /dev/null +++ b/src/IconResetWrenchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetWrenchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetWrenchOutlinedFilled as default } diff --git a/src/IconResetWrenchRoundedFilled.tsx b/src/IconResetWrenchRoundedFilled.tsx new file mode 100644 index 000000000..c858ceb63 --- /dev/null +++ b/src/IconResetWrenchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetWrenchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetWrenchRoundedFilled as default } diff --git a/src/IconResetWrenchSharpFilled.tsx b/src/IconResetWrenchSharpFilled.tsx new file mode 100644 index 000000000..61a179327 --- /dev/null +++ b/src/IconResetWrenchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResetWrenchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResetWrenchSharpFilled as default } diff --git a/src/IconResizeOutlinedFilled.tsx b/src/IconResizeOutlinedFilled.tsx new file mode 100644 index 000000000..2f950a56c --- /dev/null +++ b/src/IconResizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResizeOutlinedFilled as default } diff --git a/src/IconResizeRoundedFilled.tsx b/src/IconResizeRoundedFilled.tsx new file mode 100644 index 000000000..e1e2e9918 --- /dev/null +++ b/src/IconResizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResizeRoundedFilled as default } diff --git a/src/IconResizeSharpFilled.tsx b/src/IconResizeSharpFilled.tsx new file mode 100644 index 000000000..92c46b3e8 --- /dev/null +++ b/src/IconResizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResizeSharpFilled as default } diff --git a/src/IconRespiratoryRateOutlinedFilled.tsx b/src/IconRespiratoryRateOutlinedFilled.tsx new file mode 100644 index 000000000..7fa38ff77 --- /dev/null +++ b/src/IconRespiratoryRateOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRespiratoryRateOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRespiratoryRateOutlinedFilled as default } diff --git a/src/IconRespiratoryRateRoundedFilled.tsx b/src/IconRespiratoryRateRoundedFilled.tsx new file mode 100644 index 000000000..5cb9e5622 --- /dev/null +++ b/src/IconRespiratoryRateRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRespiratoryRateRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRespiratoryRateRoundedFilled as default } diff --git a/src/IconRespiratoryRateSharpFilled.tsx b/src/IconRespiratoryRateSharpFilled.tsx new file mode 100644 index 000000000..e6f09043a --- /dev/null +++ b/src/IconRespiratoryRateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRespiratoryRateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRespiratoryRateSharpFilled as default } diff --git a/src/IconResponsiveLayoutOutlinedFilled.tsx b/src/IconResponsiveLayoutOutlinedFilled.tsx new file mode 100644 index 000000000..501388c28 --- /dev/null +++ b/src/IconResponsiveLayoutOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResponsiveLayoutOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResponsiveLayoutOutlinedFilled as default } diff --git a/src/IconResponsiveLayoutRoundedFilled.tsx b/src/IconResponsiveLayoutRoundedFilled.tsx new file mode 100644 index 000000000..87d72ca6f --- /dev/null +++ b/src/IconResponsiveLayoutRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResponsiveLayoutRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconResponsiveLayoutRoundedFilled as default } diff --git a/src/IconResponsiveLayoutSharpFilled.tsx b/src/IconResponsiveLayoutSharpFilled.tsx new file mode 100644 index 000000000..b5c41eb03 --- /dev/null +++ b/src/IconResponsiveLayoutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResponsiveLayoutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResponsiveLayoutSharpFilled as default } diff --git a/src/IconRestartAltOutlinedFilled.tsx b/src/IconRestartAltOutlinedFilled.tsx new file mode 100644 index 000000000..c76e24ac1 --- /dev/null +++ b/src/IconRestartAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestartAltOutlinedFilled as default } diff --git a/src/IconRestartAltRoundedFilled.tsx b/src/IconRestartAltRoundedFilled.tsx new file mode 100644 index 000000000..4e183e525 --- /dev/null +++ b/src/IconRestartAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestartAltRoundedFilled as default } diff --git a/src/IconRestartAltSharpFilled.tsx b/src/IconRestartAltSharpFilled.tsx new file mode 100644 index 000000000..e0d334178 --- /dev/null +++ b/src/IconRestartAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestartAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestartAltSharpFilled as default } diff --git a/src/IconRestaurantOutlinedFilled.tsx b/src/IconRestaurantOutlinedFilled.tsx new file mode 100644 index 000000000..4471f12a8 --- /dev/null +++ b/src/IconRestaurantOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestaurantOutlinedFilled as default } diff --git a/src/IconRestaurantRoundedFilled.tsx b/src/IconRestaurantRoundedFilled.tsx new file mode 100644 index 000000000..e24cb14ab --- /dev/null +++ b/src/IconRestaurantRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestaurantRoundedFilled as default } diff --git a/src/IconRestaurantSharpFilled.tsx b/src/IconRestaurantSharpFilled.tsx new file mode 100644 index 000000000..2db9a6947 --- /dev/null +++ b/src/IconRestaurantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestaurantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestaurantSharpFilled as default } diff --git a/src/IconRestoreFromTrashOutlinedFilled.tsx b/src/IconRestoreFromTrashOutlinedFilled.tsx new file mode 100644 index 000000000..22d3eb0d1 --- /dev/null +++ b/src/IconRestoreFromTrashOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRestoreFromTrashOutlinedFilled as default } diff --git a/src/IconRestoreFromTrashRoundedFilled.tsx b/src/IconRestoreFromTrashRoundedFilled.tsx new file mode 100644 index 000000000..85dc1ecf3 --- /dev/null +++ b/src/IconRestoreFromTrashRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRestoreFromTrashRoundedFilled as default } diff --git a/src/IconRestoreFromTrashSharpFilled.tsx b/src/IconRestoreFromTrashSharpFilled.tsx new file mode 100644 index 000000000..d588a849c --- /dev/null +++ b/src/IconRestoreFromTrashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestoreFromTrashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestoreFromTrashSharpFilled as default } diff --git a/src/IconRestorePageOutlinedFilled.tsx b/src/IconRestorePageOutlinedFilled.tsx new file mode 100644 index 000000000..4524b82b4 --- /dev/null +++ b/src/IconRestorePageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestorePageOutlinedFilled as default } diff --git a/src/IconRestorePageRoundedFilled.tsx b/src/IconRestorePageRoundedFilled.tsx new file mode 100644 index 000000000..b13cd137e --- /dev/null +++ b/src/IconRestorePageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestorePageRoundedFilled as default } diff --git a/src/IconRestorePageSharpFilled.tsx b/src/IconRestorePageSharpFilled.tsx new file mode 100644 index 000000000..3927c2607 --- /dev/null +++ b/src/IconRestorePageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRestorePageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRestorePageSharpFilled as default } diff --git a/src/IconResumeOutlinedFilled.tsx b/src/IconResumeOutlinedFilled.tsx new file mode 100644 index 000000000..ed545e1f7 --- /dev/null +++ b/src/IconResumeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResumeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResumeOutlinedFilled as default } diff --git a/src/IconResumeRoundedFilled.tsx b/src/IconResumeRoundedFilled.tsx new file mode 100644 index 000000000..5a25277ea --- /dev/null +++ b/src/IconResumeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResumeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResumeRoundedFilled as default } diff --git a/src/IconResumeSharpFilled.tsx b/src/IconResumeSharpFilled.tsx new file mode 100644 index 000000000..9737454b3 --- /dev/null +++ b/src/IconResumeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconResumeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconResumeSharpFilled as default } diff --git a/src/IconReviewsOutlinedFilled.tsx b/src/IconReviewsOutlinedFilled.tsx new file mode 100644 index 000000000..2284c3311 --- /dev/null +++ b/src/IconReviewsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReviewsOutlinedFilled as default } diff --git a/src/IconReviewsRoundedFilled.tsx b/src/IconReviewsRoundedFilled.tsx new file mode 100644 index 000000000..5daf92af6 --- /dev/null +++ b/src/IconReviewsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReviewsRoundedFilled as default } diff --git a/src/IconReviewsSharpFilled.tsx b/src/IconReviewsSharpFilled.tsx new file mode 100644 index 000000000..7969097fd --- /dev/null +++ b/src/IconReviewsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconReviewsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconReviewsSharpFilled as default } diff --git a/src/IconRewardedAdsOutlinedFilled.tsx b/src/IconRewardedAdsOutlinedFilled.tsx new file mode 100644 index 000000000..f3987a0eb --- /dev/null +++ b/src/IconRewardedAdsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRewardedAdsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRewardedAdsOutlinedFilled as default } diff --git a/src/IconRewardedAdsRoundedFilled.tsx b/src/IconRewardedAdsRoundedFilled.tsx new file mode 100644 index 000000000..6eb0389fa --- /dev/null +++ b/src/IconRewardedAdsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRewardedAdsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRewardedAdsRoundedFilled as default } diff --git a/src/IconRewardedAdsSharpFilled.tsx b/src/IconRewardedAdsSharpFilled.tsx new file mode 100644 index 000000000..6d7c10ce0 --- /dev/null +++ b/src/IconRewardedAdsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRewardedAdsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRewardedAdsSharpFilled as default } diff --git a/src/IconRheumatologyOutlinedFilled.tsx b/src/IconRheumatologyOutlinedFilled.tsx new file mode 100644 index 000000000..1c9eea3ca --- /dev/null +++ b/src/IconRheumatologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRheumatologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRheumatologyOutlinedFilled as default } diff --git a/src/IconRheumatologyRoundedFilled.tsx b/src/IconRheumatologyRoundedFilled.tsx new file mode 100644 index 000000000..487a1d288 --- /dev/null +++ b/src/IconRheumatologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRheumatologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRheumatologyRoundedFilled as default } diff --git a/src/IconRheumatologySharpFilled.tsx b/src/IconRheumatologySharpFilled.tsx new file mode 100644 index 000000000..2edca1c0a --- /dev/null +++ b/src/IconRheumatologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRheumatologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRheumatologySharpFilled as default } diff --git a/src/IconRibCageOutlinedFilled.tsx b/src/IconRibCageOutlinedFilled.tsx new file mode 100644 index 000000000..83f3a39d2 --- /dev/null +++ b/src/IconRibCageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRibCageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRibCageOutlinedFilled as default } diff --git a/src/IconRibCageRoundedFilled.tsx b/src/IconRibCageRoundedFilled.tsx new file mode 100644 index 000000000..edf92e472 --- /dev/null +++ b/src/IconRibCageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRibCageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRibCageRoundedFilled as default } diff --git a/src/IconRibCageSharpFilled.tsx b/src/IconRibCageSharpFilled.tsx new file mode 100644 index 000000000..86ab20855 --- /dev/null +++ b/src/IconRibCageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRibCageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRibCageSharpFilled as default } diff --git a/src/IconRiceBowlOutlinedFilled.tsx b/src/IconRiceBowlOutlinedFilled.tsx new file mode 100644 index 000000000..3043c7d71 --- /dev/null +++ b/src/IconRiceBowlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRiceBowlOutlinedFilled as default } diff --git a/src/IconRiceBowlRoundedFilled.tsx b/src/IconRiceBowlRoundedFilled.tsx new file mode 100644 index 000000000..96bcae677 --- /dev/null +++ b/src/IconRiceBowlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRiceBowlRoundedFilled as default } diff --git a/src/IconRiceBowlSharpFilled.tsx b/src/IconRiceBowlSharpFilled.tsx new file mode 100644 index 000000000..ce2cb4986 --- /dev/null +++ b/src/IconRiceBowlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRiceBowlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRiceBowlSharpFilled as default } diff --git a/src/IconRightClickOutlinedFilled.tsx b/src/IconRightClickOutlinedFilled.tsx new file mode 100644 index 000000000..7bf1fb518 --- /dev/null +++ b/src/IconRightClickOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightClickOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRightClickOutlinedFilled as default } diff --git a/src/IconRightClickRoundedFilled.tsx b/src/IconRightClickRoundedFilled.tsx new file mode 100644 index 000000000..668d886dc --- /dev/null +++ b/src/IconRightClickRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightClickRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRightClickRoundedFilled as default } diff --git a/src/IconRightClickSharpFilled.tsx b/src/IconRightClickSharpFilled.tsx new file mode 100644 index 000000000..0bd4f9213 --- /dev/null +++ b/src/IconRightClickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightClickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRightClickSharpFilled as default } diff --git a/src/IconRightPanelCloseOutlinedFilled.tsx b/src/IconRightPanelCloseOutlinedFilled.tsx new file mode 100644 index 000000000..7730412b9 --- /dev/null +++ b/src/IconRightPanelCloseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightPanelCloseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRightPanelCloseOutlinedFilled as default } diff --git a/src/IconRightPanelCloseRoundedFilled.tsx b/src/IconRightPanelCloseRoundedFilled.tsx new file mode 100644 index 000000000..07e9002ee --- /dev/null +++ b/src/IconRightPanelCloseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightPanelCloseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRightPanelCloseRoundedFilled as default } diff --git a/src/IconRightPanelCloseSharpFilled.tsx b/src/IconRightPanelCloseSharpFilled.tsx new file mode 100644 index 000000000..593514e07 --- /dev/null +++ b/src/IconRightPanelCloseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightPanelCloseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRightPanelCloseSharpFilled as default } diff --git a/src/IconRightPanelOpenOutlinedFilled.tsx b/src/IconRightPanelOpenOutlinedFilled.tsx new file mode 100644 index 000000000..83d0584c2 --- /dev/null +++ b/src/IconRightPanelOpenOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightPanelOpenOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRightPanelOpenOutlinedFilled as default } diff --git a/src/IconRightPanelOpenRoundedFilled.tsx b/src/IconRightPanelOpenRoundedFilled.tsx new file mode 100644 index 000000000..2a5ee3a9f --- /dev/null +++ b/src/IconRightPanelOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightPanelOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRightPanelOpenRoundedFilled as default } diff --git a/src/IconRightPanelOpenSharpFilled.tsx b/src/IconRightPanelOpenSharpFilled.tsx new file mode 100644 index 000000000..1ef92c4de --- /dev/null +++ b/src/IconRightPanelOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRightPanelOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRightPanelOpenSharpFilled as default } diff --git a/src/IconRingVolumeOutlinedFilled.tsx b/src/IconRingVolumeOutlinedFilled.tsx new file mode 100644 index 000000000..ee81920f5 --- /dev/null +++ b/src/IconRingVolumeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRingVolumeOutlinedFilled as default } diff --git a/src/IconRingVolumeRoundedFilled.tsx b/src/IconRingVolumeRoundedFilled.tsx new file mode 100644 index 000000000..7a2398525 --- /dev/null +++ b/src/IconRingVolumeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRingVolumeRoundedFilled as default } diff --git a/src/IconRingVolumeSharpFilled.tsx b/src/IconRingVolumeSharpFilled.tsx new file mode 100644 index 000000000..3f3ee621c --- /dev/null +++ b/src/IconRingVolumeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRingVolumeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRingVolumeSharpFilled as default } diff --git a/src/IconRipplesOutlinedFilled.tsx b/src/IconRipplesOutlinedFilled.tsx new file mode 100644 index 000000000..9f8c47258 --- /dev/null +++ b/src/IconRipplesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRipplesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRipplesOutlinedFilled as default } diff --git a/src/IconRipplesRoundedFilled.tsx b/src/IconRipplesRoundedFilled.tsx new file mode 100644 index 000000000..8f85bfa45 --- /dev/null +++ b/src/IconRipplesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRipplesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRipplesRoundedFilled as default } diff --git a/src/IconRipplesSharpFilled.tsx b/src/IconRipplesSharpFilled.tsx new file mode 100644 index 000000000..a6ed5ea9e --- /dev/null +++ b/src/IconRipplesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRipplesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRipplesSharpFilled as default } diff --git a/src/IconRoadOutlinedFilled.tsx b/src/IconRoadOutlinedFilled.tsx new file mode 100644 index 000000000..034e46157 --- /dev/null +++ b/src/IconRoadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoadOutlinedFilled as default } diff --git a/src/IconRoadRoundedFilled.tsx b/src/IconRoadRoundedFilled.tsx new file mode 100644 index 000000000..1a594c5f2 --- /dev/null +++ b/src/IconRoadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoadRoundedFilled as default } diff --git a/src/IconRoadSharpFilled.tsx b/src/IconRoadSharpFilled.tsx new file mode 100644 index 000000000..042334cf9 --- /dev/null +++ b/src/IconRoadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoadSharpFilled as default } diff --git a/src/IconRobot2OutlinedFilled.tsx b/src/IconRobot2OutlinedFilled.tsx new file mode 100644 index 000000000..e9ff1f03f --- /dev/null +++ b/src/IconRobot2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRobot2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRobot2OutlinedFilled as default } diff --git a/src/IconRobot2RoundedFilled.tsx b/src/IconRobot2RoundedFilled.tsx new file mode 100644 index 000000000..44ce357f3 --- /dev/null +++ b/src/IconRobot2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRobot2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRobot2RoundedFilled as default } diff --git a/src/IconRobot2SharpFilled.tsx b/src/IconRobot2SharpFilled.tsx new file mode 100644 index 000000000..2edb9d272 --- /dev/null +++ b/src/IconRobot2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRobot2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRobot2SharpFilled as default } diff --git a/src/IconRobotOutlinedFilled.tsx b/src/IconRobotOutlinedFilled.tsx new file mode 100644 index 000000000..241be08de --- /dev/null +++ b/src/IconRobotOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRobotOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRobotOutlinedFilled as default } diff --git a/src/IconRobotRoundedFilled.tsx b/src/IconRobotRoundedFilled.tsx new file mode 100644 index 000000000..050b218b1 --- /dev/null +++ b/src/IconRobotRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRobotRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRobotRoundedFilled as default } diff --git a/src/IconRobotSharpFilled.tsx b/src/IconRobotSharpFilled.tsx new file mode 100644 index 000000000..9f328e50a --- /dev/null +++ b/src/IconRobotSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRobotSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRobotSharpFilled as default } diff --git a/src/IconRocketLaunchOutlinedFilled.tsx b/src/IconRocketLaunchOutlinedFilled.tsx new file mode 100644 index 000000000..37f8ffc12 --- /dev/null +++ b/src/IconRocketLaunchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRocketLaunchOutlinedFilled as default } diff --git a/src/IconRocketLaunchRoundedFilled.tsx b/src/IconRocketLaunchRoundedFilled.tsx new file mode 100644 index 000000000..2f457265c --- /dev/null +++ b/src/IconRocketLaunchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRocketLaunchRoundedFilled as default } diff --git a/src/IconRocketLaunchSharpFilled.tsx b/src/IconRocketLaunchSharpFilled.tsx new file mode 100644 index 000000000..0f8ff4b95 --- /dev/null +++ b/src/IconRocketLaunchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketLaunchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRocketLaunchSharpFilled as default } diff --git a/src/IconRocketOutlinedFilled.tsx b/src/IconRocketOutlinedFilled.tsx new file mode 100644 index 000000000..bdfafbb63 --- /dev/null +++ b/src/IconRocketOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRocketOutlinedFilled as default } diff --git a/src/IconRocketRoundedFilled.tsx b/src/IconRocketRoundedFilled.tsx new file mode 100644 index 000000000..7238a1bae --- /dev/null +++ b/src/IconRocketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRocketRoundedFilled as default } diff --git a/src/IconRocketSharpFilled.tsx b/src/IconRocketSharpFilled.tsx new file mode 100644 index 000000000..92a7f3c7c --- /dev/null +++ b/src/IconRocketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRocketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRocketSharpFilled as default } diff --git a/src/IconRollerShadesClosedOutlinedFilled.tsx b/src/IconRollerShadesClosedOutlinedFilled.tsx new file mode 100644 index 000000000..5a0dbf10e --- /dev/null +++ b/src/IconRollerShadesClosedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerShadesClosedOutlinedFilled as default } diff --git a/src/IconRollerShadesClosedRoundedFilled.tsx b/src/IconRollerShadesClosedRoundedFilled.tsx new file mode 100644 index 000000000..22be4fbeb --- /dev/null +++ b/src/IconRollerShadesClosedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerShadesClosedRoundedFilled as default } diff --git a/src/IconRollerShadesClosedSharpFilled.tsx b/src/IconRollerShadesClosedSharpFilled.tsx new file mode 100644 index 000000000..2f57c65c4 --- /dev/null +++ b/src/IconRollerShadesClosedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesClosedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerShadesClosedSharpFilled as default } diff --git a/src/IconRollerShadesOutlinedFilled.tsx b/src/IconRollerShadesOutlinedFilled.tsx new file mode 100644 index 000000000..d10c68d38 --- /dev/null +++ b/src/IconRollerShadesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerShadesOutlinedFilled as default } diff --git a/src/IconRollerShadesRoundedFilled.tsx b/src/IconRollerShadesRoundedFilled.tsx new file mode 100644 index 000000000..8457f1288 --- /dev/null +++ b/src/IconRollerShadesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerShadesRoundedFilled as default } diff --git a/src/IconRollerShadesSharpFilled.tsx b/src/IconRollerShadesSharpFilled.tsx new file mode 100644 index 000000000..60c042765 --- /dev/null +++ b/src/IconRollerShadesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerShadesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerShadesSharpFilled as default } diff --git a/src/IconRollerSkatingOutlinedFilled.tsx b/src/IconRollerSkatingOutlinedFilled.tsx new file mode 100644 index 000000000..13f95d011 --- /dev/null +++ b/src/IconRollerSkatingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerSkatingOutlinedFilled as default } diff --git a/src/IconRollerSkatingRoundedFilled.tsx b/src/IconRollerSkatingRoundedFilled.tsx new file mode 100644 index 000000000..4f8b812dd --- /dev/null +++ b/src/IconRollerSkatingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerSkatingRoundedFilled as default } diff --git a/src/IconRollerSkatingSharpFilled.tsx b/src/IconRollerSkatingSharpFilled.tsx new file mode 100644 index 000000000..e4f2db3ed --- /dev/null +++ b/src/IconRollerSkatingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRollerSkatingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRollerSkatingSharpFilled as default } diff --git a/src/IconRoofingOutlinedFilled.tsx b/src/IconRoofingOutlinedFilled.tsx new file mode 100644 index 000000000..b0b35c122 --- /dev/null +++ b/src/IconRoofingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoofingOutlinedFilled as default } diff --git a/src/IconRoofingRoundedFilled.tsx b/src/IconRoofingRoundedFilled.tsx new file mode 100644 index 000000000..2b66b28cc --- /dev/null +++ b/src/IconRoofingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoofingRoundedFilled as default } diff --git a/src/IconRoofingSharpFilled.tsx b/src/IconRoofingSharpFilled.tsx new file mode 100644 index 000000000..410e7abda --- /dev/null +++ b/src/IconRoofingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoofingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoofingSharpFilled as default } diff --git a/src/IconRoomPreferencesOutlinedFilled.tsx b/src/IconRoomPreferencesOutlinedFilled.tsx new file mode 100644 index 000000000..37c7bb82e --- /dev/null +++ b/src/IconRoomPreferencesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRoomPreferencesOutlinedFilled as default } diff --git a/src/IconRoomPreferencesRoundedFilled.tsx b/src/IconRoomPreferencesRoundedFilled.tsx new file mode 100644 index 000000000..6fa5c3a63 --- /dev/null +++ b/src/IconRoomPreferencesRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRoomPreferencesRoundedFilled as default } diff --git a/src/IconRoomPreferencesSharpFilled.tsx b/src/IconRoomPreferencesSharpFilled.tsx new file mode 100644 index 000000000..8e9270cf1 --- /dev/null +++ b/src/IconRoomPreferencesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomPreferencesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoomPreferencesSharpFilled as default } diff --git a/src/IconRoomServiceOutlinedFilled.tsx b/src/IconRoomServiceOutlinedFilled.tsx new file mode 100644 index 000000000..acfee1d80 --- /dev/null +++ b/src/IconRoomServiceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoomServiceOutlinedFilled as default } diff --git a/src/IconRoomServiceRoundedFilled.tsx b/src/IconRoomServiceRoundedFilled.tsx new file mode 100644 index 000000000..e33d743c0 --- /dev/null +++ b/src/IconRoomServiceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoomServiceRoundedFilled as default } diff --git a/src/IconRoomServiceSharpFilled.tsx b/src/IconRoomServiceSharpFilled.tsx new file mode 100644 index 000000000..63a20945e --- /dev/null +++ b/src/IconRoomServiceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoomServiceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoomServiceSharpFilled as default } diff --git a/src/IconRotate90DegreesCcwOutlinedFilled.tsx b/src/IconRotate90DegreesCcwOutlinedFilled.tsx new file mode 100644 index 000000000..79a9cf490 --- /dev/null +++ b/src/IconRotate90DegreesCcwOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRotate90DegreesCcwOutlinedFilled as default } diff --git a/src/IconRotate90DegreesCcwRoundedFilled.tsx b/src/IconRotate90DegreesCcwRoundedFilled.tsx new file mode 100644 index 000000000..ae2e43dd4 --- /dev/null +++ b/src/IconRotate90DegreesCcwRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRotate90DegreesCcwRoundedFilled as default } diff --git a/src/IconRotate90DegreesCcwSharpFilled.tsx b/src/IconRotate90DegreesCcwSharpFilled.tsx new file mode 100644 index 000000000..7f411488f --- /dev/null +++ b/src/IconRotate90DegreesCcwSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCcwSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRotate90DegreesCcwSharpFilled as default } diff --git a/src/IconRotate90DegreesCwOutlinedFilled.tsx b/src/IconRotate90DegreesCwOutlinedFilled.tsx new file mode 100644 index 000000000..a28f98419 --- /dev/null +++ b/src/IconRotate90DegreesCwOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRotate90DegreesCwOutlinedFilled as default } diff --git a/src/IconRotate90DegreesCwRoundedFilled.tsx b/src/IconRotate90DegreesCwRoundedFilled.tsx new file mode 100644 index 000000000..5d88b3b9b --- /dev/null +++ b/src/IconRotate90DegreesCwRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRotate90DegreesCwRoundedFilled as default } diff --git a/src/IconRotate90DegreesCwSharpFilled.tsx b/src/IconRotate90DegreesCwSharpFilled.tsx new file mode 100644 index 000000000..d19423d00 --- /dev/null +++ b/src/IconRotate90DegreesCwSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotate90DegreesCwSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRotate90DegreesCwSharpFilled as default } diff --git a/src/IconRotateAutoOutlinedFilled.tsx b/src/IconRotateAutoOutlinedFilled.tsx new file mode 100644 index 000000000..2d69d0e79 --- /dev/null +++ b/src/IconRotateAutoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateAutoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateAutoOutlinedFilled as default } diff --git a/src/IconRotateAutoRoundedFilled.tsx b/src/IconRotateAutoRoundedFilled.tsx new file mode 100644 index 000000000..acca8fa40 --- /dev/null +++ b/src/IconRotateAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateAutoRoundedFilled as default } diff --git a/src/IconRotateAutoSharpFilled.tsx b/src/IconRotateAutoSharpFilled.tsx new file mode 100644 index 000000000..bcb64aac9 --- /dev/null +++ b/src/IconRotateAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateAutoSharpFilled as default } diff --git a/src/IconRotateLeftOutlinedFilled.tsx b/src/IconRotateLeftOutlinedFilled.tsx new file mode 100644 index 000000000..e5a0ecf12 --- /dev/null +++ b/src/IconRotateLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateLeftOutlinedFilled as default } diff --git a/src/IconRotateLeftRoundedFilled.tsx b/src/IconRotateLeftRoundedFilled.tsx new file mode 100644 index 000000000..983786c5b --- /dev/null +++ b/src/IconRotateLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateLeftRoundedFilled as default } diff --git a/src/IconRotateLeftSharpFilled.tsx b/src/IconRotateLeftSharpFilled.tsx new file mode 100644 index 000000000..3a8f02102 --- /dev/null +++ b/src/IconRotateLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateLeftSharpFilled as default } diff --git a/src/IconRotateRightOutlinedFilled.tsx b/src/IconRotateRightOutlinedFilled.tsx new file mode 100644 index 000000000..00e66567e --- /dev/null +++ b/src/IconRotateRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateRightOutlinedFilled as default } diff --git a/src/IconRotateRightRoundedFilled.tsx b/src/IconRotateRightRoundedFilled.tsx new file mode 100644 index 000000000..591a5f019 --- /dev/null +++ b/src/IconRotateRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateRightRoundedFilled as default } diff --git a/src/IconRotateRightSharpFilled.tsx b/src/IconRotateRightSharpFilled.tsx new file mode 100644 index 000000000..befba5cdf --- /dev/null +++ b/src/IconRotateRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRotateRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRotateRightSharpFilled as default } diff --git a/src/IconRoundaboutLeftOutlinedFilled.tsx b/src/IconRoundaboutLeftOutlinedFilled.tsx new file mode 100644 index 000000000..ffc9604a5 --- /dev/null +++ b/src/IconRoundaboutLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundaboutLeftOutlinedFilled as default } diff --git a/src/IconRoundaboutLeftRoundedFilled.tsx b/src/IconRoundaboutLeftRoundedFilled.tsx new file mode 100644 index 000000000..bb7d631e9 --- /dev/null +++ b/src/IconRoundaboutLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundaboutLeftRoundedFilled as default } diff --git a/src/IconRoundaboutLeftSharpFilled.tsx b/src/IconRoundaboutLeftSharpFilled.tsx new file mode 100644 index 000000000..3e6cbcc4f --- /dev/null +++ b/src/IconRoundaboutLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundaboutLeftSharpFilled as default } diff --git a/src/IconRoundaboutRightOutlinedFilled.tsx b/src/IconRoundaboutRightOutlinedFilled.tsx new file mode 100644 index 000000000..61bc93867 --- /dev/null +++ b/src/IconRoundaboutRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundaboutRightOutlinedFilled as default } diff --git a/src/IconRoundaboutRightRoundedFilled.tsx b/src/IconRoundaboutRightRoundedFilled.tsx new file mode 100644 index 000000000..870444690 --- /dev/null +++ b/src/IconRoundaboutRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundaboutRightRoundedFilled as default } diff --git a/src/IconRoundaboutRightSharpFilled.tsx b/src/IconRoundaboutRightSharpFilled.tsx new file mode 100644 index 000000000..0eefb2ba8 --- /dev/null +++ b/src/IconRoundaboutRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundaboutRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundaboutRightSharpFilled as default } diff --git a/src/IconRoundedCornerOutlinedFilled.tsx b/src/IconRoundedCornerOutlinedFilled.tsx new file mode 100644 index 000000000..8137c6f4e --- /dev/null +++ b/src/IconRoundedCornerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundedCornerOutlinedFilled as default } diff --git a/src/IconRoundedCornerRoundedFilled.tsx b/src/IconRoundedCornerRoundedFilled.tsx new file mode 100644 index 000000000..543177385 --- /dev/null +++ b/src/IconRoundedCornerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundedCornerRoundedFilled as default } diff --git a/src/IconRoundedCornerSharpFilled.tsx b/src/IconRoundedCornerSharpFilled.tsx new file mode 100644 index 000000000..4d5e9883f --- /dev/null +++ b/src/IconRoundedCornerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoundedCornerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoundedCornerSharpFilled as default } diff --git a/src/IconRouteOutlinedFilled.tsx b/src/IconRouteOutlinedFilled.tsx new file mode 100644 index 000000000..d839b136a --- /dev/null +++ b/src/IconRouteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouteOutlinedFilled as default } diff --git a/src/IconRouteRoundedFilled.tsx b/src/IconRouteRoundedFilled.tsx new file mode 100644 index 000000000..a48a31ed5 --- /dev/null +++ b/src/IconRouteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouteRoundedFilled as default } diff --git a/src/IconRouteSharpFilled.tsx b/src/IconRouteSharpFilled.tsx new file mode 100644 index 000000000..becce62f6 --- /dev/null +++ b/src/IconRouteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouteSharpFilled as default } diff --git a/src/IconRouterOutlinedFilled.tsx b/src/IconRouterOutlinedFilled.tsx new file mode 100644 index 000000000..dbdd915e7 --- /dev/null +++ b/src/IconRouterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouterOutlinedFilled as default } diff --git a/src/IconRouterRoundedFilled.tsx b/src/IconRouterRoundedFilled.tsx new file mode 100644 index 000000000..7d1804127 --- /dev/null +++ b/src/IconRouterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouterRoundedFilled as default } diff --git a/src/IconRouterSharpFilled.tsx b/src/IconRouterSharpFilled.tsx new file mode 100644 index 000000000..fe228d53c --- /dev/null +++ b/src/IconRouterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRouterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRouterSharpFilled as default } diff --git a/src/IconRoutineOutlinedFilled.tsx b/src/IconRoutineOutlinedFilled.tsx new file mode 100644 index 000000000..aa8c2003d --- /dev/null +++ b/src/IconRoutineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoutineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoutineOutlinedFilled as default } diff --git a/src/IconRoutineRoundedFilled.tsx b/src/IconRoutineRoundedFilled.tsx new file mode 100644 index 000000000..8eb232036 --- /dev/null +++ b/src/IconRoutineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoutineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoutineRoundedFilled as default } diff --git a/src/IconRoutineSharpFilled.tsx b/src/IconRoutineSharpFilled.tsx new file mode 100644 index 000000000..39bab7990 --- /dev/null +++ b/src/IconRoutineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRoutineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRoutineSharpFilled as default } diff --git a/src/IconRowingOutlinedFilled.tsx b/src/IconRowingOutlinedFilled.tsx new file mode 100644 index 000000000..434095d84 --- /dev/null +++ b/src/IconRowingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRowingOutlinedFilled as default } diff --git a/src/IconRowingRoundedFilled.tsx b/src/IconRowingRoundedFilled.tsx new file mode 100644 index 000000000..eecf3a23d --- /dev/null +++ b/src/IconRowingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRowingRoundedFilled as default } diff --git a/src/IconRowingSharpFilled.tsx b/src/IconRowingSharpFilled.tsx new file mode 100644 index 000000000..e78087f0f --- /dev/null +++ b/src/IconRowingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRowingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRowingSharpFilled as default } diff --git a/src/IconRssFeedOutlinedFilled.tsx b/src/IconRssFeedOutlinedFilled.tsx new file mode 100644 index 000000000..2d92c511d --- /dev/null +++ b/src/IconRssFeedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRssFeedOutlinedFilled as default } diff --git a/src/IconRssFeedRoundedFilled.tsx b/src/IconRssFeedRoundedFilled.tsx new file mode 100644 index 000000000..075b2d925 --- /dev/null +++ b/src/IconRssFeedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRssFeedRoundedFilled as default } diff --git a/src/IconRssFeedSharpFilled.tsx b/src/IconRssFeedSharpFilled.tsx new file mode 100644 index 000000000..384b72834 --- /dev/null +++ b/src/IconRssFeedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRssFeedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRssFeedSharpFilled as default } diff --git a/src/IconRsvpOutlinedFilled.tsx b/src/IconRsvpOutlinedFilled.tsx new file mode 100644 index 000000000..f6c785214 --- /dev/null +++ b/src/IconRsvpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRsvpOutlinedFilled as default } diff --git a/src/IconRsvpRoundedFilled.tsx b/src/IconRsvpRoundedFilled.tsx new file mode 100644 index 000000000..2e160149c --- /dev/null +++ b/src/IconRsvpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRsvpRoundedFilled as default } diff --git a/src/IconRsvpSharpFilled.tsx b/src/IconRsvpSharpFilled.tsx new file mode 100644 index 000000000..c6043549a --- /dev/null +++ b/src/IconRsvpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRsvpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRsvpSharpFilled as default } diff --git a/src/IconRttOutlinedFilled.tsx b/src/IconRttOutlinedFilled.tsx new file mode 100644 index 000000000..f554bc579 --- /dev/null +++ b/src/IconRttOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRttOutlinedFilled as default } diff --git a/src/IconRttRoundedFilled.tsx b/src/IconRttRoundedFilled.tsx new file mode 100644 index 000000000..f54aff056 --- /dev/null +++ b/src/IconRttRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRttRoundedFilled as default } diff --git a/src/IconRttSharpFilled.tsx b/src/IconRttSharpFilled.tsx new file mode 100644 index 000000000..abdee0b8f --- /dev/null +++ b/src/IconRttSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRttSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRttSharpFilled as default } diff --git a/src/IconRubricOutlinedFilled.tsx b/src/IconRubricOutlinedFilled.tsx new file mode 100644 index 000000000..fd4d8c2a6 --- /dev/null +++ b/src/IconRubricOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRubricOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRubricOutlinedFilled as default } diff --git a/src/IconRubricRoundedFilled.tsx b/src/IconRubricRoundedFilled.tsx new file mode 100644 index 000000000..95a6b5565 --- /dev/null +++ b/src/IconRubricRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRubricRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRubricRoundedFilled as default } diff --git a/src/IconRubricSharpFilled.tsx b/src/IconRubricSharpFilled.tsx new file mode 100644 index 000000000..d6be8948e --- /dev/null +++ b/src/IconRubricSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRubricSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRubricSharpFilled as default } diff --git a/src/IconRuleFolderOutlinedFilled.tsx b/src/IconRuleFolderOutlinedFilled.tsx new file mode 100644 index 000000000..0f536bb83 --- /dev/null +++ b/src/IconRuleFolderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleFolderOutlinedFilled as default } diff --git a/src/IconRuleFolderRoundedFilled.tsx b/src/IconRuleFolderRoundedFilled.tsx new file mode 100644 index 000000000..6dbb46120 --- /dev/null +++ b/src/IconRuleFolderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleFolderRoundedFilled as default } diff --git a/src/IconRuleFolderSharpFilled.tsx b/src/IconRuleFolderSharpFilled.tsx new file mode 100644 index 000000000..df3c572cb --- /dev/null +++ b/src/IconRuleFolderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleFolderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleFolderSharpFilled as default } diff --git a/src/IconRuleOutlinedFilled.tsx b/src/IconRuleOutlinedFilled.tsx new file mode 100644 index 000000000..33dbb672c --- /dev/null +++ b/src/IconRuleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleOutlinedFilled as default } diff --git a/src/IconRuleRoundedFilled.tsx b/src/IconRuleRoundedFilled.tsx new file mode 100644 index 000000000..8367c303d --- /dev/null +++ b/src/IconRuleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleRoundedFilled as default } diff --git a/src/IconRuleSettingsOutlinedFilled.tsx b/src/IconRuleSettingsOutlinedFilled.tsx new file mode 100644 index 000000000..3f9a15927 --- /dev/null +++ b/src/IconRuleSettingsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleSettingsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleSettingsOutlinedFilled as default } diff --git a/src/IconRuleSettingsRoundedFilled.tsx b/src/IconRuleSettingsRoundedFilled.tsx new file mode 100644 index 000000000..087501fcd --- /dev/null +++ b/src/IconRuleSettingsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleSettingsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleSettingsRoundedFilled as default } diff --git a/src/IconRuleSettingsSharpFilled.tsx b/src/IconRuleSettingsSharpFilled.tsx new file mode 100644 index 000000000..2c924f0cd --- /dev/null +++ b/src/IconRuleSettingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleSettingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleSettingsSharpFilled as default } diff --git a/src/IconRuleSharpFilled.tsx b/src/IconRuleSharpFilled.tsx new file mode 100644 index 000000000..9a8599657 --- /dev/null +++ b/src/IconRuleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRuleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRuleSharpFilled as default } diff --git a/src/IconRunCircleOutlinedFilled.tsx b/src/IconRunCircleOutlinedFilled.tsx new file mode 100644 index 000000000..a36f260d8 --- /dev/null +++ b/src/IconRunCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRunCircleOutlinedFilled as default } diff --git a/src/IconRunCircleRoundedFilled.tsx b/src/IconRunCircleRoundedFilled.tsx new file mode 100644 index 000000000..c351e8e73 --- /dev/null +++ b/src/IconRunCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRunCircleRoundedFilled as default } diff --git a/src/IconRunCircleSharpFilled.tsx b/src/IconRunCircleSharpFilled.tsx new file mode 100644 index 000000000..b1b951c24 --- /dev/null +++ b/src/IconRunCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRunCircleSharpFilled as default } diff --git a/src/IconRunningWithErrorsOutlinedFilled.tsx b/src/IconRunningWithErrorsOutlinedFilled.tsx new file mode 100644 index 000000000..66484e682 --- /dev/null +++ b/src/IconRunningWithErrorsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRunningWithErrorsOutlinedFilled as default } diff --git a/src/IconRunningWithErrorsRoundedFilled.tsx b/src/IconRunningWithErrorsRoundedFilled.tsx new file mode 100644 index 000000000..ad5f1b99d --- /dev/null +++ b/src/IconRunningWithErrorsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRunningWithErrorsRoundedFilled as default } diff --git a/src/IconRunningWithErrorsSharpFilled.tsx b/src/IconRunningWithErrorsSharpFilled.tsx new file mode 100644 index 000000000..34b9b3bed --- /dev/null +++ b/src/IconRunningWithErrorsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRunningWithErrorsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconRunningWithErrorsSharpFilled as default } diff --git a/src/IconRvHookupOutlinedFilled.tsx b/src/IconRvHookupOutlinedFilled.tsx new file mode 100644 index 000000000..0573bdde5 --- /dev/null +++ b/src/IconRvHookupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRvHookupOutlinedFilled as default } diff --git a/src/IconRvHookupRoundedFilled.tsx b/src/IconRvHookupRoundedFilled.tsx new file mode 100644 index 000000000..9be95144c --- /dev/null +++ b/src/IconRvHookupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRvHookupRoundedFilled as default } diff --git a/src/IconRvHookupSharpFilled.tsx b/src/IconRvHookupSharpFilled.tsx new file mode 100644 index 000000000..b49e545de --- /dev/null +++ b/src/IconRvHookupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconRvHookupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconRvHookupSharpFilled as default } diff --git a/src/IconSafetyCheckOffOutlinedFilled.tsx b/src/IconSafetyCheckOffOutlinedFilled.tsx new file mode 100644 index 000000000..eb0f21a0c --- /dev/null +++ b/src/IconSafetyCheckOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyCheckOffOutlinedFilled as default } diff --git a/src/IconSafetyCheckOffRoundedFilled.tsx b/src/IconSafetyCheckOffRoundedFilled.tsx new file mode 100644 index 000000000..2c76e6eed --- /dev/null +++ b/src/IconSafetyCheckOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyCheckOffRoundedFilled as default } diff --git a/src/IconSafetyCheckOffSharpFilled.tsx b/src/IconSafetyCheckOffSharpFilled.tsx new file mode 100644 index 000000000..bad60889a --- /dev/null +++ b/src/IconSafetyCheckOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyCheckOffSharpFilled as default } diff --git a/src/IconSafetyCheckOutlinedFilled.tsx b/src/IconSafetyCheckOutlinedFilled.tsx new file mode 100644 index 000000000..61c4f0cc2 --- /dev/null +++ b/src/IconSafetyCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyCheckOutlinedFilled as default } diff --git a/src/IconSafetyCheckRoundedFilled.tsx b/src/IconSafetyCheckRoundedFilled.tsx new file mode 100644 index 000000000..afbc90089 --- /dev/null +++ b/src/IconSafetyCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyCheckRoundedFilled as default } diff --git a/src/IconSafetyCheckSharpFilled.tsx b/src/IconSafetyCheckSharpFilled.tsx new file mode 100644 index 000000000..0fb2e603f --- /dev/null +++ b/src/IconSafetyCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyCheckSharpFilled as default } diff --git a/src/IconSafetyDividerOutlinedFilled.tsx b/src/IconSafetyDividerOutlinedFilled.tsx new file mode 100644 index 000000000..1cd120210 --- /dev/null +++ b/src/IconSafetyDividerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyDividerOutlinedFilled as default } diff --git a/src/IconSafetyDividerRoundedFilled.tsx b/src/IconSafetyDividerRoundedFilled.tsx new file mode 100644 index 000000000..4431813e7 --- /dev/null +++ b/src/IconSafetyDividerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyDividerRoundedFilled as default } diff --git a/src/IconSafetyDividerSharpFilled.tsx b/src/IconSafetyDividerSharpFilled.tsx new file mode 100644 index 000000000..63e7344f2 --- /dev/null +++ b/src/IconSafetyDividerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSafetyDividerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSafetyDividerSharpFilled as default } diff --git a/src/IconSailingOutlinedFilled.tsx b/src/IconSailingOutlinedFilled.tsx new file mode 100644 index 000000000..2d1cd5893 --- /dev/null +++ b/src/IconSailingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSailingOutlinedFilled as default } diff --git a/src/IconSailingRoundedFilled.tsx b/src/IconSailingRoundedFilled.tsx new file mode 100644 index 000000000..f892ad169 --- /dev/null +++ b/src/IconSailingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSailingRoundedFilled as default } diff --git a/src/IconSailingSharpFilled.tsx b/src/IconSailingSharpFilled.tsx new file mode 100644 index 000000000..877312f21 --- /dev/null +++ b/src/IconSailingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSailingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSailingSharpFilled as default } diff --git a/src/IconSalinityOutlinedFilled.tsx b/src/IconSalinityOutlinedFilled.tsx new file mode 100644 index 000000000..3b221c739 --- /dev/null +++ b/src/IconSalinityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSalinityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSalinityOutlinedFilled as default } diff --git a/src/IconSalinityRoundedFilled.tsx b/src/IconSalinityRoundedFilled.tsx new file mode 100644 index 000000000..68fa95eb0 --- /dev/null +++ b/src/IconSalinityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSalinityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSalinityRoundedFilled as default } diff --git a/src/IconSalinitySharpFilled.tsx b/src/IconSalinitySharpFilled.tsx new file mode 100644 index 000000000..7d05f0981 --- /dev/null +++ b/src/IconSalinitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSalinitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSalinitySharpFilled as default } diff --git a/src/IconSanitizerOutlinedFilled.tsx b/src/IconSanitizerOutlinedFilled.tsx new file mode 100644 index 000000000..a80290da6 --- /dev/null +++ b/src/IconSanitizerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSanitizerOutlinedFilled as default } diff --git a/src/IconSanitizerRoundedFilled.tsx b/src/IconSanitizerRoundedFilled.tsx new file mode 100644 index 000000000..ebc20fe68 --- /dev/null +++ b/src/IconSanitizerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSanitizerRoundedFilled as default } diff --git a/src/IconSanitizerSharpFilled.tsx b/src/IconSanitizerSharpFilled.tsx new file mode 100644 index 000000000..a61586206 --- /dev/null +++ b/src/IconSanitizerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSanitizerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSanitizerSharpFilled as default } diff --git a/src/IconSatelliteAltOutlinedFilled.tsx b/src/IconSatelliteAltOutlinedFilled.tsx new file mode 100644 index 000000000..577b7191c --- /dev/null +++ b/src/IconSatelliteAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSatelliteAltOutlinedFilled as default } diff --git a/src/IconSatelliteAltRoundedFilled.tsx b/src/IconSatelliteAltRoundedFilled.tsx new file mode 100644 index 000000000..0722009df --- /dev/null +++ b/src/IconSatelliteAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSatelliteAltRoundedFilled as default } diff --git a/src/IconSatelliteAltSharpFilled.tsx b/src/IconSatelliteAltSharpFilled.tsx new file mode 100644 index 000000000..393d1175f --- /dev/null +++ b/src/IconSatelliteAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSatelliteAltSharpFilled as default } diff --git a/src/IconSatelliteOutlinedFilled.tsx b/src/IconSatelliteOutlinedFilled.tsx new file mode 100644 index 000000000..57792e924 --- /dev/null +++ b/src/IconSatelliteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSatelliteOutlinedFilled as default } diff --git a/src/IconSatelliteRoundedFilled.tsx b/src/IconSatelliteRoundedFilled.tsx new file mode 100644 index 000000000..0d04ebb9f --- /dev/null +++ b/src/IconSatelliteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSatelliteRoundedFilled as default } diff --git a/src/IconSatelliteSharpFilled.tsx b/src/IconSatelliteSharpFilled.tsx new file mode 100644 index 000000000..8c8d0a92d --- /dev/null +++ b/src/IconSatelliteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSatelliteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSatelliteSharpFilled as default } diff --git a/src/IconSaunaOutlinedFilled.tsx b/src/IconSaunaOutlinedFilled.tsx new file mode 100644 index 000000000..11e3241b3 --- /dev/null +++ b/src/IconSaunaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaunaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaunaOutlinedFilled as default } diff --git a/src/IconSaunaRoundedFilled.tsx b/src/IconSaunaRoundedFilled.tsx new file mode 100644 index 000000000..82261d964 --- /dev/null +++ b/src/IconSaunaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaunaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaunaRoundedFilled as default } diff --git a/src/IconSaunaSharpFilled.tsx b/src/IconSaunaSharpFilled.tsx new file mode 100644 index 000000000..950f9ccdf --- /dev/null +++ b/src/IconSaunaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaunaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaunaSharpFilled as default } diff --git a/src/IconSaveAsOutlinedFilled.tsx b/src/IconSaveAsOutlinedFilled.tsx new file mode 100644 index 000000000..16d0ea337 --- /dev/null +++ b/src/IconSaveAsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaveAsOutlinedFilled as default } diff --git a/src/IconSaveAsRoundedFilled.tsx b/src/IconSaveAsRoundedFilled.tsx new file mode 100644 index 000000000..afe065498 --- /dev/null +++ b/src/IconSaveAsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaveAsRoundedFilled as default } diff --git a/src/IconSaveAsSharpFilled.tsx b/src/IconSaveAsSharpFilled.tsx new file mode 100644 index 000000000..b1abe4aa4 --- /dev/null +++ b/src/IconSaveAsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveAsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaveAsSharpFilled as default } diff --git a/src/IconSaveOutlinedFilled.tsx b/src/IconSaveOutlinedFilled.tsx new file mode 100644 index 000000000..8c317e01a --- /dev/null +++ b/src/IconSaveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaveOutlinedFilled as default } diff --git a/src/IconSaveRoundedFilled.tsx b/src/IconSaveRoundedFilled.tsx new file mode 100644 index 000000000..6746af52f --- /dev/null +++ b/src/IconSaveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaveRoundedFilled as default } diff --git a/src/IconSaveSharpFilled.tsx b/src/IconSaveSharpFilled.tsx new file mode 100644 index 000000000..ee10f952d --- /dev/null +++ b/src/IconSaveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSaveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSaveSharpFilled as default } diff --git a/src/IconSavedSearchOutlinedFilled.tsx b/src/IconSavedSearchOutlinedFilled.tsx new file mode 100644 index 000000000..a31e16c0b --- /dev/null +++ b/src/IconSavedSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSavedSearchOutlinedFilled as default } diff --git a/src/IconSavedSearchRoundedFilled.tsx b/src/IconSavedSearchRoundedFilled.tsx new file mode 100644 index 000000000..fd8a4f8bb --- /dev/null +++ b/src/IconSavedSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSavedSearchRoundedFilled as default } diff --git a/src/IconSavedSearchSharpFilled.tsx b/src/IconSavedSearchSharpFilled.tsx new file mode 100644 index 000000000..618acaa72 --- /dev/null +++ b/src/IconSavedSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavedSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSavedSearchSharpFilled as default } diff --git a/src/IconSavingsOutlinedFilled.tsx b/src/IconSavingsOutlinedFilled.tsx new file mode 100644 index 000000000..2aa377231 --- /dev/null +++ b/src/IconSavingsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSavingsOutlinedFilled as default } diff --git a/src/IconSavingsRoundedFilled.tsx b/src/IconSavingsRoundedFilled.tsx new file mode 100644 index 000000000..ad7366abb --- /dev/null +++ b/src/IconSavingsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSavingsRoundedFilled as default } diff --git a/src/IconSavingsSharpFilled.tsx b/src/IconSavingsSharpFilled.tsx new file mode 100644 index 000000000..796f2a89f --- /dev/null +++ b/src/IconSavingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSavingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSavingsSharpFilled as default } diff --git a/src/IconScaleOutlinedFilled.tsx b/src/IconScaleOutlinedFilled.tsx new file mode 100644 index 000000000..ed1b9f5c6 --- /dev/null +++ b/src/IconScaleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScaleOutlinedFilled as default } diff --git a/src/IconScaleRoundedFilled.tsx b/src/IconScaleRoundedFilled.tsx new file mode 100644 index 000000000..29015c8b2 --- /dev/null +++ b/src/IconScaleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScaleRoundedFilled as default } diff --git a/src/IconScaleSharpFilled.tsx b/src/IconScaleSharpFilled.tsx new file mode 100644 index 000000000..6e4c7cfc7 --- /dev/null +++ b/src/IconScaleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScaleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScaleSharpFilled as default } diff --git a/src/IconScanDeleteOutlinedFilled.tsx b/src/IconScanDeleteOutlinedFilled.tsx new file mode 100644 index 000000000..bab6cb65b --- /dev/null +++ b/src/IconScanDeleteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScanDeleteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScanDeleteOutlinedFilled as default } diff --git a/src/IconScanDeleteRoundedFilled.tsx b/src/IconScanDeleteRoundedFilled.tsx new file mode 100644 index 000000000..97e24d2cb --- /dev/null +++ b/src/IconScanDeleteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScanDeleteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScanDeleteRoundedFilled as default } diff --git a/src/IconScanDeleteSharpFilled.tsx b/src/IconScanDeleteSharpFilled.tsx new file mode 100644 index 000000000..95b12632d --- /dev/null +++ b/src/IconScanDeleteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScanDeleteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScanDeleteSharpFilled as default } diff --git a/src/IconScanOutlinedFilled.tsx b/src/IconScanOutlinedFilled.tsx new file mode 100644 index 000000000..64ae3c8bc --- /dev/null +++ b/src/IconScanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScanOutlinedFilled as default } diff --git a/src/IconScanRoundedFilled.tsx b/src/IconScanRoundedFilled.tsx new file mode 100644 index 000000000..2c3223c6e --- /dev/null +++ b/src/IconScanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScanRoundedFilled as default } diff --git a/src/IconScanSharpFilled.tsx b/src/IconScanSharpFilled.tsx new file mode 100644 index 000000000..2d56b97aa --- /dev/null +++ b/src/IconScanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScanSharpFilled as default } diff --git a/src/IconScannerOutlinedFilled.tsx b/src/IconScannerOutlinedFilled.tsx new file mode 100644 index 000000000..cb3708451 --- /dev/null +++ b/src/IconScannerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScannerOutlinedFilled as default } diff --git a/src/IconScannerRoundedFilled.tsx b/src/IconScannerRoundedFilled.tsx new file mode 100644 index 000000000..8fc6fd4b4 --- /dev/null +++ b/src/IconScannerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScannerRoundedFilled as default } diff --git a/src/IconScannerSharpFilled.tsx b/src/IconScannerSharpFilled.tsx new file mode 100644 index 000000000..aadea199d --- /dev/null +++ b/src/IconScannerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScannerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScannerSharpFilled as default } diff --git a/src/IconScatterPlotOutlinedFilled.tsx b/src/IconScatterPlotOutlinedFilled.tsx new file mode 100644 index 000000000..cf103a3dd --- /dev/null +++ b/src/IconScatterPlotOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScatterPlotOutlinedFilled as default } diff --git a/src/IconScatterPlotRoundedFilled.tsx b/src/IconScatterPlotRoundedFilled.tsx new file mode 100644 index 000000000..22e48420a --- /dev/null +++ b/src/IconScatterPlotRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScatterPlotRoundedFilled as default } diff --git a/src/IconScatterPlotSharpFilled.tsx b/src/IconScatterPlotSharpFilled.tsx new file mode 100644 index 000000000..1884179f7 --- /dev/null +++ b/src/IconScatterPlotSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScatterPlotSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScatterPlotSharpFilled as default } diff --git a/src/IconSceneOutlinedFilled.tsx b/src/IconSceneOutlinedFilled.tsx new file mode 100644 index 000000000..b7ea8927e --- /dev/null +++ b/src/IconSceneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSceneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSceneOutlinedFilled as default } diff --git a/src/IconSceneRoundedFilled.tsx b/src/IconSceneRoundedFilled.tsx new file mode 100644 index 000000000..c99187ab0 --- /dev/null +++ b/src/IconSceneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSceneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSceneRoundedFilled as default } diff --git a/src/IconSceneSharpFilled.tsx b/src/IconSceneSharpFilled.tsx new file mode 100644 index 000000000..7c27ac0dc --- /dev/null +++ b/src/IconSceneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSceneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSceneSharpFilled as default } diff --git a/src/IconScheduleOutlinedFilled.tsx b/src/IconScheduleOutlinedFilled.tsx new file mode 100644 index 000000000..75f73d81c --- /dev/null +++ b/src/IconScheduleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScheduleOutlinedFilled as default } diff --git a/src/IconScheduleRoundedFilled.tsx b/src/IconScheduleRoundedFilled.tsx new file mode 100644 index 000000000..215b053ea --- /dev/null +++ b/src/IconScheduleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScheduleRoundedFilled as default } diff --git a/src/IconScheduleSendOutlinedFilled.tsx b/src/IconScheduleSendOutlinedFilled.tsx new file mode 100644 index 000000000..ab27d34af --- /dev/null +++ b/src/IconScheduleSendOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScheduleSendOutlinedFilled as default } diff --git a/src/IconScheduleSendRoundedFilled.tsx b/src/IconScheduleSendRoundedFilled.tsx new file mode 100644 index 000000000..aac5d30df --- /dev/null +++ b/src/IconScheduleSendRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScheduleSendRoundedFilled as default } diff --git a/src/IconScheduleSendSharpFilled.tsx b/src/IconScheduleSendSharpFilled.tsx new file mode 100644 index 000000000..a579aa7c8 --- /dev/null +++ b/src/IconScheduleSendSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSendSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScheduleSendSharpFilled as default } diff --git a/src/IconScheduleSharpFilled.tsx b/src/IconScheduleSharpFilled.tsx new file mode 100644 index 000000000..358c51605 --- /dev/null +++ b/src/IconScheduleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScheduleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScheduleSharpFilled as default } diff --git a/src/IconSchemaOutlinedFilled.tsx b/src/IconSchemaOutlinedFilled.tsx new file mode 100644 index 000000000..e447783e1 --- /dev/null +++ b/src/IconSchemaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSchemaOutlinedFilled as default } diff --git a/src/IconSchemaRoundedFilled.tsx b/src/IconSchemaRoundedFilled.tsx new file mode 100644 index 000000000..5e612e72a --- /dev/null +++ b/src/IconSchemaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSchemaRoundedFilled as default } diff --git a/src/IconSchemaSharpFilled.tsx b/src/IconSchemaSharpFilled.tsx new file mode 100644 index 000000000..3a7dd6228 --- /dev/null +++ b/src/IconSchemaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchemaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSchemaSharpFilled as default } diff --git a/src/IconSchoolOutlinedFilled.tsx b/src/IconSchoolOutlinedFilled.tsx new file mode 100644 index 000000000..a303f92d5 --- /dev/null +++ b/src/IconSchoolOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSchoolOutlinedFilled as default } diff --git a/src/IconSchoolRoundedFilled.tsx b/src/IconSchoolRoundedFilled.tsx new file mode 100644 index 000000000..e4b84f3ff --- /dev/null +++ b/src/IconSchoolRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSchoolRoundedFilled as default } diff --git a/src/IconSchoolSharpFilled.tsx b/src/IconSchoolSharpFilled.tsx new file mode 100644 index 000000000..b99940aac --- /dev/null +++ b/src/IconSchoolSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSchoolSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSchoolSharpFilled as default } diff --git a/src/IconScienceOffOutlinedFilled.tsx b/src/IconScienceOffOutlinedFilled.tsx new file mode 100644 index 000000000..dca7e802f --- /dev/null +++ b/src/IconScienceOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScienceOffOutlinedFilled as default } diff --git a/src/IconScienceOffRoundedFilled.tsx b/src/IconScienceOffRoundedFilled.tsx new file mode 100644 index 000000000..9f7c487ea --- /dev/null +++ b/src/IconScienceOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScienceOffRoundedFilled as default } diff --git a/src/IconScienceOffSharpFilled.tsx b/src/IconScienceOffSharpFilled.tsx new file mode 100644 index 000000000..0ba67c087 --- /dev/null +++ b/src/IconScienceOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScienceOffSharpFilled as default } diff --git a/src/IconScienceOutlinedFilled.tsx b/src/IconScienceOutlinedFilled.tsx new file mode 100644 index 000000000..cb62c0990 --- /dev/null +++ b/src/IconScienceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScienceOutlinedFilled as default } diff --git a/src/IconScienceRoundedFilled.tsx b/src/IconScienceRoundedFilled.tsx new file mode 100644 index 000000000..7736ca8b5 --- /dev/null +++ b/src/IconScienceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScienceRoundedFilled as default } diff --git a/src/IconScienceSharpFilled.tsx b/src/IconScienceSharpFilled.tsx new file mode 100644 index 000000000..7732e4284 --- /dev/null +++ b/src/IconScienceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScienceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScienceSharpFilled as default } diff --git a/src/IconScooterOutlinedFilled.tsx b/src/IconScooterOutlinedFilled.tsx new file mode 100644 index 000000000..15ada619a --- /dev/null +++ b/src/IconScooterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScooterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScooterOutlinedFilled as default } diff --git a/src/IconScooterRoundedFilled.tsx b/src/IconScooterRoundedFilled.tsx new file mode 100644 index 000000000..c6c3d4c29 --- /dev/null +++ b/src/IconScooterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScooterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScooterRoundedFilled as default } diff --git a/src/IconScooterSharpFilled.tsx b/src/IconScooterSharpFilled.tsx new file mode 100644 index 000000000..16275c536 --- /dev/null +++ b/src/IconScooterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScooterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScooterSharpFilled as default } diff --git a/src/IconScoreOutlinedFilled.tsx b/src/IconScoreOutlinedFilled.tsx new file mode 100644 index 000000000..907b97211 --- /dev/null +++ b/src/IconScoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreOutlinedFilled as default } diff --git a/src/IconScoreRoundedFilled.tsx b/src/IconScoreRoundedFilled.tsx new file mode 100644 index 000000000..5be981095 --- /dev/null +++ b/src/IconScoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreRoundedFilled as default } diff --git a/src/IconScoreSharpFilled.tsx b/src/IconScoreSharpFilled.tsx new file mode 100644 index 000000000..4fff18f3e --- /dev/null +++ b/src/IconScoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreSharpFilled as default } diff --git a/src/IconScoreboardOutlinedFilled.tsx b/src/IconScoreboardOutlinedFilled.tsx new file mode 100644 index 000000000..60b2b02a9 --- /dev/null +++ b/src/IconScoreboardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreboardOutlinedFilled as default } diff --git a/src/IconScoreboardRoundedFilled.tsx b/src/IconScoreboardRoundedFilled.tsx new file mode 100644 index 000000000..6ae8dd905 --- /dev/null +++ b/src/IconScoreboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreboardRoundedFilled as default } diff --git a/src/IconScoreboardSharpFilled.tsx b/src/IconScoreboardSharpFilled.tsx new file mode 100644 index 000000000..361c2c07f --- /dev/null +++ b/src/IconScoreboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScoreboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScoreboardSharpFilled as default } diff --git a/src/IconScreenLockLandscapeOutlinedFilled.tsx b/src/IconScreenLockLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..d6624b7eb --- /dev/null +++ b/src/IconScreenLockLandscapeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockLandscapeOutlinedFilled as default } diff --git a/src/IconScreenLockLandscapeRoundedFilled.tsx b/src/IconScreenLockLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..8c915f0d5 --- /dev/null +++ b/src/IconScreenLockLandscapeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockLandscapeRoundedFilled as default } diff --git a/src/IconScreenLockLandscapeSharpFilled.tsx b/src/IconScreenLockLandscapeSharpFilled.tsx new file mode 100644 index 000000000..f03cc42f8 --- /dev/null +++ b/src/IconScreenLockLandscapeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockLandscapeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockLandscapeSharpFilled as default } diff --git a/src/IconScreenLockPortraitOutlinedFilled.tsx b/src/IconScreenLockPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..5c643a08d --- /dev/null +++ b/src/IconScreenLockPortraitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockPortraitOutlinedFilled as default } diff --git a/src/IconScreenLockPortraitRoundedFilled.tsx b/src/IconScreenLockPortraitRoundedFilled.tsx new file mode 100644 index 000000000..90aa3e78c --- /dev/null +++ b/src/IconScreenLockPortraitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockPortraitRoundedFilled as default } diff --git a/src/IconScreenLockPortraitSharpFilled.tsx b/src/IconScreenLockPortraitSharpFilled.tsx new file mode 100644 index 000000000..c2862ad6f --- /dev/null +++ b/src/IconScreenLockPortraitSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockPortraitSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockPortraitSharpFilled as default } diff --git a/src/IconScreenLockRotationOutlinedFilled.tsx b/src/IconScreenLockRotationOutlinedFilled.tsx new file mode 100644 index 000000000..1c7fe57b8 --- /dev/null +++ b/src/IconScreenLockRotationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockRotationOutlinedFilled as default } diff --git a/src/IconScreenLockRotationRoundedFilled.tsx b/src/IconScreenLockRotationRoundedFilled.tsx new file mode 100644 index 000000000..894bec315 --- /dev/null +++ b/src/IconScreenLockRotationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockRotationRoundedFilled as default } diff --git a/src/IconScreenLockRotationSharpFilled.tsx b/src/IconScreenLockRotationSharpFilled.tsx new file mode 100644 index 000000000..fb2ecb1d8 --- /dev/null +++ b/src/IconScreenLockRotationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenLockRotationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenLockRotationSharpFilled as default } diff --git a/src/IconScreenRecordOutlinedFilled.tsx b/src/IconScreenRecordOutlinedFilled.tsx new file mode 100644 index 000000000..f7e438c15 --- /dev/null +++ b/src/IconScreenRecordOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRecordOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRecordOutlinedFilled as default } diff --git a/src/IconScreenRecordRoundedFilled.tsx b/src/IconScreenRecordRoundedFilled.tsx new file mode 100644 index 000000000..a1b531df0 --- /dev/null +++ b/src/IconScreenRecordRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRecordRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRecordRoundedFilled as default } diff --git a/src/IconScreenRecordSharpFilled.tsx b/src/IconScreenRecordSharpFilled.tsx new file mode 100644 index 000000000..d3fb6baad --- /dev/null +++ b/src/IconScreenRecordSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRecordSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRecordSharpFilled as default } diff --git a/src/IconScreenRotationAltOutlinedFilled.tsx b/src/IconScreenRotationAltOutlinedFilled.tsx new file mode 100644 index 000000000..d4e7d55da --- /dev/null +++ b/src/IconScreenRotationAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationAltOutlinedFilled as default } diff --git a/src/IconScreenRotationAltRoundedFilled.tsx b/src/IconScreenRotationAltRoundedFilled.tsx new file mode 100644 index 000000000..1caed13d3 --- /dev/null +++ b/src/IconScreenRotationAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationAltRoundedFilled as default } diff --git a/src/IconScreenRotationAltSharpFilled.tsx b/src/IconScreenRotationAltSharpFilled.tsx new file mode 100644 index 000000000..868738e26 --- /dev/null +++ b/src/IconScreenRotationAltSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationAltSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationAltSharpFilled as default } diff --git a/src/IconScreenRotationOutlinedFilled.tsx b/src/IconScreenRotationOutlinedFilled.tsx new file mode 100644 index 000000000..ca21bebb1 --- /dev/null +++ b/src/IconScreenRotationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationOutlinedFilled as default } diff --git a/src/IconScreenRotationRoundedFilled.tsx b/src/IconScreenRotationRoundedFilled.tsx new file mode 100644 index 000000000..74cbe27c3 --- /dev/null +++ b/src/IconScreenRotationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationRoundedFilled as default } diff --git a/src/IconScreenRotationSharpFilled.tsx b/src/IconScreenRotationSharpFilled.tsx new file mode 100644 index 000000000..964278c84 --- /dev/null +++ b/src/IconScreenRotationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationSharpFilled as default } diff --git a/src/IconScreenRotationUpOutlinedFilled.tsx b/src/IconScreenRotationUpOutlinedFilled.tsx new file mode 100644 index 000000000..fed64fbfb --- /dev/null +++ b/src/IconScreenRotationUpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationUpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationUpOutlinedFilled as default } diff --git a/src/IconScreenRotationUpRoundedFilled.tsx b/src/IconScreenRotationUpRoundedFilled.tsx new file mode 100644 index 000000000..660608ed8 --- /dev/null +++ b/src/IconScreenRotationUpRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationUpRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationUpRoundedFilled as default } diff --git a/src/IconScreenRotationUpSharpFilled.tsx b/src/IconScreenRotationUpSharpFilled.tsx new file mode 100644 index 000000000..c23312d36 --- /dev/null +++ b/src/IconScreenRotationUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenRotationUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenRotationUpSharpFilled as default } diff --git a/src/IconScreenSearchDesktopOutlinedFilled.tsx b/src/IconScreenSearchDesktopOutlinedFilled.tsx new file mode 100644 index 000000000..b05a9f26c --- /dev/null +++ b/src/IconScreenSearchDesktopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenSearchDesktopOutlinedFilled as default } diff --git a/src/IconScreenSearchDesktopRoundedFilled.tsx b/src/IconScreenSearchDesktopRoundedFilled.tsx new file mode 100644 index 000000000..503a66ab4 --- /dev/null +++ b/src/IconScreenSearchDesktopRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenSearchDesktopRoundedFilled as default } diff --git a/src/IconScreenSearchDesktopSharpFilled.tsx b/src/IconScreenSearchDesktopSharpFilled.tsx new file mode 100644 index 000000000..c74ed224c --- /dev/null +++ b/src/IconScreenSearchDesktopSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenSearchDesktopSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenSearchDesktopSharpFilled as default } diff --git a/src/IconScreenShareOutlinedFilled.tsx b/src/IconScreenShareOutlinedFilled.tsx new file mode 100644 index 000000000..fc7c089e6 --- /dev/null +++ b/src/IconScreenShareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenShareOutlinedFilled as default } diff --git a/src/IconScreenShareRoundedFilled.tsx b/src/IconScreenShareRoundedFilled.tsx new file mode 100644 index 000000000..ba7128529 --- /dev/null +++ b/src/IconScreenShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenShareRoundedFilled as default } diff --git a/src/IconScreenShareSharpFilled.tsx b/src/IconScreenShareSharpFilled.tsx new file mode 100644 index 000000000..dcbf95e39 --- /dev/null +++ b/src/IconScreenShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenShareSharpFilled as default } diff --git a/src/IconScreenshotFrameOutlinedFilled.tsx b/src/IconScreenshotFrameOutlinedFilled.tsx new file mode 100644 index 000000000..a1c8ed3ed --- /dev/null +++ b/src/IconScreenshotFrameOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotFrameOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotFrameOutlinedFilled as default } diff --git a/src/IconScreenshotFrameRoundedFilled.tsx b/src/IconScreenshotFrameRoundedFilled.tsx new file mode 100644 index 000000000..12eb8125b --- /dev/null +++ b/src/IconScreenshotFrameRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotFrameRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotFrameRoundedFilled as default } diff --git a/src/IconScreenshotFrameSharpFilled.tsx b/src/IconScreenshotFrameSharpFilled.tsx new file mode 100644 index 000000000..1dac15a39 --- /dev/null +++ b/src/IconScreenshotFrameSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotFrameSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotFrameSharpFilled as default } diff --git a/src/IconScreenshotKeyboardOutlinedFilled.tsx b/src/IconScreenshotKeyboardOutlinedFilled.tsx new file mode 100644 index 000000000..ae50e002c --- /dev/null +++ b/src/IconScreenshotKeyboardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotKeyboardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotKeyboardOutlinedFilled as default } diff --git a/src/IconScreenshotKeyboardRoundedFilled.tsx b/src/IconScreenshotKeyboardRoundedFilled.tsx new file mode 100644 index 000000000..cbe256089 --- /dev/null +++ b/src/IconScreenshotKeyboardRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotKeyboardRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotKeyboardRoundedFilled as default } diff --git a/src/IconScreenshotKeyboardSharpFilled.tsx b/src/IconScreenshotKeyboardSharpFilled.tsx new file mode 100644 index 000000000..924de0b87 --- /dev/null +++ b/src/IconScreenshotKeyboardSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotKeyboardSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotKeyboardSharpFilled as default } diff --git a/src/IconScreenshotMonitorOutlinedFilled.tsx b/src/IconScreenshotMonitorOutlinedFilled.tsx new file mode 100644 index 000000000..57f5a01e0 --- /dev/null +++ b/src/IconScreenshotMonitorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotMonitorOutlinedFilled as default } diff --git a/src/IconScreenshotMonitorRoundedFilled.tsx b/src/IconScreenshotMonitorRoundedFilled.tsx new file mode 100644 index 000000000..c9763fafe --- /dev/null +++ b/src/IconScreenshotMonitorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotMonitorRoundedFilled as default } diff --git a/src/IconScreenshotMonitorSharpFilled.tsx b/src/IconScreenshotMonitorSharpFilled.tsx new file mode 100644 index 000000000..f2cdb235d --- /dev/null +++ b/src/IconScreenshotMonitorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotMonitorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotMonitorSharpFilled as default } diff --git a/src/IconScreenshotOutlinedFilled.tsx b/src/IconScreenshotOutlinedFilled.tsx new file mode 100644 index 000000000..8d1355105 --- /dev/null +++ b/src/IconScreenshotOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotOutlinedFilled as default } diff --git a/src/IconScreenshotRegionOutlinedFilled.tsx b/src/IconScreenshotRegionOutlinedFilled.tsx new file mode 100644 index 000000000..f4521d241 --- /dev/null +++ b/src/IconScreenshotRegionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotRegionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotRegionOutlinedFilled as default } diff --git a/src/IconScreenshotRegionRoundedFilled.tsx b/src/IconScreenshotRegionRoundedFilled.tsx new file mode 100644 index 000000000..95d1b8731 --- /dev/null +++ b/src/IconScreenshotRegionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotRegionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotRegionRoundedFilled as default } diff --git a/src/IconScreenshotRegionSharpFilled.tsx b/src/IconScreenshotRegionSharpFilled.tsx new file mode 100644 index 000000000..abee5298a --- /dev/null +++ b/src/IconScreenshotRegionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotRegionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotRegionSharpFilled as default } diff --git a/src/IconScreenshotRoundedFilled.tsx b/src/IconScreenshotRoundedFilled.tsx new file mode 100644 index 000000000..dbf81a029 --- /dev/null +++ b/src/IconScreenshotRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotRoundedFilled as default } diff --git a/src/IconScreenshotSharpFilled.tsx b/src/IconScreenshotSharpFilled.tsx new file mode 100644 index 000000000..2c69823a3 --- /dev/null +++ b/src/IconScreenshotSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotSharpFilled as default } diff --git a/src/IconScreenshotTabletOutlinedFilled.tsx b/src/IconScreenshotTabletOutlinedFilled.tsx new file mode 100644 index 000000000..f5bb861ae --- /dev/null +++ b/src/IconScreenshotTabletOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotTabletOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotTabletOutlinedFilled as default } diff --git a/src/IconScreenshotTabletRoundedFilled.tsx b/src/IconScreenshotTabletRoundedFilled.tsx new file mode 100644 index 000000000..73882dd30 --- /dev/null +++ b/src/IconScreenshotTabletRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotTabletRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotTabletRoundedFilled as default } diff --git a/src/IconScreenshotTabletSharpFilled.tsx b/src/IconScreenshotTabletSharpFilled.tsx new file mode 100644 index 000000000..794601002 --- /dev/null +++ b/src/IconScreenshotTabletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScreenshotTabletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScreenshotTabletSharpFilled as default } diff --git a/src/IconScriptOutlinedFilled.tsx b/src/IconScriptOutlinedFilled.tsx new file mode 100644 index 000000000..a8f65ba72 --- /dev/null +++ b/src/IconScriptOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScriptOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScriptOutlinedFilled as default } diff --git a/src/IconScriptRoundedFilled.tsx b/src/IconScriptRoundedFilled.tsx new file mode 100644 index 000000000..19c5fd669 --- /dev/null +++ b/src/IconScriptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScriptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScriptRoundedFilled as default } diff --git a/src/IconScriptSharpFilled.tsx b/src/IconScriptSharpFilled.tsx new file mode 100644 index 000000000..8ded94c50 --- /dev/null +++ b/src/IconScriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScriptSharpFilled as default } diff --git a/src/IconScrollableHeaderOutlinedFilled.tsx b/src/IconScrollableHeaderOutlinedFilled.tsx new file mode 100644 index 000000000..a7ddf070c --- /dev/null +++ b/src/IconScrollableHeaderOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScrollableHeaderOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScrollableHeaderOutlinedFilled as default } diff --git a/src/IconScrollableHeaderRoundedFilled.tsx b/src/IconScrollableHeaderRoundedFilled.tsx new file mode 100644 index 000000000..f16965eee --- /dev/null +++ b/src/IconScrollableHeaderRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScrollableHeaderRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconScrollableHeaderRoundedFilled as default } diff --git a/src/IconScrollableHeaderSharpFilled.tsx b/src/IconScrollableHeaderSharpFilled.tsx new file mode 100644 index 000000000..7017ef684 --- /dev/null +++ b/src/IconScrollableHeaderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScrollableHeaderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScrollableHeaderSharpFilled as default } diff --git a/src/IconScubaDivingOutlinedFilled.tsx b/src/IconScubaDivingOutlinedFilled.tsx new file mode 100644 index 000000000..315b8c69f --- /dev/null +++ b/src/IconScubaDivingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScubaDivingOutlinedFilled as default } diff --git a/src/IconScubaDivingRoundedFilled.tsx b/src/IconScubaDivingRoundedFilled.tsx new file mode 100644 index 000000000..b2acd038f --- /dev/null +++ b/src/IconScubaDivingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScubaDivingRoundedFilled as default } diff --git a/src/IconScubaDivingSharpFilled.tsx b/src/IconScubaDivingSharpFilled.tsx new file mode 100644 index 000000000..cb8ea6763 --- /dev/null +++ b/src/IconScubaDivingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconScubaDivingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconScubaDivingSharpFilled as default } diff --git a/src/IconSdCardAlertOutlinedFilled.tsx b/src/IconSdCardAlertOutlinedFilled.tsx new file mode 100644 index 000000000..fc2fab591 --- /dev/null +++ b/src/IconSdCardAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdCardAlertOutlinedFilled as default } diff --git a/src/IconSdCardAlertRoundedFilled.tsx b/src/IconSdCardAlertRoundedFilled.tsx new file mode 100644 index 000000000..68b7232ad --- /dev/null +++ b/src/IconSdCardAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdCardAlertRoundedFilled as default } diff --git a/src/IconSdCardAlertSharpFilled.tsx b/src/IconSdCardAlertSharpFilled.tsx new file mode 100644 index 000000000..c0732ebea --- /dev/null +++ b/src/IconSdCardAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdCardAlertSharpFilled as default } diff --git a/src/IconSdCardOutlinedFilled.tsx b/src/IconSdCardOutlinedFilled.tsx new file mode 100644 index 000000000..02654eae0 --- /dev/null +++ b/src/IconSdCardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdCardOutlinedFilled as default } diff --git a/src/IconSdCardRoundedFilled.tsx b/src/IconSdCardRoundedFilled.tsx new file mode 100644 index 000000000..17d47c2f3 --- /dev/null +++ b/src/IconSdCardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdCardRoundedFilled as default } diff --git a/src/IconSdCardSharpFilled.tsx b/src/IconSdCardSharpFilled.tsx new file mode 100644 index 000000000..aceea1f2c --- /dev/null +++ b/src/IconSdCardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdCardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdCardSharpFilled as default } diff --git a/src/IconSdOutlinedFilled.tsx b/src/IconSdOutlinedFilled.tsx new file mode 100644 index 000000000..0aa37481f --- /dev/null +++ b/src/IconSdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdOutlinedFilled as default } diff --git a/src/IconSdRoundedFilled.tsx b/src/IconSdRoundedFilled.tsx new file mode 100644 index 000000000..570c46c0e --- /dev/null +++ b/src/IconSdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdRoundedFilled as default } diff --git a/src/IconSdSharpFilled.tsx b/src/IconSdSharpFilled.tsx new file mode 100644 index 000000000..26a3f0a44 --- /dev/null +++ b/src/IconSdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdSharpFilled as default } diff --git a/src/IconSdkOutlinedFilled.tsx b/src/IconSdkOutlinedFilled.tsx new file mode 100644 index 000000000..0a5966880 --- /dev/null +++ b/src/IconSdkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdkOutlinedFilled as default } diff --git a/src/IconSdkRoundedFilled.tsx b/src/IconSdkRoundedFilled.tsx new file mode 100644 index 000000000..b9d4ce0f4 --- /dev/null +++ b/src/IconSdkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdkRoundedFilled as default } diff --git a/src/IconSdkSharpFilled.tsx b/src/IconSdkSharpFilled.tsx new file mode 100644 index 000000000..37ebf8964 --- /dev/null +++ b/src/IconSdkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSdkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSdkSharpFilled as default } diff --git a/src/IconSearchCheck2OutlinedFilled.tsx b/src/IconSearchCheck2OutlinedFilled.tsx new file mode 100644 index 000000000..298ebb72c --- /dev/null +++ b/src/IconSearchCheck2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchCheck2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchCheck2OutlinedFilled as default } diff --git a/src/IconSearchCheck2RoundedFilled.tsx b/src/IconSearchCheck2RoundedFilled.tsx new file mode 100644 index 000000000..8aa06529d --- /dev/null +++ b/src/IconSearchCheck2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchCheck2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchCheck2RoundedFilled as default } diff --git a/src/IconSearchCheck2SharpFilled.tsx b/src/IconSearchCheck2SharpFilled.tsx new file mode 100644 index 000000000..abb153c8f --- /dev/null +++ b/src/IconSearchCheck2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchCheck2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchCheck2SharpFilled as default } diff --git a/src/IconSearchCheckOutlinedFilled.tsx b/src/IconSearchCheckOutlinedFilled.tsx new file mode 100644 index 000000000..5a4d90373 --- /dev/null +++ b/src/IconSearchCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchCheckOutlinedFilled as default } diff --git a/src/IconSearchCheckRoundedFilled.tsx b/src/IconSearchCheckRoundedFilled.tsx new file mode 100644 index 000000000..2782085e1 --- /dev/null +++ b/src/IconSearchCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchCheckRoundedFilled as default } diff --git a/src/IconSearchCheckSharpFilled.tsx b/src/IconSearchCheckSharpFilled.tsx new file mode 100644 index 000000000..74cf121a9 --- /dev/null +++ b/src/IconSearchCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchCheckSharpFilled as default } diff --git a/src/IconSearchHandsFreeOutlinedFilled.tsx b/src/IconSearchHandsFreeOutlinedFilled.tsx new file mode 100644 index 000000000..d748ed4f0 --- /dev/null +++ b/src/IconSearchHandsFreeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchHandsFreeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchHandsFreeOutlinedFilled as default } diff --git a/src/IconSearchHandsFreeRoundedFilled.tsx b/src/IconSearchHandsFreeRoundedFilled.tsx new file mode 100644 index 000000000..056009709 --- /dev/null +++ b/src/IconSearchHandsFreeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchHandsFreeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchHandsFreeRoundedFilled as default } diff --git a/src/IconSearchHandsFreeSharpFilled.tsx b/src/IconSearchHandsFreeSharpFilled.tsx new file mode 100644 index 000000000..50265014a --- /dev/null +++ b/src/IconSearchHandsFreeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchHandsFreeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchHandsFreeSharpFilled as default } diff --git a/src/IconSearchInsightsOutlinedFilled.tsx b/src/IconSearchInsightsOutlinedFilled.tsx new file mode 100644 index 000000000..5c2d57b96 --- /dev/null +++ b/src/IconSearchInsightsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchInsightsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchInsightsOutlinedFilled as default } diff --git a/src/IconSearchInsightsRoundedFilled.tsx b/src/IconSearchInsightsRoundedFilled.tsx new file mode 100644 index 000000000..33ce03707 --- /dev/null +++ b/src/IconSearchInsightsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchInsightsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchInsightsRoundedFilled as default } diff --git a/src/IconSearchInsightsSharpFilled.tsx b/src/IconSearchInsightsSharpFilled.tsx new file mode 100644 index 000000000..f9d9be4b7 --- /dev/null +++ b/src/IconSearchInsightsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchInsightsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchInsightsSharpFilled as default } diff --git a/src/IconSearchOffOutlinedFilled.tsx b/src/IconSearchOffOutlinedFilled.tsx new file mode 100644 index 000000000..b3f5552a3 --- /dev/null +++ b/src/IconSearchOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchOffOutlinedFilled as default } diff --git a/src/IconSearchOffRoundedFilled.tsx b/src/IconSearchOffRoundedFilled.tsx new file mode 100644 index 000000000..a331e37a3 --- /dev/null +++ b/src/IconSearchOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchOffRoundedFilled as default } diff --git a/src/IconSearchOffSharpFilled.tsx b/src/IconSearchOffSharpFilled.tsx new file mode 100644 index 000000000..c848cdfb1 --- /dev/null +++ b/src/IconSearchOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchOffSharpFilled as default } diff --git a/src/IconSearchOutlinedFilled.tsx b/src/IconSearchOutlinedFilled.tsx new file mode 100644 index 000000000..547736db4 --- /dev/null +++ b/src/IconSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchOutlinedFilled as default } diff --git a/src/IconSearchRoundedFilled.tsx b/src/IconSearchRoundedFilled.tsx new file mode 100644 index 000000000..96d7c65a3 --- /dev/null +++ b/src/IconSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchRoundedFilled as default } diff --git a/src/IconSearchSharpFilled.tsx b/src/IconSearchSharpFilled.tsx new file mode 100644 index 000000000..5bb6a0b74 --- /dev/null +++ b/src/IconSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSearchSharpFilled as default } diff --git a/src/IconSecurityKeyOutlinedFilled.tsx b/src/IconSecurityKeyOutlinedFilled.tsx new file mode 100644 index 000000000..a45ed97b0 --- /dev/null +++ b/src/IconSecurityKeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityKeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityKeyOutlinedFilled as default } diff --git a/src/IconSecurityKeyRoundedFilled.tsx b/src/IconSecurityKeyRoundedFilled.tsx new file mode 100644 index 000000000..ec4702a24 --- /dev/null +++ b/src/IconSecurityKeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityKeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityKeyRoundedFilled as default } diff --git a/src/IconSecurityKeySharpFilled.tsx b/src/IconSecurityKeySharpFilled.tsx new file mode 100644 index 000000000..e94267399 --- /dev/null +++ b/src/IconSecurityKeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityKeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityKeySharpFilled as default } diff --git a/src/IconSecurityOutlinedFilled.tsx b/src/IconSecurityOutlinedFilled.tsx new file mode 100644 index 000000000..c5bfbe56e --- /dev/null +++ b/src/IconSecurityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityOutlinedFilled as default } diff --git a/src/IconSecurityRoundedFilled.tsx b/src/IconSecurityRoundedFilled.tsx new file mode 100644 index 000000000..171149208 --- /dev/null +++ b/src/IconSecurityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityRoundedFilled as default } diff --git a/src/IconSecuritySharpFilled.tsx b/src/IconSecuritySharpFilled.tsx new file mode 100644 index 000000000..8dec640f8 --- /dev/null +++ b/src/IconSecuritySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecuritySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSecuritySharpFilled as default } diff --git a/src/IconSecurityUpdateGoodOutlinedFilled.tsx b/src/IconSecurityUpdateGoodOutlinedFilled.tsx new file mode 100644 index 000000000..ca825375f --- /dev/null +++ b/src/IconSecurityUpdateGoodOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityUpdateGoodOutlinedFilled as default } diff --git a/src/IconSecurityUpdateGoodRoundedFilled.tsx b/src/IconSecurityUpdateGoodRoundedFilled.tsx new file mode 100644 index 000000000..a4b403dc5 --- /dev/null +++ b/src/IconSecurityUpdateGoodRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityUpdateGoodRoundedFilled as default } diff --git a/src/IconSecurityUpdateGoodSharpFilled.tsx b/src/IconSecurityUpdateGoodSharpFilled.tsx new file mode 100644 index 000000000..6484ab6c2 --- /dev/null +++ b/src/IconSecurityUpdateGoodSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateGoodSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityUpdateGoodSharpFilled as default } diff --git a/src/IconSecurityUpdateWarningOutlinedFilled.tsx b/src/IconSecurityUpdateWarningOutlinedFilled.tsx new file mode 100644 index 000000000..9409a98c5 --- /dev/null +++ b/src/IconSecurityUpdateWarningOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityUpdateWarningOutlinedFilled as default } diff --git a/src/IconSecurityUpdateWarningRoundedFilled.tsx b/src/IconSecurityUpdateWarningRoundedFilled.tsx new file mode 100644 index 000000000..5096bcda2 --- /dev/null +++ b/src/IconSecurityUpdateWarningRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityUpdateWarningRoundedFilled as default } diff --git a/src/IconSecurityUpdateWarningSharpFilled.tsx b/src/IconSecurityUpdateWarningSharpFilled.tsx new file mode 100644 index 000000000..85a78e1bd --- /dev/null +++ b/src/IconSecurityUpdateWarningSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSecurityUpdateWarningSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSecurityUpdateWarningSharpFilled as default } diff --git a/src/IconSegmentOutlinedFilled.tsx b/src/IconSegmentOutlinedFilled.tsx new file mode 100644 index 000000000..16289f6aa --- /dev/null +++ b/src/IconSegmentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSegmentOutlinedFilled as default } diff --git a/src/IconSegmentRoundedFilled.tsx b/src/IconSegmentRoundedFilled.tsx new file mode 100644 index 000000000..c426b3543 --- /dev/null +++ b/src/IconSegmentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSegmentRoundedFilled as default } diff --git a/src/IconSegmentSharpFilled.tsx b/src/IconSegmentSharpFilled.tsx new file mode 100644 index 000000000..dd26eef26 --- /dev/null +++ b/src/IconSegmentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSegmentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSegmentSharpFilled as default } diff --git a/src/IconSelectAllOutlinedFilled.tsx b/src/IconSelectAllOutlinedFilled.tsx new file mode 100644 index 000000000..6267acef9 --- /dev/null +++ b/src/IconSelectAllOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectAllOutlinedFilled as default } diff --git a/src/IconSelectAllRoundedFilled.tsx b/src/IconSelectAllRoundedFilled.tsx new file mode 100644 index 000000000..315367879 --- /dev/null +++ b/src/IconSelectAllRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectAllRoundedFilled as default } diff --git a/src/IconSelectAllSharpFilled.tsx b/src/IconSelectAllSharpFilled.tsx new file mode 100644 index 000000000..347d222fd --- /dev/null +++ b/src/IconSelectAllSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectAllSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectAllSharpFilled as default } diff --git a/src/IconSelectCheckBoxOutlinedFilled.tsx b/src/IconSelectCheckBoxOutlinedFilled.tsx new file mode 100644 index 000000000..f0f94c848 --- /dev/null +++ b/src/IconSelectCheckBoxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectCheckBoxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectCheckBoxOutlinedFilled as default } diff --git a/src/IconSelectCheckBoxRoundedFilled.tsx b/src/IconSelectCheckBoxRoundedFilled.tsx new file mode 100644 index 000000000..fb3ae5521 --- /dev/null +++ b/src/IconSelectCheckBoxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectCheckBoxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectCheckBoxRoundedFilled as default } diff --git a/src/IconSelectCheckBoxSharpFilled.tsx b/src/IconSelectCheckBoxSharpFilled.tsx new file mode 100644 index 000000000..5f75eed18 --- /dev/null +++ b/src/IconSelectCheckBoxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectCheckBoxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectCheckBoxSharpFilled as default } diff --git a/src/IconSelectOutlinedFilled.tsx b/src/IconSelectOutlinedFilled.tsx new file mode 100644 index 000000000..c5d607b1b --- /dev/null +++ b/src/IconSelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectOutlinedFilled as default } diff --git a/src/IconSelectRoundedFilled.tsx b/src/IconSelectRoundedFilled.tsx new file mode 100644 index 000000000..c8b87b5f8 --- /dev/null +++ b/src/IconSelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectRoundedFilled as default } diff --git a/src/IconSelectSharpFilled.tsx b/src/IconSelectSharpFilled.tsx new file mode 100644 index 000000000..5599623b2 --- /dev/null +++ b/src/IconSelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectSharpFilled as default } diff --git a/src/IconSelectToSpeakOutlinedFilled.tsx b/src/IconSelectToSpeakOutlinedFilled.tsx new file mode 100644 index 000000000..caa056771 --- /dev/null +++ b/src/IconSelectToSpeakOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectToSpeakOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectToSpeakOutlinedFilled as default } diff --git a/src/IconSelectToSpeakRoundedFilled.tsx b/src/IconSelectToSpeakRoundedFilled.tsx new file mode 100644 index 000000000..eb4625e0a --- /dev/null +++ b/src/IconSelectToSpeakRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectToSpeakRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectToSpeakRoundedFilled as default } diff --git a/src/IconSelectToSpeakSharpFilled.tsx b/src/IconSelectToSpeakSharpFilled.tsx new file mode 100644 index 000000000..a88b508fc --- /dev/null +++ b/src/IconSelectToSpeakSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectToSpeakSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectToSpeakSharpFilled as default } diff --git a/src/IconSelectWindow2OutlinedFilled.tsx b/src/IconSelectWindow2OutlinedFilled.tsx new file mode 100644 index 000000000..483fa3fcd --- /dev/null +++ b/src/IconSelectWindow2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindow2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindow2OutlinedFilled as default } diff --git a/src/IconSelectWindow2RoundedFilled.tsx b/src/IconSelectWindow2RoundedFilled.tsx new file mode 100644 index 000000000..8c562824b --- /dev/null +++ b/src/IconSelectWindow2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindow2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindow2RoundedFilled as default } diff --git a/src/IconSelectWindow2SharpFilled.tsx b/src/IconSelectWindow2SharpFilled.tsx new file mode 100644 index 000000000..16fc5f61c --- /dev/null +++ b/src/IconSelectWindow2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindow2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindow2SharpFilled as default } diff --git a/src/IconSelectWindowOffOutlinedFilled.tsx b/src/IconSelectWindowOffOutlinedFilled.tsx new file mode 100644 index 000000000..1fc6cafea --- /dev/null +++ b/src/IconSelectWindowOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindowOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindowOffOutlinedFilled as default } diff --git a/src/IconSelectWindowOffRoundedFilled.tsx b/src/IconSelectWindowOffRoundedFilled.tsx new file mode 100644 index 000000000..ae755dd00 --- /dev/null +++ b/src/IconSelectWindowOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindowOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindowOffRoundedFilled as default } diff --git a/src/IconSelectWindowOffSharpFilled.tsx b/src/IconSelectWindowOffSharpFilled.tsx new file mode 100644 index 000000000..9fb542a42 --- /dev/null +++ b/src/IconSelectWindowOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindowOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindowOffSharpFilled as default } diff --git a/src/IconSelectWindowOutlinedFilled.tsx b/src/IconSelectWindowOutlinedFilled.tsx new file mode 100644 index 000000000..4f01001bd --- /dev/null +++ b/src/IconSelectWindowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindowOutlinedFilled as default } diff --git a/src/IconSelectWindowRoundedFilled.tsx b/src/IconSelectWindowRoundedFilled.tsx new file mode 100644 index 000000000..16ea01940 --- /dev/null +++ b/src/IconSelectWindowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindowRoundedFilled as default } diff --git a/src/IconSelectWindowSharpFilled.tsx b/src/IconSelectWindowSharpFilled.tsx new file mode 100644 index 000000000..0d74b7d09 --- /dev/null +++ b/src/IconSelectWindowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelectWindowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelectWindowSharpFilled as default } diff --git a/src/IconSelfCareOutlinedFilled.tsx b/src/IconSelfCareOutlinedFilled.tsx new file mode 100644 index 000000000..335b84ec7 --- /dev/null +++ b/src/IconSelfCareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfCareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelfCareOutlinedFilled as default } diff --git a/src/IconSelfCareRoundedFilled.tsx b/src/IconSelfCareRoundedFilled.tsx new file mode 100644 index 000000000..67d5c8cca --- /dev/null +++ b/src/IconSelfCareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfCareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelfCareRoundedFilled as default } diff --git a/src/IconSelfCareSharpFilled.tsx b/src/IconSelfCareSharpFilled.tsx new file mode 100644 index 000000000..6224874cf --- /dev/null +++ b/src/IconSelfCareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfCareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelfCareSharpFilled as default } diff --git a/src/IconSelfImprovementOutlinedFilled.tsx b/src/IconSelfImprovementOutlinedFilled.tsx new file mode 100644 index 000000000..7e12871cc --- /dev/null +++ b/src/IconSelfImprovementOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSelfImprovementOutlinedFilled as default } diff --git a/src/IconSelfImprovementRoundedFilled.tsx b/src/IconSelfImprovementRoundedFilled.tsx new file mode 100644 index 000000000..f23c44456 --- /dev/null +++ b/src/IconSelfImprovementRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSelfImprovementRoundedFilled as default } diff --git a/src/IconSelfImprovementSharpFilled.tsx b/src/IconSelfImprovementSharpFilled.tsx new file mode 100644 index 000000000..d011ff851 --- /dev/null +++ b/src/IconSelfImprovementSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSelfImprovementSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSelfImprovementSharpFilled as default } diff --git a/src/IconSellOutlinedFilled.tsx b/src/IconSellOutlinedFilled.tsx new file mode 100644 index 000000000..3bbe2f056 --- /dev/null +++ b/src/IconSellOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSellOutlinedFilled as default } diff --git a/src/IconSellRoundedFilled.tsx b/src/IconSellRoundedFilled.tsx new file mode 100644 index 000000000..4382973ed --- /dev/null +++ b/src/IconSellRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSellRoundedFilled as default } diff --git a/src/IconSellSharpFilled.tsx b/src/IconSellSharpFilled.tsx new file mode 100644 index 000000000..5244cf5c4 --- /dev/null +++ b/src/IconSellSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSellSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSellSharpFilled as default } diff --git a/src/IconSendAndArchiveOutlinedFilled.tsx b/src/IconSendAndArchiveOutlinedFilled.tsx new file mode 100644 index 000000000..d6887feaf --- /dev/null +++ b/src/IconSendAndArchiveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSendAndArchiveOutlinedFilled as default } diff --git a/src/IconSendAndArchiveRoundedFilled.tsx b/src/IconSendAndArchiveRoundedFilled.tsx new file mode 100644 index 000000000..a3441f473 --- /dev/null +++ b/src/IconSendAndArchiveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendAndArchiveRoundedFilled as default } diff --git a/src/IconSendAndArchiveSharpFilled.tsx b/src/IconSendAndArchiveSharpFilled.tsx new file mode 100644 index 000000000..7c5245ee9 --- /dev/null +++ b/src/IconSendAndArchiveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendAndArchiveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendAndArchiveSharpFilled as default } diff --git a/src/IconSendMoneyOutlinedFilled.tsx b/src/IconSendMoneyOutlinedFilled.tsx new file mode 100644 index 000000000..7f1bca952 --- /dev/null +++ b/src/IconSendMoneyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendMoneyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendMoneyOutlinedFilled as default } diff --git a/src/IconSendMoneyRoundedFilled.tsx b/src/IconSendMoneyRoundedFilled.tsx new file mode 100644 index 000000000..a981a2fd5 --- /dev/null +++ b/src/IconSendMoneyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendMoneyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendMoneyRoundedFilled as default } diff --git a/src/IconSendMoneySharpFilled.tsx b/src/IconSendMoneySharpFilled.tsx new file mode 100644 index 000000000..ec03a6f65 --- /dev/null +++ b/src/IconSendMoneySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendMoneySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendMoneySharpFilled as default } diff --git a/src/IconSendOutlinedFilled.tsx b/src/IconSendOutlinedFilled.tsx new file mode 100644 index 000000000..5ace4d0c4 --- /dev/null +++ b/src/IconSendOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendOutlinedFilled as default } diff --git a/src/IconSendRoundedFilled.tsx b/src/IconSendRoundedFilled.tsx new file mode 100644 index 000000000..89bbe0466 --- /dev/null +++ b/src/IconSendRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendRoundedFilled as default } diff --git a/src/IconSendSharpFilled.tsx b/src/IconSendSharpFilled.tsx new file mode 100644 index 000000000..cd62903e1 --- /dev/null +++ b/src/IconSendSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendSharpFilled as default } diff --git a/src/IconSendTimeExtensionOutlinedFilled.tsx b/src/IconSendTimeExtensionOutlinedFilled.tsx new file mode 100644 index 000000000..f35cd0b2a --- /dev/null +++ b/src/IconSendTimeExtensionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSendTimeExtensionOutlinedFilled as default } diff --git a/src/IconSendTimeExtensionRoundedFilled.tsx b/src/IconSendTimeExtensionRoundedFilled.tsx new file mode 100644 index 000000000..f674268aa --- /dev/null +++ b/src/IconSendTimeExtensionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSendTimeExtensionRoundedFilled as default } diff --git a/src/IconSendTimeExtensionSharpFilled.tsx b/src/IconSendTimeExtensionSharpFilled.tsx new file mode 100644 index 000000000..d2f22201d --- /dev/null +++ b/src/IconSendTimeExtensionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendTimeExtensionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSendTimeExtensionSharpFilled as default } diff --git a/src/IconSendToMobileOutlinedFilled.tsx b/src/IconSendToMobileOutlinedFilled.tsx new file mode 100644 index 000000000..973b7620c --- /dev/null +++ b/src/IconSendToMobileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendToMobileOutlinedFilled as default } diff --git a/src/IconSendToMobileRoundedFilled.tsx b/src/IconSendToMobileRoundedFilled.tsx new file mode 100644 index 000000000..13bd1bc16 --- /dev/null +++ b/src/IconSendToMobileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendToMobileRoundedFilled as default } diff --git a/src/IconSendToMobileSharpFilled.tsx b/src/IconSendToMobileSharpFilled.tsx new file mode 100644 index 000000000..9c3eace7a --- /dev/null +++ b/src/IconSendToMobileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSendToMobileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSendToMobileSharpFilled as default } diff --git a/src/IconSensorDoorOutlinedFilled.tsx b/src/IconSensorDoorOutlinedFilled.tsx new file mode 100644 index 000000000..0866a8ee9 --- /dev/null +++ b/src/IconSensorDoorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorDoorOutlinedFilled as default } diff --git a/src/IconSensorDoorRoundedFilled.tsx b/src/IconSensorDoorRoundedFilled.tsx new file mode 100644 index 000000000..aa073e473 --- /dev/null +++ b/src/IconSensorDoorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorDoorRoundedFilled as default } diff --git a/src/IconSensorDoorSharpFilled.tsx b/src/IconSensorDoorSharpFilled.tsx new file mode 100644 index 000000000..729412d44 --- /dev/null +++ b/src/IconSensorDoorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorDoorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorDoorSharpFilled as default } diff --git a/src/IconSensorOccupiedOutlinedFilled.tsx b/src/IconSensorOccupiedOutlinedFilled.tsx new file mode 100644 index 000000000..029e7333e --- /dev/null +++ b/src/IconSensorOccupiedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorOccupiedOutlinedFilled as default } diff --git a/src/IconSensorOccupiedRoundedFilled.tsx b/src/IconSensorOccupiedRoundedFilled.tsx new file mode 100644 index 000000000..59b121cb4 --- /dev/null +++ b/src/IconSensorOccupiedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorOccupiedRoundedFilled as default } diff --git a/src/IconSensorOccupiedSharpFilled.tsx b/src/IconSensorOccupiedSharpFilled.tsx new file mode 100644 index 000000000..45bf576ae --- /dev/null +++ b/src/IconSensorOccupiedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorOccupiedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorOccupiedSharpFilled as default } diff --git a/src/IconSensorWindowOutlinedFilled.tsx b/src/IconSensorWindowOutlinedFilled.tsx new file mode 100644 index 000000000..cda36ae72 --- /dev/null +++ b/src/IconSensorWindowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorWindowOutlinedFilled as default } diff --git a/src/IconSensorWindowRoundedFilled.tsx b/src/IconSensorWindowRoundedFilled.tsx new file mode 100644 index 000000000..96896e3e9 --- /dev/null +++ b/src/IconSensorWindowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorWindowRoundedFilled as default } diff --git a/src/IconSensorWindowSharpFilled.tsx b/src/IconSensorWindowSharpFilled.tsx new file mode 100644 index 000000000..6af8899b8 --- /dev/null +++ b/src/IconSensorWindowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorWindowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorWindowSharpFilled as default } diff --git a/src/IconSensorsKrxOffOutlinedFilled.tsx b/src/IconSensorsKrxOffOutlinedFilled.tsx new file mode 100644 index 000000000..eca4246ee --- /dev/null +++ b/src/IconSensorsKrxOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsKrxOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsKrxOffOutlinedFilled as default } diff --git a/src/IconSensorsKrxOffRoundedFilled.tsx b/src/IconSensorsKrxOffRoundedFilled.tsx new file mode 100644 index 000000000..f679790b0 --- /dev/null +++ b/src/IconSensorsKrxOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsKrxOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsKrxOffRoundedFilled as default } diff --git a/src/IconSensorsKrxOffSharpFilled.tsx b/src/IconSensorsKrxOffSharpFilled.tsx new file mode 100644 index 000000000..f4646d94e --- /dev/null +++ b/src/IconSensorsKrxOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsKrxOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsKrxOffSharpFilled as default } diff --git a/src/IconSensorsKrxOutlinedFilled.tsx b/src/IconSensorsKrxOutlinedFilled.tsx new file mode 100644 index 000000000..d51f132cf --- /dev/null +++ b/src/IconSensorsKrxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsKrxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsKrxOutlinedFilled as default } diff --git a/src/IconSensorsKrxRoundedFilled.tsx b/src/IconSensorsKrxRoundedFilled.tsx new file mode 100644 index 000000000..1e0659a8b --- /dev/null +++ b/src/IconSensorsKrxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsKrxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsKrxRoundedFilled as default } diff --git a/src/IconSensorsKrxSharpFilled.tsx b/src/IconSensorsKrxSharpFilled.tsx new file mode 100644 index 000000000..46e44192c --- /dev/null +++ b/src/IconSensorsKrxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsKrxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsKrxSharpFilled as default } diff --git a/src/IconSensorsOffOutlinedFilled.tsx b/src/IconSensorsOffOutlinedFilled.tsx new file mode 100644 index 000000000..81e36cb5c --- /dev/null +++ b/src/IconSensorsOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsOffOutlinedFilled as default } diff --git a/src/IconSensorsOffRoundedFilled.tsx b/src/IconSensorsOffRoundedFilled.tsx new file mode 100644 index 000000000..be5b225bb --- /dev/null +++ b/src/IconSensorsOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsOffRoundedFilled as default } diff --git a/src/IconSensorsOffSharpFilled.tsx b/src/IconSensorsOffSharpFilled.tsx new file mode 100644 index 000000000..c90ea7a52 --- /dev/null +++ b/src/IconSensorsOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsOffSharpFilled as default } diff --git a/src/IconSensorsOutlinedFilled.tsx b/src/IconSensorsOutlinedFilled.tsx new file mode 100644 index 000000000..c9329cc2b --- /dev/null +++ b/src/IconSensorsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsOutlinedFilled as default } diff --git a/src/IconSensorsRoundedFilled.tsx b/src/IconSensorsRoundedFilled.tsx new file mode 100644 index 000000000..26aa4f391 --- /dev/null +++ b/src/IconSensorsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsRoundedFilled as default } diff --git a/src/IconSensorsSharpFilled.tsx b/src/IconSensorsSharpFilled.tsx new file mode 100644 index 000000000..2fc931c94 --- /dev/null +++ b/src/IconSensorsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSensorsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSensorsSharpFilled as default } diff --git a/src/IconSentimentCalmOutlinedFilled.tsx b/src/IconSentimentCalmOutlinedFilled.tsx new file mode 100644 index 000000000..def477c58 --- /dev/null +++ b/src/IconSentimentCalmOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentCalmOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentCalmOutlinedFilled as default } diff --git a/src/IconSentimentCalmRoundedFilled.tsx b/src/IconSentimentCalmRoundedFilled.tsx new file mode 100644 index 000000000..0cc7aa0fc --- /dev/null +++ b/src/IconSentimentCalmRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentCalmRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentCalmRoundedFilled as default } diff --git a/src/IconSentimentCalmSharpFilled.tsx b/src/IconSentimentCalmSharpFilled.tsx new file mode 100644 index 000000000..a86b858af --- /dev/null +++ b/src/IconSentimentCalmSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentCalmSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentCalmSharpFilled as default } diff --git a/src/IconSentimentContentOutlinedFilled.tsx b/src/IconSentimentContentOutlinedFilled.tsx new file mode 100644 index 000000000..55dd59491 --- /dev/null +++ b/src/IconSentimentContentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentContentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentContentOutlinedFilled as default } diff --git a/src/IconSentimentContentRoundedFilled.tsx b/src/IconSentimentContentRoundedFilled.tsx new file mode 100644 index 000000000..a609df14d --- /dev/null +++ b/src/IconSentimentContentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentContentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentContentRoundedFilled as default } diff --git a/src/IconSentimentContentSharpFilled.tsx b/src/IconSentimentContentSharpFilled.tsx new file mode 100644 index 000000000..a35d34ed0 --- /dev/null +++ b/src/IconSentimentContentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentContentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentContentSharpFilled as default } diff --git a/src/IconSentimentDissatisfiedOutlinedFilled.tsx b/src/IconSentimentDissatisfiedOutlinedFilled.tsx new file mode 100644 index 000000000..25cfe3d26 --- /dev/null +++ b/src/IconSentimentDissatisfiedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentDissatisfiedOutlinedFilled as default } diff --git a/src/IconSentimentDissatisfiedRoundedFilled.tsx b/src/IconSentimentDissatisfiedRoundedFilled.tsx new file mode 100644 index 000000000..7f24cd13c --- /dev/null +++ b/src/IconSentimentDissatisfiedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentDissatisfiedRoundedFilled as default } diff --git a/src/IconSentimentDissatisfiedSharpFilled.tsx b/src/IconSentimentDissatisfiedSharpFilled.tsx new file mode 100644 index 000000000..1384b8941 --- /dev/null +++ b/src/IconSentimentDissatisfiedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentDissatisfiedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentDissatisfiedSharpFilled as default } diff --git a/src/IconSentimentExcitedOutlinedFilled.tsx b/src/IconSentimentExcitedOutlinedFilled.tsx new file mode 100644 index 000000000..c03ee9ba7 --- /dev/null +++ b/src/IconSentimentExcitedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentExcitedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentExcitedOutlinedFilled as default } diff --git a/src/IconSentimentExcitedRoundedFilled.tsx b/src/IconSentimentExcitedRoundedFilled.tsx new file mode 100644 index 000000000..4d1efc7c2 --- /dev/null +++ b/src/IconSentimentExcitedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentExcitedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentExcitedRoundedFilled as default } diff --git a/src/IconSentimentExcitedSharpFilled.tsx b/src/IconSentimentExcitedSharpFilled.tsx new file mode 100644 index 000000000..654f2fd4f --- /dev/null +++ b/src/IconSentimentExcitedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentExcitedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentExcitedSharpFilled as default } diff --git a/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx b/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx new file mode 100644 index 000000000..8df7c23bb --- /dev/null +++ b/src/IconSentimentExtremelyDissatisfiedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentExtremelyDissatisfiedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentExtremelyDissatisfiedOutlinedFilled as default } diff --git a/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx b/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx new file mode 100644 index 000000000..05f816582 --- /dev/null +++ b/src/IconSentimentExtremelyDissatisfiedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentExtremelyDissatisfiedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentExtremelyDissatisfiedRoundedFilled as default } diff --git a/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx b/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx new file mode 100644 index 000000000..3bc0b65ee --- /dev/null +++ b/src/IconSentimentExtremelyDissatisfiedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentExtremelyDissatisfiedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentExtremelyDissatisfiedSharpFilled as default } diff --git a/src/IconSentimentFrustratedOutlinedFilled.tsx b/src/IconSentimentFrustratedOutlinedFilled.tsx new file mode 100644 index 000000000..3eb01b085 --- /dev/null +++ b/src/IconSentimentFrustratedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentFrustratedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentFrustratedOutlinedFilled as default } diff --git a/src/IconSentimentFrustratedRoundedFilled.tsx b/src/IconSentimentFrustratedRoundedFilled.tsx new file mode 100644 index 000000000..547cd72af --- /dev/null +++ b/src/IconSentimentFrustratedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentFrustratedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentFrustratedRoundedFilled as default } diff --git a/src/IconSentimentFrustratedSharpFilled.tsx b/src/IconSentimentFrustratedSharpFilled.tsx new file mode 100644 index 000000000..c14d9e50a --- /dev/null +++ b/src/IconSentimentFrustratedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentFrustratedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentFrustratedSharpFilled as default } diff --git a/src/IconSentimentNeutralOutlinedFilled.tsx b/src/IconSentimentNeutralOutlinedFilled.tsx new file mode 100644 index 000000000..b3c2d05df --- /dev/null +++ b/src/IconSentimentNeutralOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentNeutralOutlinedFilled as default } diff --git a/src/IconSentimentNeutralRoundedFilled.tsx b/src/IconSentimentNeutralRoundedFilled.tsx new file mode 100644 index 000000000..74a6ae20f --- /dev/null +++ b/src/IconSentimentNeutralRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentNeutralRoundedFilled as default } diff --git a/src/IconSentimentNeutralSharpFilled.tsx b/src/IconSentimentNeutralSharpFilled.tsx new file mode 100644 index 000000000..28078f941 --- /dev/null +++ b/src/IconSentimentNeutralSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentNeutralSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentNeutralSharpFilled as default } diff --git a/src/IconSentimentSadOutlinedFilled.tsx b/src/IconSentimentSadOutlinedFilled.tsx new file mode 100644 index 000000000..c57a46618 --- /dev/null +++ b/src/IconSentimentSadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentSadOutlinedFilled as default } diff --git a/src/IconSentimentSadRoundedFilled.tsx b/src/IconSentimentSadRoundedFilled.tsx new file mode 100644 index 000000000..6e97b0f8f --- /dev/null +++ b/src/IconSentimentSadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentSadRoundedFilled as default } diff --git a/src/IconSentimentSadSharpFilled.tsx b/src/IconSentimentSadSharpFilled.tsx new file mode 100644 index 000000000..c6b68b41b --- /dev/null +++ b/src/IconSentimentSadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentSadSharpFilled as default } diff --git a/src/IconSentimentSatisfiedOutlinedFilled.tsx b/src/IconSentimentSatisfiedOutlinedFilled.tsx new file mode 100644 index 000000000..2c342415a --- /dev/null +++ b/src/IconSentimentSatisfiedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentSatisfiedOutlinedFilled as default } diff --git a/src/IconSentimentSatisfiedRoundedFilled.tsx b/src/IconSentimentSatisfiedRoundedFilled.tsx new file mode 100644 index 000000000..43fe7efc0 --- /dev/null +++ b/src/IconSentimentSatisfiedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentSatisfiedRoundedFilled as default } diff --git a/src/IconSentimentSatisfiedSharpFilled.tsx b/src/IconSentimentSatisfiedSharpFilled.tsx new file mode 100644 index 000000000..593e231d2 --- /dev/null +++ b/src/IconSentimentSatisfiedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentSatisfiedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentSatisfiedSharpFilled as default } diff --git a/src/IconSentimentStressedOutlinedFilled.tsx b/src/IconSentimentStressedOutlinedFilled.tsx new file mode 100644 index 000000000..8465ba40b --- /dev/null +++ b/src/IconSentimentStressedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentStressedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentStressedOutlinedFilled as default } diff --git a/src/IconSentimentStressedRoundedFilled.tsx b/src/IconSentimentStressedRoundedFilled.tsx new file mode 100644 index 000000000..684ad73b9 --- /dev/null +++ b/src/IconSentimentStressedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentStressedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentStressedRoundedFilled as default } diff --git a/src/IconSentimentStressedSharpFilled.tsx b/src/IconSentimentStressedSharpFilled.tsx new file mode 100644 index 000000000..a9bbd28d4 --- /dev/null +++ b/src/IconSentimentStressedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentStressedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentStressedSharpFilled as default } diff --git a/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx b/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx new file mode 100644 index 000000000..a86beea01 --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentVeryDissatisfiedOutlinedFilled as default } diff --git a/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx b/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx new file mode 100644 index 000000000..ab71bb057 --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentVeryDissatisfiedRoundedFilled as default } diff --git a/src/IconSentimentVeryDissatisfiedSharpFilled.tsx b/src/IconSentimentVeryDissatisfiedSharpFilled.tsx new file mode 100644 index 000000000..b4a96b173 --- /dev/null +++ b/src/IconSentimentVeryDissatisfiedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVeryDissatisfiedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentVeryDissatisfiedSharpFilled as default } diff --git a/src/IconSentimentVerySatisfiedOutlinedFilled.tsx b/src/IconSentimentVerySatisfiedOutlinedFilled.tsx new file mode 100644 index 000000000..b874dc272 --- /dev/null +++ b/src/IconSentimentVerySatisfiedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentVerySatisfiedOutlinedFilled as default } diff --git a/src/IconSentimentVerySatisfiedRoundedFilled.tsx b/src/IconSentimentVerySatisfiedRoundedFilled.tsx new file mode 100644 index 000000000..8f4ada0d3 --- /dev/null +++ b/src/IconSentimentVerySatisfiedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentVerySatisfiedRoundedFilled as default } diff --git a/src/IconSentimentVerySatisfiedSharpFilled.tsx b/src/IconSentimentVerySatisfiedSharpFilled.tsx new file mode 100644 index 000000000..2ca7d150c --- /dev/null +++ b/src/IconSentimentVerySatisfiedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentVerySatisfiedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentVerySatisfiedSharpFilled as default } diff --git a/src/IconSentimentWorriedOutlinedFilled.tsx b/src/IconSentimentWorriedOutlinedFilled.tsx new file mode 100644 index 000000000..49e087f36 --- /dev/null +++ b/src/IconSentimentWorriedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentWorriedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentWorriedOutlinedFilled as default } diff --git a/src/IconSentimentWorriedRoundedFilled.tsx b/src/IconSentimentWorriedRoundedFilled.tsx new file mode 100644 index 000000000..b27179e6b --- /dev/null +++ b/src/IconSentimentWorriedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentWorriedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentWorriedRoundedFilled as default } diff --git a/src/IconSentimentWorriedSharpFilled.tsx b/src/IconSentimentWorriedSharpFilled.tsx new file mode 100644 index 000000000..97cb3a696 --- /dev/null +++ b/src/IconSentimentWorriedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSentimentWorriedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSentimentWorriedSharpFilled as default } diff --git a/src/IconSerifOutlinedFilled.tsx b/src/IconSerifOutlinedFilled.tsx new file mode 100644 index 000000000..68b954b76 --- /dev/null +++ b/src/IconSerifOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSerifOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSerifOutlinedFilled as default } diff --git a/src/IconSerifRoundedFilled.tsx b/src/IconSerifRoundedFilled.tsx new file mode 100644 index 000000000..c07a7b5b8 --- /dev/null +++ b/src/IconSerifRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSerifRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSerifRoundedFilled as default } diff --git a/src/IconSerifSharpFilled.tsx b/src/IconSerifSharpFilled.tsx new file mode 100644 index 000000000..8d4fb6c45 --- /dev/null +++ b/src/IconSerifSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSerifSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSerifSharpFilled as default } diff --git a/src/IconServiceToolboxOutlinedFilled.tsx b/src/IconServiceToolboxOutlinedFilled.tsx new file mode 100644 index 000000000..f67fef81d --- /dev/null +++ b/src/IconServiceToolboxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconServiceToolboxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconServiceToolboxOutlinedFilled as default } diff --git a/src/IconServiceToolboxRoundedFilled.tsx b/src/IconServiceToolboxRoundedFilled.tsx new file mode 100644 index 000000000..e10f445b3 --- /dev/null +++ b/src/IconServiceToolboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconServiceToolboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconServiceToolboxRoundedFilled as default } diff --git a/src/IconServiceToolboxSharpFilled.tsx b/src/IconServiceToolboxSharpFilled.tsx new file mode 100644 index 000000000..0be0eb365 --- /dev/null +++ b/src/IconServiceToolboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconServiceToolboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconServiceToolboxSharpFilled as default } diff --git a/src/IconSetMealOutlinedFilled.tsx b/src/IconSetMealOutlinedFilled.tsx new file mode 100644 index 000000000..884643fc7 --- /dev/null +++ b/src/IconSetMealOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSetMealOutlinedFilled as default } diff --git a/src/IconSetMealRoundedFilled.tsx b/src/IconSetMealRoundedFilled.tsx new file mode 100644 index 000000000..8743af769 --- /dev/null +++ b/src/IconSetMealRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSetMealRoundedFilled as default } diff --git a/src/IconSetMealSharpFilled.tsx b/src/IconSetMealSharpFilled.tsx new file mode 100644 index 000000000..b7da8df15 --- /dev/null +++ b/src/IconSetMealSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSetMealSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSetMealSharpFilled as default } diff --git a/src/IconSettingsAccessibilityOutlinedFilled.tsx b/src/IconSettingsAccessibilityOutlinedFilled.tsx new file mode 100644 index 000000000..8d4f6c533 --- /dev/null +++ b/src/IconSettingsAccessibilityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAccessibilityOutlinedFilled as default } diff --git a/src/IconSettingsAccessibilityRoundedFilled.tsx b/src/IconSettingsAccessibilityRoundedFilled.tsx new file mode 100644 index 000000000..9a12dbe9b --- /dev/null +++ b/src/IconSettingsAccessibilityRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilityRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAccessibilityRoundedFilled as default } diff --git a/src/IconSettingsAccessibilitySharpFilled.tsx b/src/IconSettingsAccessibilitySharpFilled.tsx new file mode 100644 index 000000000..fa39e7e70 --- /dev/null +++ b/src/IconSettingsAccessibilitySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccessibilitySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAccessibilitySharpFilled as default } diff --git a/src/IconSettingsAccountBoxOutlinedFilled.tsx b/src/IconSettingsAccountBoxOutlinedFilled.tsx new file mode 100644 index 000000000..0cfc5625b --- /dev/null +++ b/src/IconSettingsAccountBoxOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccountBoxOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAccountBoxOutlinedFilled as default } diff --git a/src/IconSettingsAccountBoxRoundedFilled.tsx b/src/IconSettingsAccountBoxRoundedFilled.tsx new file mode 100644 index 000000000..75438a930 --- /dev/null +++ b/src/IconSettingsAccountBoxRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccountBoxRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAccountBoxRoundedFilled as default } diff --git a/src/IconSettingsAccountBoxSharpFilled.tsx b/src/IconSettingsAccountBoxSharpFilled.tsx new file mode 100644 index 000000000..bac884051 --- /dev/null +++ b/src/IconSettingsAccountBoxSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAccountBoxSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAccountBoxSharpFilled as default } diff --git a/src/IconSettingsAlertOutlinedFilled.tsx b/src/IconSettingsAlertOutlinedFilled.tsx new file mode 100644 index 000000000..b9d2337a3 --- /dev/null +++ b/src/IconSettingsAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAlertOutlinedFilled as default } diff --git a/src/IconSettingsAlertRoundedFilled.tsx b/src/IconSettingsAlertRoundedFilled.tsx new file mode 100644 index 000000000..c9d29385b --- /dev/null +++ b/src/IconSettingsAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAlertRoundedFilled as default } diff --git a/src/IconSettingsAlertSharpFilled.tsx b/src/IconSettingsAlertSharpFilled.tsx new file mode 100644 index 000000000..bfcd266c9 --- /dev/null +++ b/src/IconSettingsAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsAlertSharpFilled as default } diff --git a/src/IconSettingsApplicationsOutlinedFilled.tsx b/src/IconSettingsApplicationsOutlinedFilled.tsx new file mode 100644 index 000000000..3ca0cbef7 --- /dev/null +++ b/src/IconSettingsApplicationsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsApplicationsOutlinedFilled as default } diff --git a/src/IconSettingsApplicationsRoundedFilled.tsx b/src/IconSettingsApplicationsRoundedFilled.tsx new file mode 100644 index 000000000..a4725ea3b --- /dev/null +++ b/src/IconSettingsApplicationsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsApplicationsRoundedFilled as default } diff --git a/src/IconSettingsApplicationsSharpFilled.tsx b/src/IconSettingsApplicationsSharpFilled.tsx new file mode 100644 index 000000000..c3e89356a --- /dev/null +++ b/src/IconSettingsApplicationsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsApplicationsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsApplicationsSharpFilled as default } diff --git a/src/IconSettingsBRollOutlinedFilled.tsx b/src/IconSettingsBRollOutlinedFilled.tsx new file mode 100644 index 000000000..0e9b74256 --- /dev/null +++ b/src/IconSettingsBRollOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBRollOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBRollOutlinedFilled as default } diff --git a/src/IconSettingsBRollRoundedFilled.tsx b/src/IconSettingsBRollRoundedFilled.tsx new file mode 100644 index 000000000..47fb60ade --- /dev/null +++ b/src/IconSettingsBRollRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBRollRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBRollRoundedFilled as default } diff --git a/src/IconSettingsBRollSharpFilled.tsx b/src/IconSettingsBRollSharpFilled.tsx new file mode 100644 index 000000000..d217b7d45 --- /dev/null +++ b/src/IconSettingsBRollSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBRollSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBRollSharpFilled as default } diff --git a/src/IconSettingsBackupRestoreOutlinedFilled.tsx b/src/IconSettingsBackupRestoreOutlinedFilled.tsx new file mode 100644 index 000000000..435127958 --- /dev/null +++ b/src/IconSettingsBackupRestoreOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBackupRestoreOutlinedFilled as default } diff --git a/src/IconSettingsBackupRestoreRoundedFilled.tsx b/src/IconSettingsBackupRestoreRoundedFilled.tsx new file mode 100644 index 000000000..b966f1797 --- /dev/null +++ b/src/IconSettingsBackupRestoreRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBackupRestoreRoundedFilled as default } diff --git a/src/IconSettingsBackupRestoreSharpFilled.tsx b/src/IconSettingsBackupRestoreSharpFilled.tsx new file mode 100644 index 000000000..cbd025eb4 --- /dev/null +++ b/src/IconSettingsBackupRestoreSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBackupRestoreSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBackupRestoreSharpFilled as default } diff --git a/src/IconSettingsBluetoothOutlinedFilled.tsx b/src/IconSettingsBluetoothOutlinedFilled.tsx new file mode 100644 index 000000000..54068011f --- /dev/null +++ b/src/IconSettingsBluetoothOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBluetoothOutlinedFilled as default } diff --git a/src/IconSettingsBluetoothRoundedFilled.tsx b/src/IconSettingsBluetoothRoundedFilled.tsx new file mode 100644 index 000000000..da2e499a6 --- /dev/null +++ b/src/IconSettingsBluetoothRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBluetoothRoundedFilled as default } diff --git a/src/IconSettingsBluetoothSharpFilled.tsx b/src/IconSettingsBluetoothSharpFilled.tsx new file mode 100644 index 000000000..8c5d5efca --- /dev/null +++ b/src/IconSettingsBluetoothSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBluetoothSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBluetoothSharpFilled as default } diff --git a/src/IconSettingsBrightnessOutlinedFilled.tsx b/src/IconSettingsBrightnessOutlinedFilled.tsx new file mode 100644 index 000000000..48e83be50 --- /dev/null +++ b/src/IconSettingsBrightnessOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBrightnessOutlinedFilled as default } diff --git a/src/IconSettingsBrightnessRoundedFilled.tsx b/src/IconSettingsBrightnessRoundedFilled.tsx new file mode 100644 index 000000000..05a565dbc --- /dev/null +++ b/src/IconSettingsBrightnessRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBrightnessRoundedFilled as default } diff --git a/src/IconSettingsBrightnessSharpFilled.tsx b/src/IconSettingsBrightnessSharpFilled.tsx new file mode 100644 index 000000000..07bf8c7cb --- /dev/null +++ b/src/IconSettingsBrightnessSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsBrightnessSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsBrightnessSharpFilled as default } diff --git a/src/IconSettingsCellOutlinedFilled.tsx b/src/IconSettingsCellOutlinedFilled.tsx new file mode 100644 index 000000000..4bb139dae --- /dev/null +++ b/src/IconSettingsCellOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsCellOutlinedFilled as default } diff --git a/src/IconSettingsCellRoundedFilled.tsx b/src/IconSettingsCellRoundedFilled.tsx new file mode 100644 index 000000000..80a446ad5 --- /dev/null +++ b/src/IconSettingsCellRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsCellRoundedFilled as default } diff --git a/src/IconSettingsCellSharpFilled.tsx b/src/IconSettingsCellSharpFilled.tsx new file mode 100644 index 000000000..9eb4570f5 --- /dev/null +++ b/src/IconSettingsCellSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCellSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsCellSharpFilled as default } diff --git a/src/IconSettingsCinematicBlurOutlinedFilled.tsx b/src/IconSettingsCinematicBlurOutlinedFilled.tsx new file mode 100644 index 000000000..1bb5bb462 --- /dev/null +++ b/src/IconSettingsCinematicBlurOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCinematicBlurOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsCinematicBlurOutlinedFilled as default } diff --git a/src/IconSettingsCinematicBlurRoundedFilled.tsx b/src/IconSettingsCinematicBlurRoundedFilled.tsx new file mode 100644 index 000000000..49b911d53 --- /dev/null +++ b/src/IconSettingsCinematicBlurRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCinematicBlurRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsCinematicBlurRoundedFilled as default } diff --git a/src/IconSettingsCinematicBlurSharpFilled.tsx b/src/IconSettingsCinematicBlurSharpFilled.tsx new file mode 100644 index 000000000..7e90d219f --- /dev/null +++ b/src/IconSettingsCinematicBlurSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsCinematicBlurSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsCinematicBlurSharpFilled as default } diff --git a/src/IconSettingsEthernetOutlinedFilled.tsx b/src/IconSettingsEthernetOutlinedFilled.tsx new file mode 100644 index 000000000..162dfbd55 --- /dev/null +++ b/src/IconSettingsEthernetOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsEthernetOutlinedFilled as default } diff --git a/src/IconSettingsEthernetRoundedFilled.tsx b/src/IconSettingsEthernetRoundedFilled.tsx new file mode 100644 index 000000000..4eb508ae7 --- /dev/null +++ b/src/IconSettingsEthernetRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsEthernetRoundedFilled as default } diff --git a/src/IconSettingsEthernetSharpFilled.tsx b/src/IconSettingsEthernetSharpFilled.tsx new file mode 100644 index 000000000..25af3b9a8 --- /dev/null +++ b/src/IconSettingsEthernetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsEthernetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsEthernetSharpFilled as default } diff --git a/src/IconSettingsHeartOutlinedFilled.tsx b/src/IconSettingsHeartOutlinedFilled.tsx new file mode 100644 index 000000000..307e27b0d --- /dev/null +++ b/src/IconSettingsHeartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsHeartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsHeartOutlinedFilled as default } diff --git a/src/IconSettingsHeartRoundedFilled.tsx b/src/IconSettingsHeartRoundedFilled.tsx new file mode 100644 index 000000000..c85ac5030 --- /dev/null +++ b/src/IconSettingsHeartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsHeartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsHeartRoundedFilled as default } diff --git a/src/IconSettingsHeartSharpFilled.tsx b/src/IconSettingsHeartSharpFilled.tsx new file mode 100644 index 000000000..e6df72adb --- /dev/null +++ b/src/IconSettingsHeartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsHeartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsHeartSharpFilled as default } diff --git a/src/IconSettingsInputAntennaOutlinedFilled.tsx b/src/IconSettingsInputAntennaOutlinedFilled.tsx new file mode 100644 index 000000000..15da2b444 --- /dev/null +++ b/src/IconSettingsInputAntennaOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputAntennaOutlinedFilled as default } diff --git a/src/IconSettingsInputAntennaRoundedFilled.tsx b/src/IconSettingsInputAntennaRoundedFilled.tsx new file mode 100644 index 000000000..0c00ba679 --- /dev/null +++ b/src/IconSettingsInputAntennaRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputAntennaRoundedFilled as default } diff --git a/src/IconSettingsInputAntennaSharpFilled.tsx b/src/IconSettingsInputAntennaSharpFilled.tsx new file mode 100644 index 000000000..d64d04927 --- /dev/null +++ b/src/IconSettingsInputAntennaSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputAntennaSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputAntennaSharpFilled as default } diff --git a/src/IconSettingsInputComponentOutlinedFilled.tsx b/src/IconSettingsInputComponentOutlinedFilled.tsx new file mode 100644 index 000000000..77c5e9ae8 --- /dev/null +++ b/src/IconSettingsInputComponentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputComponentOutlinedFilled as default } diff --git a/src/IconSettingsInputComponentRoundedFilled.tsx b/src/IconSettingsInputComponentRoundedFilled.tsx new file mode 100644 index 000000000..837ab3a27 --- /dev/null +++ b/src/IconSettingsInputComponentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputComponentRoundedFilled as default } diff --git a/src/IconSettingsInputComponentSharpFilled.tsx b/src/IconSettingsInputComponentSharpFilled.tsx new file mode 100644 index 000000000..711f4ace9 --- /dev/null +++ b/src/IconSettingsInputComponentSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputComponentSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputComponentSharpFilled as default } diff --git a/src/IconSettingsInputHdmiOutlinedFilled.tsx b/src/IconSettingsInputHdmiOutlinedFilled.tsx new file mode 100644 index 000000000..d687db50b --- /dev/null +++ b/src/IconSettingsInputHdmiOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputHdmiOutlinedFilled as default } diff --git a/src/IconSettingsInputHdmiRoundedFilled.tsx b/src/IconSettingsInputHdmiRoundedFilled.tsx new file mode 100644 index 000000000..b21124b9d --- /dev/null +++ b/src/IconSettingsInputHdmiRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputHdmiRoundedFilled as default } diff --git a/src/IconSettingsInputHdmiSharpFilled.tsx b/src/IconSettingsInputHdmiSharpFilled.tsx new file mode 100644 index 000000000..46924a6cb --- /dev/null +++ b/src/IconSettingsInputHdmiSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputHdmiSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputHdmiSharpFilled as default } diff --git a/src/IconSettingsInputSvideoOutlinedFilled.tsx b/src/IconSettingsInputSvideoOutlinedFilled.tsx new file mode 100644 index 000000000..5bfbea9b4 --- /dev/null +++ b/src/IconSettingsInputSvideoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputSvideoOutlinedFilled as default } diff --git a/src/IconSettingsInputSvideoRoundedFilled.tsx b/src/IconSettingsInputSvideoRoundedFilled.tsx new file mode 100644 index 000000000..3b208bad9 --- /dev/null +++ b/src/IconSettingsInputSvideoRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputSvideoRoundedFilled as default } diff --git a/src/IconSettingsInputSvideoSharpFilled.tsx b/src/IconSettingsInputSvideoSharpFilled.tsx new file mode 100644 index 000000000..e804c2e82 --- /dev/null +++ b/src/IconSettingsInputSvideoSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsInputSvideoSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsInputSvideoSharpFilled as default } diff --git a/src/IconSettingsMotionModeOutlinedFilled.tsx b/src/IconSettingsMotionModeOutlinedFilled.tsx new file mode 100644 index 000000000..35fbe4e37 --- /dev/null +++ b/src/IconSettingsMotionModeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsMotionModeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsMotionModeOutlinedFilled as default } diff --git a/src/IconSettingsMotionModeRoundedFilled.tsx b/src/IconSettingsMotionModeRoundedFilled.tsx new file mode 100644 index 000000000..74cd1bd04 --- /dev/null +++ b/src/IconSettingsMotionModeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsMotionModeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsMotionModeRoundedFilled as default } diff --git a/src/IconSettingsMotionModeSharpFilled.tsx b/src/IconSettingsMotionModeSharpFilled.tsx new file mode 100644 index 000000000..70a93dc88 --- /dev/null +++ b/src/IconSettingsMotionModeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsMotionModeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsMotionModeSharpFilled as default } diff --git a/src/IconSettingsNightSightOutlinedFilled.tsx b/src/IconSettingsNightSightOutlinedFilled.tsx new file mode 100644 index 000000000..d842133cb --- /dev/null +++ b/src/IconSettingsNightSightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsNightSightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsNightSightOutlinedFilled as default } diff --git a/src/IconSettingsNightSightRoundedFilled.tsx b/src/IconSettingsNightSightRoundedFilled.tsx new file mode 100644 index 000000000..523782af9 --- /dev/null +++ b/src/IconSettingsNightSightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsNightSightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsNightSightRoundedFilled as default } diff --git a/src/IconSettingsNightSightSharpFilled.tsx b/src/IconSettingsNightSightSharpFilled.tsx new file mode 100644 index 000000000..291bf4a7f --- /dev/null +++ b/src/IconSettingsNightSightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsNightSightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsNightSightSharpFilled as default } diff --git a/src/IconSettingsOutlinedFilled.tsx b/src/IconSettingsOutlinedFilled.tsx new file mode 100644 index 000000000..0186ab05f --- /dev/null +++ b/src/IconSettingsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsOutlinedFilled as default } diff --git a/src/IconSettingsOverscanOutlinedFilled.tsx b/src/IconSettingsOverscanOutlinedFilled.tsx new file mode 100644 index 000000000..1968daf36 --- /dev/null +++ b/src/IconSettingsOverscanOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsOverscanOutlinedFilled as default } diff --git a/src/IconSettingsOverscanRoundedFilled.tsx b/src/IconSettingsOverscanRoundedFilled.tsx new file mode 100644 index 000000000..1dd7ebfdc --- /dev/null +++ b/src/IconSettingsOverscanRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsOverscanRoundedFilled as default } diff --git a/src/IconSettingsOverscanSharpFilled.tsx b/src/IconSettingsOverscanSharpFilled.tsx new file mode 100644 index 000000000..61b704d34 --- /dev/null +++ b/src/IconSettingsOverscanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsOverscanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsOverscanSharpFilled as default } diff --git a/src/IconSettingsPanoramaOutlinedFilled.tsx b/src/IconSettingsPanoramaOutlinedFilled.tsx new file mode 100644 index 000000000..9692b00a3 --- /dev/null +++ b/src/IconSettingsPanoramaOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPanoramaOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPanoramaOutlinedFilled as default } diff --git a/src/IconSettingsPanoramaRoundedFilled.tsx b/src/IconSettingsPanoramaRoundedFilled.tsx new file mode 100644 index 000000000..05ed7509a --- /dev/null +++ b/src/IconSettingsPanoramaRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPanoramaRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPanoramaRoundedFilled as default } diff --git a/src/IconSettingsPanoramaSharpFilled.tsx b/src/IconSettingsPanoramaSharpFilled.tsx new file mode 100644 index 000000000..db9591864 --- /dev/null +++ b/src/IconSettingsPanoramaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPanoramaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPanoramaSharpFilled as default } diff --git a/src/IconSettingsPhoneOutlinedFilled.tsx b/src/IconSettingsPhoneOutlinedFilled.tsx new file mode 100644 index 000000000..b39b92822 --- /dev/null +++ b/src/IconSettingsPhoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPhoneOutlinedFilled as default } diff --git a/src/IconSettingsPhoneRoundedFilled.tsx b/src/IconSettingsPhoneRoundedFilled.tsx new file mode 100644 index 000000000..ba8cf4249 --- /dev/null +++ b/src/IconSettingsPhoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPhoneRoundedFilled as default } diff --git a/src/IconSettingsPhoneSharpFilled.tsx b/src/IconSettingsPhoneSharpFilled.tsx new file mode 100644 index 000000000..80f98bfc8 --- /dev/null +++ b/src/IconSettingsPhoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPhoneSharpFilled as default } diff --git a/src/IconSettingsPhotoCameraOutlinedFilled.tsx b/src/IconSettingsPhotoCameraOutlinedFilled.tsx new file mode 100644 index 000000000..9ad7fc322 --- /dev/null +++ b/src/IconSettingsPhotoCameraOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhotoCameraOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPhotoCameraOutlinedFilled as default } diff --git a/src/IconSettingsPhotoCameraRoundedFilled.tsx b/src/IconSettingsPhotoCameraRoundedFilled.tsx new file mode 100644 index 000000000..74dd5ef84 --- /dev/null +++ b/src/IconSettingsPhotoCameraRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhotoCameraRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPhotoCameraRoundedFilled as default } diff --git a/src/IconSettingsPhotoCameraSharpFilled.tsx b/src/IconSettingsPhotoCameraSharpFilled.tsx new file mode 100644 index 000000000..c3ad64208 --- /dev/null +++ b/src/IconSettingsPhotoCameraSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPhotoCameraSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPhotoCameraSharpFilled as default } diff --git a/src/IconSettingsPowerOutlinedFilled.tsx b/src/IconSettingsPowerOutlinedFilled.tsx new file mode 100644 index 000000000..fd4c1f031 --- /dev/null +++ b/src/IconSettingsPowerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPowerOutlinedFilled as default } diff --git a/src/IconSettingsPowerRoundedFilled.tsx b/src/IconSettingsPowerRoundedFilled.tsx new file mode 100644 index 000000000..efa9a6e42 --- /dev/null +++ b/src/IconSettingsPowerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPowerRoundedFilled as default } diff --git a/src/IconSettingsPowerSharpFilled.tsx b/src/IconSettingsPowerSharpFilled.tsx new file mode 100644 index 000000000..2aae74fc9 --- /dev/null +++ b/src/IconSettingsPowerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsPowerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsPowerSharpFilled as default } diff --git a/src/IconSettingsRemoteOutlinedFilled.tsx b/src/IconSettingsRemoteOutlinedFilled.tsx new file mode 100644 index 000000000..3c745f112 --- /dev/null +++ b/src/IconSettingsRemoteOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsRemoteOutlinedFilled as default } diff --git a/src/IconSettingsRemoteRoundedFilled.tsx b/src/IconSettingsRemoteRoundedFilled.tsx new file mode 100644 index 000000000..e72fb86d3 --- /dev/null +++ b/src/IconSettingsRemoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsRemoteRoundedFilled as default } diff --git a/src/IconSettingsRemoteSharpFilled.tsx b/src/IconSettingsRemoteSharpFilled.tsx new file mode 100644 index 000000000..8faef1c44 --- /dev/null +++ b/src/IconSettingsRemoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRemoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsRemoteSharpFilled as default } diff --git a/src/IconSettingsRoundedFilled.tsx b/src/IconSettingsRoundedFilled.tsx new file mode 100644 index 000000000..f582b5293 --- /dev/null +++ b/src/IconSettingsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsRoundedFilled as default } diff --git a/src/IconSettingsSharpFilled.tsx b/src/IconSettingsSharpFilled.tsx new file mode 100644 index 000000000..e4ec0daaf --- /dev/null +++ b/src/IconSettingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSharpFilled as default } diff --git a/src/IconSettingsSlowMotionOutlinedFilled.tsx b/src/IconSettingsSlowMotionOutlinedFilled.tsx new file mode 100644 index 000000000..11fbad5aa --- /dev/null +++ b/src/IconSettingsSlowMotionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSlowMotionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSlowMotionOutlinedFilled as default } diff --git a/src/IconSettingsSlowMotionRoundedFilled.tsx b/src/IconSettingsSlowMotionRoundedFilled.tsx new file mode 100644 index 000000000..d3878eaec --- /dev/null +++ b/src/IconSettingsSlowMotionRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSlowMotionRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSlowMotionRoundedFilled as default } diff --git a/src/IconSettingsSlowMotionSharpFilled.tsx b/src/IconSettingsSlowMotionSharpFilled.tsx new file mode 100644 index 000000000..36a3061f5 --- /dev/null +++ b/src/IconSettingsSlowMotionSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSlowMotionSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSlowMotionSharpFilled as default } diff --git a/src/IconSettingsSystemDaydreamOutlinedFilled.tsx b/src/IconSettingsSystemDaydreamOutlinedFilled.tsx new file mode 100644 index 000000000..dc3caca35 --- /dev/null +++ b/src/IconSettingsSystemDaydreamOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSystemDaydreamOutlinedFilled as default } diff --git a/src/IconSettingsSystemDaydreamRoundedFilled.tsx b/src/IconSettingsSystemDaydreamRoundedFilled.tsx new file mode 100644 index 000000000..1fb9311ef --- /dev/null +++ b/src/IconSettingsSystemDaydreamRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSystemDaydreamRoundedFilled as default } diff --git a/src/IconSettingsSystemDaydreamSharpFilled.tsx b/src/IconSettingsSystemDaydreamSharpFilled.tsx new file mode 100644 index 000000000..9f0f00fe6 --- /dev/null +++ b/src/IconSettingsSystemDaydreamSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsSystemDaydreamSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsSystemDaydreamSharpFilled as default } diff --git a/src/IconSettingsTimelapseOutlinedFilled.tsx b/src/IconSettingsTimelapseOutlinedFilled.tsx new file mode 100644 index 000000000..e46d519e7 --- /dev/null +++ b/src/IconSettingsTimelapseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsTimelapseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsTimelapseOutlinedFilled as default } diff --git a/src/IconSettingsTimelapseRoundedFilled.tsx b/src/IconSettingsTimelapseRoundedFilled.tsx new file mode 100644 index 000000000..84eec7cc6 --- /dev/null +++ b/src/IconSettingsTimelapseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsTimelapseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsTimelapseRoundedFilled as default } diff --git a/src/IconSettingsTimelapseSharpFilled.tsx b/src/IconSettingsTimelapseSharpFilled.tsx new file mode 100644 index 000000000..f99bab870 --- /dev/null +++ b/src/IconSettingsTimelapseSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsTimelapseSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsTimelapseSharpFilled as default } diff --git a/src/IconSettingsVideoCameraOutlinedFilled.tsx b/src/IconSettingsVideoCameraOutlinedFilled.tsx new file mode 100644 index 000000000..c564f8048 --- /dev/null +++ b/src/IconSettingsVideoCameraOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVideoCameraOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsVideoCameraOutlinedFilled as default } diff --git a/src/IconSettingsVideoCameraRoundedFilled.tsx b/src/IconSettingsVideoCameraRoundedFilled.tsx new file mode 100644 index 000000000..5bae946f7 --- /dev/null +++ b/src/IconSettingsVideoCameraRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVideoCameraRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsVideoCameraRoundedFilled as default } diff --git a/src/IconSettingsVideoCameraSharpFilled.tsx b/src/IconSettingsVideoCameraSharpFilled.tsx new file mode 100644 index 000000000..f16700671 --- /dev/null +++ b/src/IconSettingsVideoCameraSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVideoCameraSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsVideoCameraSharpFilled as default } diff --git a/src/IconSettingsVoiceOutlinedFilled.tsx b/src/IconSettingsVoiceOutlinedFilled.tsx new file mode 100644 index 000000000..84cee7d60 --- /dev/null +++ b/src/IconSettingsVoiceOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsVoiceOutlinedFilled as default } diff --git a/src/IconSettingsVoiceRoundedFilled.tsx b/src/IconSettingsVoiceRoundedFilled.tsx new file mode 100644 index 000000000..cb4beae9a --- /dev/null +++ b/src/IconSettingsVoiceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsVoiceRoundedFilled as default } diff --git a/src/IconSettingsVoiceSharpFilled.tsx b/src/IconSettingsVoiceSharpFilled.tsx new file mode 100644 index 000000000..42c11b69e --- /dev/null +++ b/src/IconSettingsVoiceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettingsVoiceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettingsVoiceSharpFilled as default } diff --git a/src/IconSettopComponentOutlinedFilled.tsx b/src/IconSettopComponentOutlinedFilled.tsx new file mode 100644 index 000000000..5ee2d2caf --- /dev/null +++ b/src/IconSettopComponentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettopComponentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettopComponentOutlinedFilled as default } diff --git a/src/IconSettopComponentRoundedFilled.tsx b/src/IconSettopComponentRoundedFilled.tsx new file mode 100644 index 000000000..e317c155d --- /dev/null +++ b/src/IconSettopComponentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettopComponentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSettopComponentRoundedFilled as default } diff --git a/src/IconSettopComponentSharpFilled.tsx b/src/IconSettopComponentSharpFilled.tsx new file mode 100644 index 000000000..2986f6991 --- /dev/null +++ b/src/IconSettopComponentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSettopComponentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSettopComponentSharpFilled as default } diff --git a/src/IconSevereColdOutlinedFilled.tsx b/src/IconSevereColdOutlinedFilled.tsx new file mode 100644 index 000000000..85244d17d --- /dev/null +++ b/src/IconSevereColdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSevereColdOutlinedFilled as default } diff --git a/src/IconSevereColdRoundedFilled.tsx b/src/IconSevereColdRoundedFilled.tsx new file mode 100644 index 000000000..4b2f4914c --- /dev/null +++ b/src/IconSevereColdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSevereColdRoundedFilled as default } diff --git a/src/IconSevereColdSharpFilled.tsx b/src/IconSevereColdSharpFilled.tsx new file mode 100644 index 000000000..46ec50b7f --- /dev/null +++ b/src/IconSevereColdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSevereColdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSevereColdSharpFilled as default } diff --git a/src/IconShadowAddOutlinedFilled.tsx b/src/IconShadowAddOutlinedFilled.tsx new file mode 100644 index 000000000..868dfe271 --- /dev/null +++ b/src/IconShadowAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowAddOutlinedFilled as default } diff --git a/src/IconShadowAddRoundedFilled.tsx b/src/IconShadowAddRoundedFilled.tsx new file mode 100644 index 000000000..676a40aab --- /dev/null +++ b/src/IconShadowAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowAddRoundedFilled as default } diff --git a/src/IconShadowAddSharpFilled.tsx b/src/IconShadowAddSharpFilled.tsx new file mode 100644 index 000000000..c5ffab9f1 --- /dev/null +++ b/src/IconShadowAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowAddSharpFilled as default } diff --git a/src/IconShadowMinusOutlinedFilled.tsx b/src/IconShadowMinusOutlinedFilled.tsx new file mode 100644 index 000000000..42774bd8c --- /dev/null +++ b/src/IconShadowMinusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowMinusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowMinusOutlinedFilled as default } diff --git a/src/IconShadowMinusRoundedFilled.tsx b/src/IconShadowMinusRoundedFilled.tsx new file mode 100644 index 000000000..93e1f1689 --- /dev/null +++ b/src/IconShadowMinusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowMinusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowMinusRoundedFilled as default } diff --git a/src/IconShadowMinusSharpFilled.tsx b/src/IconShadowMinusSharpFilled.tsx new file mode 100644 index 000000000..37b7055c0 --- /dev/null +++ b/src/IconShadowMinusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowMinusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowMinusSharpFilled as default } diff --git a/src/IconShadowOutlinedFilled.tsx b/src/IconShadowOutlinedFilled.tsx new file mode 100644 index 000000000..329c6b94d --- /dev/null +++ b/src/IconShadowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowOutlinedFilled as default } diff --git a/src/IconShadowRoundedFilled.tsx b/src/IconShadowRoundedFilled.tsx new file mode 100644 index 000000000..c75609f9b --- /dev/null +++ b/src/IconShadowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowRoundedFilled as default } diff --git a/src/IconShadowSharpFilled.tsx b/src/IconShadowSharpFilled.tsx new file mode 100644 index 000000000..55bb05f63 --- /dev/null +++ b/src/IconShadowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShadowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShadowSharpFilled as default } diff --git a/src/IconShapeLineOutlinedFilled.tsx b/src/IconShapeLineOutlinedFilled.tsx new file mode 100644 index 000000000..268061bbe --- /dev/null +++ b/src/IconShapeLineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShapeLineOutlinedFilled as default } diff --git a/src/IconShapeLineRoundedFilled.tsx b/src/IconShapeLineRoundedFilled.tsx new file mode 100644 index 000000000..b130ce194 --- /dev/null +++ b/src/IconShapeLineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShapeLineRoundedFilled as default } diff --git a/src/IconShapeLineSharpFilled.tsx b/src/IconShapeLineSharpFilled.tsx new file mode 100644 index 000000000..765f6188d --- /dev/null +++ b/src/IconShapeLineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapeLineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShapeLineSharpFilled as default } diff --git a/src/IconShapesOutlinedFilled.tsx b/src/IconShapesOutlinedFilled.tsx new file mode 100644 index 000000000..bc46ec07d --- /dev/null +++ b/src/IconShapesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShapesOutlinedFilled as default } diff --git a/src/IconShapesRoundedFilled.tsx b/src/IconShapesRoundedFilled.tsx new file mode 100644 index 000000000..df343a447 --- /dev/null +++ b/src/IconShapesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShapesRoundedFilled as default } diff --git a/src/IconShapesSharpFilled.tsx b/src/IconShapesSharpFilled.tsx new file mode 100644 index 000000000..911ccf5c2 --- /dev/null +++ b/src/IconShapesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShapesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShapesSharpFilled as default } diff --git a/src/IconShareLocationOutlinedFilled.tsx b/src/IconShareLocationOutlinedFilled.tsx new file mode 100644 index 000000000..62b1d3938 --- /dev/null +++ b/src/IconShareLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareLocationOutlinedFilled as default } diff --git a/src/IconShareLocationRoundedFilled.tsx b/src/IconShareLocationRoundedFilled.tsx new file mode 100644 index 000000000..360b679ff --- /dev/null +++ b/src/IconShareLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareLocationRoundedFilled as default } diff --git a/src/IconShareLocationSharpFilled.tsx b/src/IconShareLocationSharpFilled.tsx new file mode 100644 index 000000000..88e0bab8e --- /dev/null +++ b/src/IconShareLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareLocationSharpFilled as default } diff --git a/src/IconShareOffOutlinedFilled.tsx b/src/IconShareOffOutlinedFilled.tsx new file mode 100644 index 000000000..19e7bf0ca --- /dev/null +++ b/src/IconShareOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareOffOutlinedFilled as default } diff --git a/src/IconShareOffRoundedFilled.tsx b/src/IconShareOffRoundedFilled.tsx new file mode 100644 index 000000000..9680e337d --- /dev/null +++ b/src/IconShareOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareOffRoundedFilled as default } diff --git a/src/IconShareOffSharpFilled.tsx b/src/IconShareOffSharpFilled.tsx new file mode 100644 index 000000000..d6de67586 --- /dev/null +++ b/src/IconShareOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareOffSharpFilled as default } diff --git a/src/IconShareOutlinedFilled.tsx b/src/IconShareOutlinedFilled.tsx new file mode 100644 index 000000000..42013ed56 --- /dev/null +++ b/src/IconShareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareOutlinedFilled as default } diff --git a/src/IconShareReviewsOutlinedFilled.tsx b/src/IconShareReviewsOutlinedFilled.tsx new file mode 100644 index 000000000..5cd042518 --- /dev/null +++ b/src/IconShareReviewsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareReviewsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareReviewsOutlinedFilled as default } diff --git a/src/IconShareReviewsRoundedFilled.tsx b/src/IconShareReviewsRoundedFilled.tsx new file mode 100644 index 000000000..ace97ea09 --- /dev/null +++ b/src/IconShareReviewsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareReviewsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareReviewsRoundedFilled as default } diff --git a/src/IconShareReviewsSharpFilled.tsx b/src/IconShareReviewsSharpFilled.tsx new file mode 100644 index 000000000..f678d28cb --- /dev/null +++ b/src/IconShareReviewsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareReviewsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareReviewsSharpFilled as default } diff --git a/src/IconShareRoundedFilled.tsx b/src/IconShareRoundedFilled.tsx new file mode 100644 index 000000000..a122dacb8 --- /dev/null +++ b/src/IconShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareRoundedFilled as default } diff --git a/src/IconShareSharpFilled.tsx b/src/IconShareSharpFilled.tsx new file mode 100644 index 000000000..3ae7674b1 --- /dev/null +++ b/src/IconShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareSharpFilled as default } diff --git a/src/IconShareWindowsOutlinedFilled.tsx b/src/IconShareWindowsOutlinedFilled.tsx new file mode 100644 index 000000000..11989e89d --- /dev/null +++ b/src/IconShareWindowsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareWindowsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareWindowsOutlinedFilled as default } diff --git a/src/IconShareWindowsRoundedFilled.tsx b/src/IconShareWindowsRoundedFilled.tsx new file mode 100644 index 000000000..b9c4e10c7 --- /dev/null +++ b/src/IconShareWindowsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareWindowsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareWindowsRoundedFilled as default } diff --git a/src/IconShareWindowsSharpFilled.tsx b/src/IconShareWindowsSharpFilled.tsx new file mode 100644 index 000000000..aa2c6a63a --- /dev/null +++ b/src/IconShareWindowsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShareWindowsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShareWindowsSharpFilled as default } diff --git a/src/IconSheetsRtlOutlinedFilled.tsx b/src/IconSheetsRtlOutlinedFilled.tsx new file mode 100644 index 000000000..4d75e36de --- /dev/null +++ b/src/IconSheetsRtlOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSheetsRtlOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSheetsRtlOutlinedFilled as default } diff --git a/src/IconSheetsRtlRoundedFilled.tsx b/src/IconSheetsRtlRoundedFilled.tsx new file mode 100644 index 000000000..55c8d5d8e --- /dev/null +++ b/src/IconSheetsRtlRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSheetsRtlRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSheetsRtlRoundedFilled as default } diff --git a/src/IconSheetsRtlSharpFilled.tsx b/src/IconSheetsRtlSharpFilled.tsx new file mode 100644 index 000000000..78399d472 --- /dev/null +++ b/src/IconSheetsRtlSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSheetsRtlSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSheetsRtlSharpFilled as default } diff --git a/src/IconShelfAutoHideOutlinedFilled.tsx b/src/IconShelfAutoHideOutlinedFilled.tsx new file mode 100644 index 000000000..3ad1100e1 --- /dev/null +++ b/src/IconShelfAutoHideOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelfAutoHideOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelfAutoHideOutlinedFilled as default } diff --git a/src/IconShelfAutoHideRoundedFilled.tsx b/src/IconShelfAutoHideRoundedFilled.tsx new file mode 100644 index 000000000..fcdb9455e --- /dev/null +++ b/src/IconShelfAutoHideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelfAutoHideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelfAutoHideRoundedFilled as default } diff --git a/src/IconShelfAutoHideSharpFilled.tsx b/src/IconShelfAutoHideSharpFilled.tsx new file mode 100644 index 000000000..b0a798938 --- /dev/null +++ b/src/IconShelfAutoHideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelfAutoHideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelfAutoHideSharpFilled as default } diff --git a/src/IconShelfPositionOutlinedFilled.tsx b/src/IconShelfPositionOutlinedFilled.tsx new file mode 100644 index 000000000..1bea5dbd2 --- /dev/null +++ b/src/IconShelfPositionOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelfPositionOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelfPositionOutlinedFilled as default } diff --git a/src/IconShelfPositionRoundedFilled.tsx b/src/IconShelfPositionRoundedFilled.tsx new file mode 100644 index 000000000..5bf86c78c --- /dev/null +++ b/src/IconShelfPositionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelfPositionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelfPositionRoundedFilled as default } diff --git a/src/IconShelfPositionSharpFilled.tsx b/src/IconShelfPositionSharpFilled.tsx new file mode 100644 index 000000000..aa802e35e --- /dev/null +++ b/src/IconShelfPositionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelfPositionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelfPositionSharpFilled as default } diff --git a/src/IconShelvesOutlinedFilled.tsx b/src/IconShelvesOutlinedFilled.tsx new file mode 100644 index 000000000..bb12f9e8f --- /dev/null +++ b/src/IconShelvesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelvesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelvesOutlinedFilled as default } diff --git a/src/IconShelvesRoundedFilled.tsx b/src/IconShelvesRoundedFilled.tsx new file mode 100644 index 000000000..b4ea0e3c8 --- /dev/null +++ b/src/IconShelvesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelvesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelvesRoundedFilled as default } diff --git a/src/IconShelvesSharpFilled.tsx b/src/IconShelvesSharpFilled.tsx new file mode 100644 index 000000000..98548d0de --- /dev/null +++ b/src/IconShelvesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShelvesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShelvesSharpFilled as default } diff --git a/src/IconShieldLockOutlinedFilled.tsx b/src/IconShieldLockOutlinedFilled.tsx new file mode 100644 index 000000000..c8e4d1c13 --- /dev/null +++ b/src/IconShieldLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldLockOutlinedFilled as default } diff --git a/src/IconShieldLockRoundedFilled.tsx b/src/IconShieldLockRoundedFilled.tsx new file mode 100644 index 000000000..2858149d5 --- /dev/null +++ b/src/IconShieldLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldLockRoundedFilled as default } diff --git a/src/IconShieldLockSharpFilled.tsx b/src/IconShieldLockSharpFilled.tsx new file mode 100644 index 000000000..d3e46e4c9 --- /dev/null +++ b/src/IconShieldLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldLockSharpFilled as default } diff --git a/src/IconShieldLockedOutlinedFilled.tsx b/src/IconShieldLockedOutlinedFilled.tsx new file mode 100644 index 000000000..da5212714 --- /dev/null +++ b/src/IconShieldLockedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldLockedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldLockedOutlinedFilled as default } diff --git a/src/IconShieldLockedRoundedFilled.tsx b/src/IconShieldLockedRoundedFilled.tsx new file mode 100644 index 000000000..2b62f11cb --- /dev/null +++ b/src/IconShieldLockedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldLockedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldLockedRoundedFilled as default } diff --git a/src/IconShieldLockedSharpFilled.tsx b/src/IconShieldLockedSharpFilled.tsx new file mode 100644 index 000000000..b97c0e502 --- /dev/null +++ b/src/IconShieldLockedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldLockedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldLockedSharpFilled as default } diff --git a/src/IconShieldMoonOutlinedFilled.tsx b/src/IconShieldMoonOutlinedFilled.tsx new file mode 100644 index 000000000..536d24dd3 --- /dev/null +++ b/src/IconShieldMoonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldMoonOutlinedFilled as default } diff --git a/src/IconShieldMoonRoundedFilled.tsx b/src/IconShieldMoonRoundedFilled.tsx new file mode 100644 index 000000000..5cd6c3657 --- /dev/null +++ b/src/IconShieldMoonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldMoonRoundedFilled as default } diff --git a/src/IconShieldMoonSharpFilled.tsx b/src/IconShieldMoonSharpFilled.tsx new file mode 100644 index 000000000..eaa2be9ca --- /dev/null +++ b/src/IconShieldMoonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldMoonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldMoonSharpFilled as default } diff --git a/src/IconShieldOutlinedFilled.tsx b/src/IconShieldOutlinedFilled.tsx new file mode 100644 index 000000000..cca063af4 --- /dev/null +++ b/src/IconShieldOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldOutlinedFilled as default } diff --git a/src/IconShieldPersonOutlinedFilled.tsx b/src/IconShieldPersonOutlinedFilled.tsx new file mode 100644 index 000000000..f75a22600 --- /dev/null +++ b/src/IconShieldPersonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldPersonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldPersonOutlinedFilled as default } diff --git a/src/IconShieldPersonRoundedFilled.tsx b/src/IconShieldPersonRoundedFilled.tsx new file mode 100644 index 000000000..8cde20cbd --- /dev/null +++ b/src/IconShieldPersonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldPersonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldPersonRoundedFilled as default } diff --git a/src/IconShieldPersonSharpFilled.tsx b/src/IconShieldPersonSharpFilled.tsx new file mode 100644 index 000000000..7bfa2cfef --- /dev/null +++ b/src/IconShieldPersonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldPersonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldPersonSharpFilled as default } diff --git a/src/IconShieldQuestionOutlinedFilled.tsx b/src/IconShieldQuestionOutlinedFilled.tsx new file mode 100644 index 000000000..2941d77db --- /dev/null +++ b/src/IconShieldQuestionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldQuestionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldQuestionOutlinedFilled as default } diff --git a/src/IconShieldQuestionRoundedFilled.tsx b/src/IconShieldQuestionRoundedFilled.tsx new file mode 100644 index 000000000..93a504d75 --- /dev/null +++ b/src/IconShieldQuestionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldQuestionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldQuestionRoundedFilled as default } diff --git a/src/IconShieldQuestionSharpFilled.tsx b/src/IconShieldQuestionSharpFilled.tsx new file mode 100644 index 000000000..531ce162b --- /dev/null +++ b/src/IconShieldQuestionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldQuestionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldQuestionSharpFilled as default } diff --git a/src/IconShieldRoundedFilled.tsx b/src/IconShieldRoundedFilled.tsx new file mode 100644 index 000000000..098ab56e6 --- /dev/null +++ b/src/IconShieldRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldRoundedFilled as default } diff --git a/src/IconShieldSharpFilled.tsx b/src/IconShieldSharpFilled.tsx new file mode 100644 index 000000000..9d3e823c8 --- /dev/null +++ b/src/IconShieldSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldSharpFilled as default } diff --git a/src/IconShieldWithHeartOutlinedFilled.tsx b/src/IconShieldWithHeartOutlinedFilled.tsx new file mode 100644 index 000000000..be5f66814 --- /dev/null +++ b/src/IconShieldWithHeartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldWithHeartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldWithHeartOutlinedFilled as default } diff --git a/src/IconShieldWithHeartRoundedFilled.tsx b/src/IconShieldWithHeartRoundedFilled.tsx new file mode 100644 index 000000000..26ea740c2 --- /dev/null +++ b/src/IconShieldWithHeartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldWithHeartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldWithHeartRoundedFilled as default } diff --git a/src/IconShieldWithHeartSharpFilled.tsx b/src/IconShieldWithHeartSharpFilled.tsx new file mode 100644 index 000000000..429389b26 --- /dev/null +++ b/src/IconShieldWithHeartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldWithHeartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldWithHeartSharpFilled as default } diff --git a/src/IconShieldWithHouseOutlinedFilled.tsx b/src/IconShieldWithHouseOutlinedFilled.tsx new file mode 100644 index 000000000..3dcdd8bea --- /dev/null +++ b/src/IconShieldWithHouseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldWithHouseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldWithHouseOutlinedFilled as default } diff --git a/src/IconShieldWithHouseRoundedFilled.tsx b/src/IconShieldWithHouseRoundedFilled.tsx new file mode 100644 index 000000000..eec9c0f68 --- /dev/null +++ b/src/IconShieldWithHouseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldWithHouseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldWithHouseRoundedFilled as default } diff --git a/src/IconShieldWithHouseSharpFilled.tsx b/src/IconShieldWithHouseSharpFilled.tsx new file mode 100644 index 000000000..ef8859dba --- /dev/null +++ b/src/IconShieldWithHouseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShieldWithHouseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShieldWithHouseSharpFilled as default } diff --git a/src/IconShiftLockOffOutlinedFilled.tsx b/src/IconShiftLockOffOutlinedFilled.tsx new file mode 100644 index 000000000..444650fd1 --- /dev/null +++ b/src/IconShiftLockOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftLockOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftLockOffOutlinedFilled as default } diff --git a/src/IconShiftLockOffRoundedFilled.tsx b/src/IconShiftLockOffRoundedFilled.tsx new file mode 100644 index 000000000..b4469d649 --- /dev/null +++ b/src/IconShiftLockOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftLockOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftLockOffRoundedFilled as default } diff --git a/src/IconShiftLockOffSharpFilled.tsx b/src/IconShiftLockOffSharpFilled.tsx new file mode 100644 index 000000000..163352b8b --- /dev/null +++ b/src/IconShiftLockOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftLockOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftLockOffSharpFilled as default } diff --git a/src/IconShiftLockOutlinedFilled.tsx b/src/IconShiftLockOutlinedFilled.tsx new file mode 100644 index 000000000..5f063682d --- /dev/null +++ b/src/IconShiftLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftLockOutlinedFilled as default } diff --git a/src/IconShiftLockRoundedFilled.tsx b/src/IconShiftLockRoundedFilled.tsx new file mode 100644 index 000000000..8a3b2f1b4 --- /dev/null +++ b/src/IconShiftLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftLockRoundedFilled as default } diff --git a/src/IconShiftLockSharpFilled.tsx b/src/IconShiftLockSharpFilled.tsx new file mode 100644 index 000000000..e0272e419 --- /dev/null +++ b/src/IconShiftLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftLockSharpFilled as default } diff --git a/src/IconShiftOutlinedFilled.tsx b/src/IconShiftOutlinedFilled.tsx new file mode 100644 index 000000000..ada39d24c --- /dev/null +++ b/src/IconShiftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftOutlinedFilled as default } diff --git a/src/IconShiftRoundedFilled.tsx b/src/IconShiftRoundedFilled.tsx new file mode 100644 index 000000000..f93861fee --- /dev/null +++ b/src/IconShiftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftRoundedFilled as default } diff --git a/src/IconShiftSharpFilled.tsx b/src/IconShiftSharpFilled.tsx new file mode 100644 index 000000000..c81005af6 --- /dev/null +++ b/src/IconShiftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShiftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShiftSharpFilled as default } diff --git a/src/IconShopOutlinedFilled.tsx b/src/IconShopOutlinedFilled.tsx new file mode 100644 index 000000000..2a7b56ebb --- /dev/null +++ b/src/IconShopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShopOutlinedFilled as default } diff --git a/src/IconShopRoundedFilled.tsx b/src/IconShopRoundedFilled.tsx new file mode 100644 index 000000000..1a48384d2 --- /dev/null +++ b/src/IconShopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShopRoundedFilled as default } diff --git a/src/IconShopSharpFilled.tsx b/src/IconShopSharpFilled.tsx new file mode 100644 index 000000000..cca1e63d8 --- /dev/null +++ b/src/IconShopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShopSharpFilled as default } diff --git a/src/IconShopTwoOutlinedFilled.tsx b/src/IconShopTwoOutlinedFilled.tsx new file mode 100644 index 000000000..d75bbf8dc --- /dev/null +++ b/src/IconShopTwoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShopTwoOutlinedFilled as default } diff --git a/src/IconShopTwoRoundedFilled.tsx b/src/IconShopTwoRoundedFilled.tsx new file mode 100644 index 000000000..98e4aced3 --- /dev/null +++ b/src/IconShopTwoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShopTwoRoundedFilled as default } diff --git a/src/IconShopTwoSharpFilled.tsx b/src/IconShopTwoSharpFilled.tsx new file mode 100644 index 000000000..d58dcc493 --- /dev/null +++ b/src/IconShopTwoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShopTwoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShopTwoSharpFilled as default } diff --git a/src/IconShoppingBagOutlinedFilled.tsx b/src/IconShoppingBagOutlinedFilled.tsx new file mode 100644 index 000000000..1c39f891e --- /dev/null +++ b/src/IconShoppingBagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingBagOutlinedFilled as default } diff --git a/src/IconShoppingBagRoundedFilled.tsx b/src/IconShoppingBagRoundedFilled.tsx new file mode 100644 index 000000000..765183898 --- /dev/null +++ b/src/IconShoppingBagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingBagRoundedFilled as default } diff --git a/src/IconShoppingBagSharpFilled.tsx b/src/IconShoppingBagSharpFilled.tsx new file mode 100644 index 000000000..9aaec7e8f --- /dev/null +++ b/src/IconShoppingBagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingBagSharpFilled as default } diff --git a/src/IconShoppingBasketOutlinedFilled.tsx b/src/IconShoppingBasketOutlinedFilled.tsx new file mode 100644 index 000000000..cd926f373 --- /dev/null +++ b/src/IconShoppingBasketOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingBasketOutlinedFilled as default } diff --git a/src/IconShoppingBasketRoundedFilled.tsx b/src/IconShoppingBasketRoundedFilled.tsx new file mode 100644 index 000000000..4029f0812 --- /dev/null +++ b/src/IconShoppingBasketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingBasketRoundedFilled as default } diff --git a/src/IconShoppingBasketSharpFilled.tsx b/src/IconShoppingBasketSharpFilled.tsx new file mode 100644 index 000000000..aef1c6b93 --- /dev/null +++ b/src/IconShoppingBasketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingBasketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingBasketSharpFilled as default } diff --git a/src/IconShoppingCartCheckoutOutlinedFilled.tsx b/src/IconShoppingCartCheckoutOutlinedFilled.tsx new file mode 100644 index 000000000..965bb63e2 --- /dev/null +++ b/src/IconShoppingCartCheckoutOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartCheckoutOutlinedFilled as default } diff --git a/src/IconShoppingCartCheckoutRoundedFilled.tsx b/src/IconShoppingCartCheckoutRoundedFilled.tsx new file mode 100644 index 000000000..4f67659b2 --- /dev/null +++ b/src/IconShoppingCartCheckoutRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartCheckoutRoundedFilled as default } diff --git a/src/IconShoppingCartCheckoutSharpFilled.tsx b/src/IconShoppingCartCheckoutSharpFilled.tsx new file mode 100644 index 000000000..f5d907b92 --- /dev/null +++ b/src/IconShoppingCartCheckoutSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartCheckoutSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartCheckoutSharpFilled as default } diff --git a/src/IconShoppingCartOffOutlinedFilled.tsx b/src/IconShoppingCartOffOutlinedFilled.tsx new file mode 100644 index 000000000..9ec1be02c --- /dev/null +++ b/src/IconShoppingCartOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartOffOutlinedFilled as default } diff --git a/src/IconShoppingCartOffRoundedFilled.tsx b/src/IconShoppingCartOffRoundedFilled.tsx new file mode 100644 index 000000000..bb822931c --- /dev/null +++ b/src/IconShoppingCartOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartOffRoundedFilled as default } diff --git a/src/IconShoppingCartOffSharpFilled.tsx b/src/IconShoppingCartOffSharpFilled.tsx new file mode 100644 index 000000000..dab249bf0 --- /dev/null +++ b/src/IconShoppingCartOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartOffSharpFilled as default } diff --git a/src/IconShoppingCartOutlinedFilled.tsx b/src/IconShoppingCartOutlinedFilled.tsx new file mode 100644 index 000000000..73d36d8b7 --- /dev/null +++ b/src/IconShoppingCartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartOutlinedFilled as default } diff --git a/src/IconShoppingCartRoundedFilled.tsx b/src/IconShoppingCartRoundedFilled.tsx new file mode 100644 index 000000000..0b8e8093c --- /dev/null +++ b/src/IconShoppingCartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartRoundedFilled as default } diff --git a/src/IconShoppingCartSharpFilled.tsx b/src/IconShoppingCartSharpFilled.tsx new file mode 100644 index 000000000..2dd0696eb --- /dev/null +++ b/src/IconShoppingCartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingCartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingCartSharpFilled as default } diff --git a/src/IconShoppingmodeOutlinedFilled.tsx b/src/IconShoppingmodeOutlinedFilled.tsx new file mode 100644 index 000000000..1d6efe608 --- /dev/null +++ b/src/IconShoppingmodeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingmodeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingmodeOutlinedFilled as default } diff --git a/src/IconShoppingmodeRoundedFilled.tsx b/src/IconShoppingmodeRoundedFilled.tsx new file mode 100644 index 000000000..476507f73 --- /dev/null +++ b/src/IconShoppingmodeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingmodeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingmodeRoundedFilled as default } diff --git a/src/IconShoppingmodeSharpFilled.tsx b/src/IconShoppingmodeSharpFilled.tsx new file mode 100644 index 000000000..fa0274dd1 --- /dev/null +++ b/src/IconShoppingmodeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShoppingmodeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShoppingmodeSharpFilled as default } diff --git a/src/IconShortStayOutlinedFilled.tsx b/src/IconShortStayOutlinedFilled.tsx new file mode 100644 index 000000000..16c911fa1 --- /dev/null +++ b/src/IconShortStayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortStayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortStayOutlinedFilled as default } diff --git a/src/IconShortStayRoundedFilled.tsx b/src/IconShortStayRoundedFilled.tsx new file mode 100644 index 000000000..f65847c28 --- /dev/null +++ b/src/IconShortStayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortStayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortStayRoundedFilled as default } diff --git a/src/IconShortStaySharpFilled.tsx b/src/IconShortStaySharpFilled.tsx new file mode 100644 index 000000000..06cf5326d --- /dev/null +++ b/src/IconShortStaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortStaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortStaySharpFilled as default } diff --git a/src/IconShortTextOutlinedFilled.tsx b/src/IconShortTextOutlinedFilled.tsx new file mode 100644 index 000000000..6a0dd7157 --- /dev/null +++ b/src/IconShortTextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortTextOutlinedFilled as default } diff --git a/src/IconShortTextRoundedFilled.tsx b/src/IconShortTextRoundedFilled.tsx new file mode 100644 index 000000000..a9d6d5da9 --- /dev/null +++ b/src/IconShortTextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortTextRoundedFilled as default } diff --git a/src/IconShortTextSharpFilled.tsx b/src/IconShortTextSharpFilled.tsx new file mode 100644 index 000000000..86dc7f292 --- /dev/null +++ b/src/IconShortTextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShortTextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShortTextSharpFilled as default } diff --git a/src/IconShowChartOutlinedFilled.tsx b/src/IconShowChartOutlinedFilled.tsx new file mode 100644 index 000000000..a131ebd93 --- /dev/null +++ b/src/IconShowChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowChartOutlinedFilled as default } diff --git a/src/IconShowChartRoundedFilled.tsx b/src/IconShowChartRoundedFilled.tsx new file mode 100644 index 000000000..d6acdca4f --- /dev/null +++ b/src/IconShowChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowChartRoundedFilled as default } diff --git a/src/IconShowChartSharpFilled.tsx b/src/IconShowChartSharpFilled.tsx new file mode 100644 index 000000000..52c96839c --- /dev/null +++ b/src/IconShowChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowChartSharpFilled as default } diff --git a/src/IconShowerOutlinedFilled.tsx b/src/IconShowerOutlinedFilled.tsx new file mode 100644 index 000000000..657afd403 --- /dev/null +++ b/src/IconShowerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowerOutlinedFilled as default } diff --git a/src/IconShowerRoundedFilled.tsx b/src/IconShowerRoundedFilled.tsx new file mode 100644 index 000000000..08ed6159a --- /dev/null +++ b/src/IconShowerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowerRoundedFilled as default } diff --git a/src/IconShowerSharpFilled.tsx b/src/IconShowerSharpFilled.tsx new file mode 100644 index 000000000..27e4b885c --- /dev/null +++ b/src/IconShowerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShowerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShowerSharpFilled as default } diff --git a/src/IconShuffleOnOutlinedFilled.tsx b/src/IconShuffleOnOutlinedFilled.tsx new file mode 100644 index 000000000..419671a44 --- /dev/null +++ b/src/IconShuffleOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleOnOutlinedFilled as default } diff --git a/src/IconShuffleOnRoundedFilled.tsx b/src/IconShuffleOnRoundedFilled.tsx new file mode 100644 index 000000000..7e48ae0af --- /dev/null +++ b/src/IconShuffleOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleOnRoundedFilled as default } diff --git a/src/IconShuffleOnSharpFilled.tsx b/src/IconShuffleOnSharpFilled.tsx new file mode 100644 index 000000000..36cc7e0c9 --- /dev/null +++ b/src/IconShuffleOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleOnSharpFilled as default } diff --git a/src/IconShuffleOutlinedFilled.tsx b/src/IconShuffleOutlinedFilled.tsx new file mode 100644 index 000000000..00efb1dae --- /dev/null +++ b/src/IconShuffleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleOutlinedFilled as default } diff --git a/src/IconShuffleRoundedFilled.tsx b/src/IconShuffleRoundedFilled.tsx new file mode 100644 index 000000000..b71e67487 --- /dev/null +++ b/src/IconShuffleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleRoundedFilled as default } diff --git a/src/IconShuffleSharpFilled.tsx b/src/IconShuffleSharpFilled.tsx new file mode 100644 index 000000000..1732af41c --- /dev/null +++ b/src/IconShuffleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShuffleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShuffleSharpFilled as default } diff --git a/src/IconShutterSpeedAddOutlinedFilled.tsx b/src/IconShutterSpeedAddOutlinedFilled.tsx new file mode 100644 index 000000000..0bca89289 --- /dev/null +++ b/src/IconShutterSpeedAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedAddOutlinedFilled as default } diff --git a/src/IconShutterSpeedAddRoundedFilled.tsx b/src/IconShutterSpeedAddRoundedFilled.tsx new file mode 100644 index 000000000..8d5f55087 --- /dev/null +++ b/src/IconShutterSpeedAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedAddRoundedFilled as default } diff --git a/src/IconShutterSpeedAddSharpFilled.tsx b/src/IconShutterSpeedAddSharpFilled.tsx new file mode 100644 index 000000000..9494f2a3d --- /dev/null +++ b/src/IconShutterSpeedAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedAddSharpFilled as default } diff --git a/src/IconShutterSpeedMinusOutlinedFilled.tsx b/src/IconShutterSpeedMinusOutlinedFilled.tsx new file mode 100644 index 000000000..fc3e3e5ac --- /dev/null +++ b/src/IconShutterSpeedMinusOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedMinusOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedMinusOutlinedFilled as default } diff --git a/src/IconShutterSpeedMinusRoundedFilled.tsx b/src/IconShutterSpeedMinusRoundedFilled.tsx new file mode 100644 index 000000000..a5c746fbf --- /dev/null +++ b/src/IconShutterSpeedMinusRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedMinusRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedMinusRoundedFilled as default } diff --git a/src/IconShutterSpeedMinusSharpFilled.tsx b/src/IconShutterSpeedMinusSharpFilled.tsx new file mode 100644 index 000000000..6e542e952 --- /dev/null +++ b/src/IconShutterSpeedMinusSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedMinusSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedMinusSharpFilled as default } diff --git a/src/IconShutterSpeedOutlined.tsx b/src/IconShutterSpeedOutlined.tsx deleted file mode 100644 index 82cc71aa6..000000000 --- a/src/IconShutterSpeedOutlined.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import React from 'react' -import { IconProps } from './types' - -const IconShutterSpeedOutlined: React.FC = ({ ...props }) => ( - - {props.title && {props.title}} - - -) - -export { IconShutterSpeedOutlined as default } diff --git a/src/IconShutterSpeedOutlinedFilled.tsx b/src/IconShutterSpeedOutlinedFilled.tsx new file mode 100644 index 000000000..138852f27 --- /dev/null +++ b/src/IconShutterSpeedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedOutlinedFilled as default } diff --git a/src/IconShutterSpeedRoundedFilled.tsx b/src/IconShutterSpeedRoundedFilled.tsx new file mode 100644 index 000000000..ac6acba48 --- /dev/null +++ b/src/IconShutterSpeedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedRoundedFilled as default } diff --git a/src/IconShutterSpeedSharpFilled.tsx b/src/IconShutterSpeedSharpFilled.tsx new file mode 100644 index 000000000..db65644ab --- /dev/null +++ b/src/IconShutterSpeedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconShutterSpeedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconShutterSpeedSharpFilled as default } diff --git a/src/IconSickOutlinedFilled.tsx b/src/IconSickOutlinedFilled.tsx new file mode 100644 index 000000000..d7ce926fe --- /dev/null +++ b/src/IconSickOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSickOutlinedFilled as default } diff --git a/src/IconSickRoundedFilled.tsx b/src/IconSickRoundedFilled.tsx new file mode 100644 index 000000000..58209d00c --- /dev/null +++ b/src/IconSickRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSickRoundedFilled as default } diff --git a/src/IconSickSharpFilled.tsx b/src/IconSickSharpFilled.tsx new file mode 100644 index 000000000..948a580c6 --- /dev/null +++ b/src/IconSickSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSickSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSickSharpFilled as default } diff --git a/src/IconSideNavigationOutlinedFilled.tsx b/src/IconSideNavigationOutlinedFilled.tsx new file mode 100644 index 000000000..898f95202 --- /dev/null +++ b/src/IconSideNavigationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSideNavigationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSideNavigationOutlinedFilled as default } diff --git a/src/IconSideNavigationRoundedFilled.tsx b/src/IconSideNavigationRoundedFilled.tsx new file mode 100644 index 000000000..663e86794 --- /dev/null +++ b/src/IconSideNavigationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSideNavigationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSideNavigationRoundedFilled as default } diff --git a/src/IconSideNavigationSharpFilled.tsx b/src/IconSideNavigationSharpFilled.tsx new file mode 100644 index 000000000..b9defef77 --- /dev/null +++ b/src/IconSideNavigationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSideNavigationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSideNavigationSharpFilled as default } diff --git a/src/IconSignLanguageOutlinedFilled.tsx b/src/IconSignLanguageOutlinedFilled.tsx new file mode 100644 index 000000000..2932bade3 --- /dev/null +++ b/src/IconSignLanguageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignLanguageOutlinedFilled as default } diff --git a/src/IconSignLanguageRoundedFilled.tsx b/src/IconSignLanguageRoundedFilled.tsx new file mode 100644 index 000000000..7f215d3fb --- /dev/null +++ b/src/IconSignLanguageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignLanguageRoundedFilled as default } diff --git a/src/IconSignLanguageSharpFilled.tsx b/src/IconSignLanguageSharpFilled.tsx new file mode 100644 index 000000000..686555097 --- /dev/null +++ b/src/IconSignLanguageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignLanguageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignLanguageSharpFilled as default } diff --git a/src/IconSignalCellular0BarOutlinedFilled.tsx b/src/IconSignalCellular0BarOutlinedFilled.tsx new file mode 100644 index 000000000..9c0ad091b --- /dev/null +++ b/src/IconSignalCellular0BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular0BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular0BarOutlinedFilled as default } diff --git a/src/IconSignalCellular0BarRoundedFilled.tsx b/src/IconSignalCellular0BarRoundedFilled.tsx new file mode 100644 index 000000000..941811f49 --- /dev/null +++ b/src/IconSignalCellular0BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular0BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular0BarRoundedFilled as default } diff --git a/src/IconSignalCellularNullOutlined.tsx b/src/IconSignalCellular0BarSharpFilled.tsx similarity index 65% rename from src/IconSignalCellularNullOutlined.tsx rename to src/IconSignalCellular0BarSharpFilled.tsx index fb4d3ae72..3d865b646 100644 --- a/src/IconSignalCellularNullOutlined.tsx +++ b/src/IconSignalCellular0BarSharpFilled.tsx @@ -1,11 +1,13 @@ import React from 'react' import { IconProps } from './types' -const IconSignalCellularNullOutlined: React.FC = ({ ...props }) => ( +const IconSignalCellular0BarSharpFilled: React.FC = ({ + ...props +}) => ( {props.title && {props.title}} ) -export { IconSignalCellularNullOutlined as default } +export { IconSignalCellular0BarSharpFilled as default } diff --git a/src/IconSignalCellular1BarOutlinedFilled.tsx b/src/IconSignalCellular1BarOutlinedFilled.tsx new file mode 100644 index 000000000..c519c3458 --- /dev/null +++ b/src/IconSignalCellular1BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular1BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular1BarOutlinedFilled as default } diff --git a/src/IconSignalCellular1BarRoundedFilled.tsx b/src/IconSignalCellular1BarRoundedFilled.tsx new file mode 100644 index 000000000..17ca8fdab --- /dev/null +++ b/src/IconSignalCellular1BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular1BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular1BarRoundedFilled as default } diff --git a/src/IconSignalCellular1BarSharpFilled.tsx b/src/IconSignalCellular1BarSharpFilled.tsx new file mode 100644 index 000000000..426595545 --- /dev/null +++ b/src/IconSignalCellular1BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular1BarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular1BarSharpFilled as default } diff --git a/src/IconSignalCellular2BarOutlinedFilled.tsx b/src/IconSignalCellular2BarOutlinedFilled.tsx new file mode 100644 index 000000000..78201d40f --- /dev/null +++ b/src/IconSignalCellular2BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular2BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular2BarOutlinedFilled as default } diff --git a/src/IconSignalCellular2BarRoundedFilled.tsx b/src/IconSignalCellular2BarRoundedFilled.tsx new file mode 100644 index 000000000..978aad490 --- /dev/null +++ b/src/IconSignalCellular2BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular2BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular2BarRoundedFilled as default } diff --git a/src/IconSignalCellular2BarSharpFilled.tsx b/src/IconSignalCellular2BarSharpFilled.tsx new file mode 100644 index 000000000..e83cc34a7 --- /dev/null +++ b/src/IconSignalCellular2BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular2BarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular2BarSharpFilled as default } diff --git a/src/IconSignalCellular3BarOutlinedFilled.tsx b/src/IconSignalCellular3BarOutlinedFilled.tsx new file mode 100644 index 000000000..a22a66489 --- /dev/null +++ b/src/IconSignalCellular3BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular3BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular3BarOutlinedFilled as default } diff --git a/src/IconSignalCellular3BarRoundedFilled.tsx b/src/IconSignalCellular3BarRoundedFilled.tsx new file mode 100644 index 000000000..f603c1ff7 --- /dev/null +++ b/src/IconSignalCellular3BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular3BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular3BarRoundedFilled as default } diff --git a/src/IconSignalCellular3BarSharpFilled.tsx b/src/IconSignalCellular3BarSharpFilled.tsx new file mode 100644 index 000000000..4c1603be4 --- /dev/null +++ b/src/IconSignalCellular3BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular3BarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular3BarSharpFilled as default } diff --git a/src/IconSignalCellular4BarOutlinedFilled.tsx b/src/IconSignalCellular4BarOutlinedFilled.tsx new file mode 100644 index 000000000..fbb02691f --- /dev/null +++ b/src/IconSignalCellular4BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular4BarOutlinedFilled as default } diff --git a/src/IconSignalCellular4BarRoundedFilled.tsx b/src/IconSignalCellular4BarRoundedFilled.tsx new file mode 100644 index 000000000..2e21f60be --- /dev/null +++ b/src/IconSignalCellular4BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular4BarRoundedFilled as default } diff --git a/src/IconSignalCellular4BarSharpFilled.tsx b/src/IconSignalCellular4BarSharpFilled.tsx new file mode 100644 index 000000000..099999e36 --- /dev/null +++ b/src/IconSignalCellular4BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellular4BarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellular4BarSharpFilled as default } diff --git a/src/IconSignalCellularAddOutlinedFilled.tsx b/src/IconSignalCellularAddOutlinedFilled.tsx new file mode 100644 index 000000000..4e38cfa75 --- /dev/null +++ b/src/IconSignalCellularAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAddOutlinedFilled as default } diff --git a/src/IconSignalCellularAddRoundedFilled.tsx b/src/IconSignalCellularAddRoundedFilled.tsx new file mode 100644 index 000000000..9945b2c5b --- /dev/null +++ b/src/IconSignalCellularAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAddRoundedFilled as default } diff --git a/src/IconSignalCellularAddSharpFilled.tsx b/src/IconSignalCellularAddSharpFilled.tsx new file mode 100644 index 000000000..2aff0493d --- /dev/null +++ b/src/IconSignalCellularAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAddSharpFilled as default } diff --git a/src/IconSignalCellularAlt1BarOutlinedFilled.tsx b/src/IconSignalCellularAlt1BarOutlinedFilled.tsx new file mode 100644 index 000000000..9b6d3ad89 --- /dev/null +++ b/src/IconSignalCellularAlt1BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAlt1BarOutlinedFilled as default } diff --git a/src/IconSignalCellularAlt1BarRoundedFilled.tsx b/src/IconSignalCellularAlt1BarRoundedFilled.tsx new file mode 100644 index 000000000..60b06c208 --- /dev/null +++ b/src/IconSignalCellularAlt1BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAlt1BarRoundedFilled as default } diff --git a/src/IconSignalCellularAlt1BarSharpFilled.tsx b/src/IconSignalCellularAlt1BarSharpFilled.tsx new file mode 100644 index 000000000..eec4a0c9f --- /dev/null +++ b/src/IconSignalCellularAlt1BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt1BarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAlt1BarSharpFilled as default } diff --git a/src/IconSignalCellularAlt2BarOutlinedFilled.tsx b/src/IconSignalCellularAlt2BarOutlinedFilled.tsx new file mode 100644 index 000000000..7b3dbf163 --- /dev/null +++ b/src/IconSignalCellularAlt2BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAlt2BarOutlinedFilled as default } diff --git a/src/IconSignalCellularAlt2BarRoundedFilled.tsx b/src/IconSignalCellularAlt2BarRoundedFilled.tsx new file mode 100644 index 000000000..5e8515e94 --- /dev/null +++ b/src/IconSignalCellularAlt2BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAlt2BarRoundedFilled as default } diff --git a/src/IconSignalCellularAlt2BarSharpFilled.tsx b/src/IconSignalCellularAlt2BarSharpFilled.tsx new file mode 100644 index 000000000..1eae9ce6c --- /dev/null +++ b/src/IconSignalCellularAlt2BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAlt2BarSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAlt2BarSharpFilled as default } diff --git a/src/IconSignalCellularAltOutlinedFilled.tsx b/src/IconSignalCellularAltOutlinedFilled.tsx new file mode 100644 index 000000000..a394fe9ae --- /dev/null +++ b/src/IconSignalCellularAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAltOutlinedFilled as default } diff --git a/src/IconSignalCellularAltRoundedFilled.tsx b/src/IconSignalCellularAltRoundedFilled.tsx new file mode 100644 index 000000000..bd3ea78f7 --- /dev/null +++ b/src/IconSignalCellularAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAltRoundedFilled as default } diff --git a/src/IconSignalCellularAltSharpFilled.tsx b/src/IconSignalCellularAltSharpFilled.tsx new file mode 100644 index 000000000..27d08c544 --- /dev/null +++ b/src/IconSignalCellularAltSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularAltSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularAltSharpFilled as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx b/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx new file mode 100644 index 000000000..bd8305c06 --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarOutlinedFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularConnectedNoInternet0BarOutlinedFilled as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx b/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx new file mode 100644 index 000000000..fa23a9c83 --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarRoundedFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularConnectedNoInternet0BarRoundedFilled as default } diff --git a/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx b/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx new file mode 100644 index 000000000..045177e89 --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet0BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet0BarSharpFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularConnectedNoInternet0BarSharpFilled as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx b/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx new file mode 100644 index 000000000..40a2c52cf --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarOutlinedFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularConnectedNoInternet4BarOutlinedFilled as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx b/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx new file mode 100644 index 000000000..2eb723f7e --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarRoundedFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularConnectedNoInternet4BarRoundedFilled as default } diff --git a/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx b/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx new file mode 100644 index 000000000..27133dc88 --- /dev/null +++ b/src/IconSignalCellularConnectedNoInternet4BarSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularConnectedNoInternet4BarSharpFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularConnectedNoInternet4BarSharpFilled as default } diff --git a/src/IconSignalCellularNodataOutlinedFilled.tsx b/src/IconSignalCellularNodataOutlinedFilled.tsx new file mode 100644 index 000000000..f833922e5 --- /dev/null +++ b/src/IconSignalCellularNodataOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularNodataOutlinedFilled as default } diff --git a/src/IconSignalCellularNodataRoundedFilled.tsx b/src/IconSignalCellularNodataRoundedFilled.tsx new file mode 100644 index 000000000..c59586001 --- /dev/null +++ b/src/IconSignalCellularNodataRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularNodataRoundedFilled as default } diff --git a/src/IconSignalCellularNodataSharpFilled.tsx b/src/IconSignalCellularNodataSharpFilled.tsx new file mode 100644 index 000000000..332a38741 --- /dev/null +++ b/src/IconSignalCellularNodataSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNodataSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularNodataSharpFilled as default } diff --git a/src/IconSignalCellularNullOutlinedFilled.tsx b/src/IconSignalCellularNullOutlinedFilled.tsx new file mode 100644 index 000000000..8555850d7 --- /dev/null +++ b/src/IconSignalCellularNullOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularNullOutlinedFilled as default } diff --git a/src/IconSignalCellularNullRoundedFilled.tsx b/src/IconSignalCellularNullRoundedFilled.tsx new file mode 100644 index 000000000..e1256da26 --- /dev/null +++ b/src/IconSignalCellularNullRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularNullRoundedFilled as default } diff --git a/src/IconSignalCellularNullSharpFilled.tsx b/src/IconSignalCellularNullSharpFilled.tsx new file mode 100644 index 000000000..450405c93 --- /dev/null +++ b/src/IconSignalCellularNullSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularNullSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularNullSharpFilled as default } diff --git a/src/IconSignalCellularOffOutlinedFilled.tsx b/src/IconSignalCellularOffOutlinedFilled.tsx new file mode 100644 index 000000000..665ca5449 --- /dev/null +++ b/src/IconSignalCellularOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularOffOutlinedFilled as default } diff --git a/src/IconSignalCellularOffRoundedFilled.tsx b/src/IconSignalCellularOffRoundedFilled.tsx new file mode 100644 index 000000000..74dcf7cc9 --- /dev/null +++ b/src/IconSignalCellularOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularOffRoundedFilled as default } diff --git a/src/IconSignalCellularOffSharpFilled.tsx b/src/IconSignalCellularOffSharpFilled.tsx new file mode 100644 index 000000000..081c2d699 --- /dev/null +++ b/src/IconSignalCellularOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularOffSharpFilled as default } diff --git a/src/IconSignalCellularPauseOutlinedFilled.tsx b/src/IconSignalCellularPauseOutlinedFilled.tsx new file mode 100644 index 000000000..94f73333b --- /dev/null +++ b/src/IconSignalCellularPauseOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularPauseOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularPauseOutlinedFilled as default } diff --git a/src/IconSignalCellularPauseRoundedFilled.tsx b/src/IconSignalCellularPauseRoundedFilled.tsx new file mode 100644 index 000000000..8503234aa --- /dev/null +++ b/src/IconSignalCellularPauseRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularPauseRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularPauseRoundedFilled as default } diff --git a/src/IconSignalCellularPauseSharpFilled.tsx b/src/IconSignalCellularPauseSharpFilled.tsx new file mode 100644 index 000000000..2bbaa90b9 --- /dev/null +++ b/src/IconSignalCellularPauseSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalCellularPauseSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalCellularPauseSharpFilled as default } diff --git a/src/IconSignalDisconnectedOutlinedFilled.tsx b/src/IconSignalDisconnectedOutlinedFilled.tsx new file mode 100644 index 000000000..b1b56115a --- /dev/null +++ b/src/IconSignalDisconnectedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalDisconnectedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalDisconnectedOutlinedFilled as default } diff --git a/src/IconSignalDisconnectedRoundedFilled.tsx b/src/IconSignalDisconnectedRoundedFilled.tsx new file mode 100644 index 000000000..5baafd4cc --- /dev/null +++ b/src/IconSignalDisconnectedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalDisconnectedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalDisconnectedRoundedFilled as default } diff --git a/src/IconSignalDisconnectedSharpFilled.tsx b/src/IconSignalDisconnectedSharpFilled.tsx new file mode 100644 index 000000000..03ef3f095 --- /dev/null +++ b/src/IconSignalDisconnectedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalDisconnectedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalDisconnectedSharpFilled as default } diff --git a/src/IconSignalWifi0BarOutlinedFilled.tsx b/src/IconSignalWifi0BarOutlinedFilled.tsx new file mode 100644 index 000000000..4beeef3f2 --- /dev/null +++ b/src/IconSignalWifi0BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifi0BarOutlinedFilled as default } diff --git a/src/IconSignalWifi0BarRoundedFilled.tsx b/src/IconSignalWifi0BarRoundedFilled.tsx new file mode 100644 index 000000000..25c621d1d --- /dev/null +++ b/src/IconSignalWifi0BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifi0BarRoundedFilled as default } diff --git a/src/IconSignalWifi0BarSharpFilled.tsx b/src/IconSignalWifi0BarSharpFilled.tsx new file mode 100644 index 000000000..367068fba --- /dev/null +++ b/src/IconSignalWifi0BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi0BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifi0BarSharpFilled as default } diff --git a/src/IconSignalWifi4BarOutlinedFilled.tsx b/src/IconSignalWifi4BarOutlinedFilled.tsx new file mode 100644 index 000000000..ae842b2fc --- /dev/null +++ b/src/IconSignalWifi4BarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifi4BarOutlinedFilled as default } diff --git a/src/IconSignalWifi4BarRoundedFilled.tsx b/src/IconSignalWifi4BarRoundedFilled.tsx new file mode 100644 index 000000000..c35f8842a --- /dev/null +++ b/src/IconSignalWifi4BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifi4BarRoundedFilled as default } diff --git a/src/IconSignalWifi4BarSharpFilled.tsx b/src/IconSignalWifi4BarSharpFilled.tsx new file mode 100644 index 000000000..189b3312c --- /dev/null +++ b/src/IconSignalWifi4BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifi4BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifi4BarSharpFilled as default } diff --git a/src/IconSignalWifiBadOutlinedFilled.tsx b/src/IconSignalWifiBadOutlinedFilled.tsx new file mode 100644 index 000000000..f11d7c9a2 --- /dev/null +++ b/src/IconSignalWifiBadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiBadOutlinedFilled as default } diff --git a/src/IconSignalWifiBadRoundedFilled.tsx b/src/IconSignalWifiBadRoundedFilled.tsx new file mode 100644 index 000000000..09a7049e0 --- /dev/null +++ b/src/IconSignalWifiBadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiBadRoundedFilled as default } diff --git a/src/IconSignalWifiBadSharpFilled.tsx b/src/IconSignalWifiBadSharpFilled.tsx new file mode 100644 index 000000000..a2230f0bb --- /dev/null +++ b/src/IconSignalWifiBadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiBadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiBadSharpFilled as default } diff --git a/src/IconSignalWifiOffOutlinedFilled.tsx b/src/IconSignalWifiOffOutlinedFilled.tsx new file mode 100644 index 000000000..9ed8a1c41 --- /dev/null +++ b/src/IconSignalWifiOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiOffOutlinedFilled as default } diff --git a/src/IconSignalWifiOffRoundedFilled.tsx b/src/IconSignalWifiOffRoundedFilled.tsx new file mode 100644 index 000000000..bea9f4d24 --- /dev/null +++ b/src/IconSignalWifiOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiOffRoundedFilled as default } diff --git a/src/IconSignalWifiOffSharpFilled.tsx b/src/IconSignalWifiOffSharpFilled.tsx new file mode 100644 index 000000000..60ae8c727 --- /dev/null +++ b/src/IconSignalWifiOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiOffSharpFilled as default } diff --git a/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx b/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx new file mode 100644 index 000000000..0f70dc717 --- /dev/null +++ b/src/IconSignalWifiStatusbarNotConnectedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNotConnectedOutlinedFilled: React.FC< + IconProps +> = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiStatusbarNotConnectedOutlinedFilled as default } diff --git a/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx b/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx new file mode 100644 index 000000000..3aca5a09c --- /dev/null +++ b/src/IconSignalWifiStatusbarNotConnectedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNotConnectedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiStatusbarNotConnectedRoundedFilled as default } diff --git a/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx b/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx new file mode 100644 index 000000000..4cd2eab3f --- /dev/null +++ b/src/IconSignalWifiStatusbarNotConnectedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNotConnectedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiStatusbarNotConnectedSharpFilled as default } diff --git a/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx b/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx new file mode 100644 index 000000000..408026044 --- /dev/null +++ b/src/IconSignalWifiStatusbarNullOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiStatusbarNullOutlinedFilled as default } diff --git a/src/IconSignalWifiStatusbarNullRoundedFilled.tsx b/src/IconSignalWifiStatusbarNullRoundedFilled.tsx new file mode 100644 index 000000000..2d7babbe7 --- /dev/null +++ b/src/IconSignalWifiStatusbarNullRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiStatusbarNullRoundedFilled as default } diff --git a/src/IconSignalWifiStatusbarNullSharpFilled.tsx b/src/IconSignalWifiStatusbarNullSharpFilled.tsx new file mode 100644 index 000000000..76d87e61f --- /dev/null +++ b/src/IconSignalWifiStatusbarNullSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignalWifiStatusbarNullSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSignalWifiStatusbarNullSharpFilled as default } diff --git a/src/IconSignatureOutlinedFilled.tsx b/src/IconSignatureOutlinedFilled.tsx new file mode 100644 index 000000000..e481ea7e3 --- /dev/null +++ b/src/IconSignatureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignatureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignatureOutlinedFilled as default } diff --git a/src/IconSignatureRoundedFilled.tsx b/src/IconSignatureRoundedFilled.tsx new file mode 100644 index 000000000..e4b218db3 --- /dev/null +++ b/src/IconSignatureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignatureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignatureRoundedFilled as default } diff --git a/src/IconSignatureSharpFilled.tsx b/src/IconSignatureSharpFilled.tsx new file mode 100644 index 000000000..a578b6650 --- /dev/null +++ b/src/IconSignatureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignatureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignatureSharpFilled as default } diff --git a/src/IconSignpostOutlinedFilled.tsx b/src/IconSignpostOutlinedFilled.tsx new file mode 100644 index 000000000..f90b5a25b --- /dev/null +++ b/src/IconSignpostOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignpostOutlinedFilled as default } diff --git a/src/IconSignpostRoundedFilled.tsx b/src/IconSignpostRoundedFilled.tsx new file mode 100644 index 000000000..021d21d75 --- /dev/null +++ b/src/IconSignpostRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignpostRoundedFilled as default } diff --git a/src/IconSignpostSharpFilled.tsx b/src/IconSignpostSharpFilled.tsx new file mode 100644 index 000000000..20500ec51 --- /dev/null +++ b/src/IconSignpostSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSignpostSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSignpostSharpFilled as default } diff --git a/src/IconSimCardDownloadOutlinedFilled.tsx b/src/IconSimCardDownloadOutlinedFilled.tsx new file mode 100644 index 000000000..389063096 --- /dev/null +++ b/src/IconSimCardDownloadOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardDownloadOutlinedFilled as default } diff --git a/src/IconSimCardDownloadRoundedFilled.tsx b/src/IconSimCardDownloadRoundedFilled.tsx new file mode 100644 index 000000000..de0202399 --- /dev/null +++ b/src/IconSimCardDownloadRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardDownloadRoundedFilled as default } diff --git a/src/IconSimCardDownloadSharpFilled.tsx b/src/IconSimCardDownloadSharpFilled.tsx new file mode 100644 index 000000000..b39cebebc --- /dev/null +++ b/src/IconSimCardDownloadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardDownloadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardDownloadSharpFilled as default } diff --git a/src/IconSimCardOutlinedFilled.tsx b/src/IconSimCardOutlinedFilled.tsx new file mode 100644 index 000000000..f0a5e6a82 --- /dev/null +++ b/src/IconSimCardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardOutlinedFilled as default } diff --git a/src/IconSimCardRoundedFilled.tsx b/src/IconSimCardRoundedFilled.tsx new file mode 100644 index 000000000..cb3fa6e44 --- /dev/null +++ b/src/IconSimCardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardRoundedFilled as default } diff --git a/src/IconSimCardSharpFilled.tsx b/src/IconSimCardSharpFilled.tsx new file mode 100644 index 000000000..b290b424a --- /dev/null +++ b/src/IconSimCardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSimCardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSimCardSharpFilled as default } diff --git a/src/IconSingleBedOutlinedFilled.tsx b/src/IconSingleBedOutlinedFilled.tsx new file mode 100644 index 000000000..cb86b4087 --- /dev/null +++ b/src/IconSingleBedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSingleBedOutlinedFilled as default } diff --git a/src/IconSingleBedRoundedFilled.tsx b/src/IconSingleBedRoundedFilled.tsx new file mode 100644 index 000000000..03f0e3a78 --- /dev/null +++ b/src/IconSingleBedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSingleBedRoundedFilled as default } diff --git a/src/IconSingleBedSharpFilled.tsx b/src/IconSingleBedSharpFilled.tsx new file mode 100644 index 000000000..813dfe89a --- /dev/null +++ b/src/IconSingleBedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSingleBedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSingleBedSharpFilled as default } diff --git a/src/IconSipOutlinedFilled.tsx b/src/IconSipOutlinedFilled.tsx new file mode 100644 index 000000000..eab295069 --- /dev/null +++ b/src/IconSipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSipOutlinedFilled as default } diff --git a/src/IconSipRoundedFilled.tsx b/src/IconSipRoundedFilled.tsx new file mode 100644 index 000000000..2a72ed09a --- /dev/null +++ b/src/IconSipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSipRoundedFilled as default } diff --git a/src/IconSipSharpFilled.tsx b/src/IconSipSharpFilled.tsx new file mode 100644 index 000000000..c9156593c --- /dev/null +++ b/src/IconSipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSipSharpFilled as default } diff --git a/src/IconSkateboardingOutlinedFilled.tsx b/src/IconSkateboardingOutlinedFilled.tsx new file mode 100644 index 000000000..e2b3cb53b --- /dev/null +++ b/src/IconSkateboardingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkateboardingOutlinedFilled as default } diff --git a/src/IconSkateboardingRoundedFilled.tsx b/src/IconSkateboardingRoundedFilled.tsx new file mode 100644 index 000000000..6a393c572 --- /dev/null +++ b/src/IconSkateboardingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkateboardingRoundedFilled as default } diff --git a/src/IconSkateboardingSharpFilled.tsx b/src/IconSkateboardingSharpFilled.tsx new file mode 100644 index 000000000..27429d963 --- /dev/null +++ b/src/IconSkateboardingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkateboardingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkateboardingSharpFilled as default } diff --git a/src/IconSkeletonOutlinedFilled.tsx b/src/IconSkeletonOutlinedFilled.tsx new file mode 100644 index 000000000..6ed5f785e --- /dev/null +++ b/src/IconSkeletonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkeletonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkeletonOutlinedFilled as default } diff --git a/src/IconSkeletonRoundedFilled.tsx b/src/IconSkeletonRoundedFilled.tsx new file mode 100644 index 000000000..e4ca43d35 --- /dev/null +++ b/src/IconSkeletonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkeletonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkeletonRoundedFilled as default } diff --git a/src/IconSkeletonSharpFilled.tsx b/src/IconSkeletonSharpFilled.tsx new file mode 100644 index 000000000..b262fa500 --- /dev/null +++ b/src/IconSkeletonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkeletonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkeletonSharpFilled as default } diff --git a/src/IconSkilletCooktopOutlinedFilled.tsx b/src/IconSkilletCooktopOutlinedFilled.tsx new file mode 100644 index 000000000..d6be595ba --- /dev/null +++ b/src/IconSkilletCooktopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkilletCooktopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSkilletCooktopOutlinedFilled as default } diff --git a/src/IconSkilletCooktopRoundedFilled.tsx b/src/IconSkilletCooktopRoundedFilled.tsx new file mode 100644 index 000000000..a7dc6192f --- /dev/null +++ b/src/IconSkilletCooktopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkilletCooktopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkilletCooktopRoundedFilled as default } diff --git a/src/IconSkilletCooktopSharpFilled.tsx b/src/IconSkilletCooktopSharpFilled.tsx new file mode 100644 index 000000000..f8b2542b6 --- /dev/null +++ b/src/IconSkilletCooktopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkilletCooktopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkilletCooktopSharpFilled as default } diff --git a/src/IconSkilletOutlinedFilled.tsx b/src/IconSkilletOutlinedFilled.tsx new file mode 100644 index 000000000..bc857554a --- /dev/null +++ b/src/IconSkilletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkilletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkilletOutlinedFilled as default } diff --git a/src/IconSkilletRoundedFilled.tsx b/src/IconSkilletRoundedFilled.tsx new file mode 100644 index 000000000..419302e7b --- /dev/null +++ b/src/IconSkilletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkilletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkilletRoundedFilled as default } diff --git a/src/IconSkilletSharpFilled.tsx b/src/IconSkilletSharpFilled.tsx new file mode 100644 index 000000000..1ac7ba891 --- /dev/null +++ b/src/IconSkilletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkilletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkilletSharpFilled as default } diff --git a/src/IconSkipNextOutlinedFilled.tsx b/src/IconSkipNextOutlinedFilled.tsx new file mode 100644 index 000000000..12299900e --- /dev/null +++ b/src/IconSkipNextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipNextOutlinedFilled as default } diff --git a/src/IconSkipNextRoundedFilled.tsx b/src/IconSkipNextRoundedFilled.tsx new file mode 100644 index 000000000..d862d50db --- /dev/null +++ b/src/IconSkipNextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipNextRoundedFilled as default } diff --git a/src/IconSkipNextSharpFilled.tsx b/src/IconSkipNextSharpFilled.tsx new file mode 100644 index 000000000..0c5d6b1b6 --- /dev/null +++ b/src/IconSkipNextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipNextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipNextSharpFilled as default } diff --git a/src/IconSkipPreviousOutlinedFilled.tsx b/src/IconSkipPreviousOutlinedFilled.tsx new file mode 100644 index 000000000..609172965 --- /dev/null +++ b/src/IconSkipPreviousOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipPreviousOutlinedFilled as default } diff --git a/src/IconSkipPreviousRoundedFilled.tsx b/src/IconSkipPreviousRoundedFilled.tsx new file mode 100644 index 000000000..4ac407458 --- /dev/null +++ b/src/IconSkipPreviousRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipPreviousRoundedFilled as default } diff --git a/src/IconSkipPreviousSharpFilled.tsx b/src/IconSkipPreviousSharpFilled.tsx new file mode 100644 index 000000000..e2341b01a --- /dev/null +++ b/src/IconSkipPreviousSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkipPreviousSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkipPreviousSharpFilled as default } diff --git a/src/IconSkullOutlinedFilled.tsx b/src/IconSkullOutlinedFilled.tsx new file mode 100644 index 000000000..0d558ce4d --- /dev/null +++ b/src/IconSkullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkullOutlinedFilled as default } diff --git a/src/IconSkullRoundedFilled.tsx b/src/IconSkullRoundedFilled.tsx new file mode 100644 index 000000000..9bb8d8de7 --- /dev/null +++ b/src/IconSkullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkullRoundedFilled as default } diff --git a/src/IconSkullSharpFilled.tsx b/src/IconSkullSharpFilled.tsx new file mode 100644 index 000000000..c2dc37a01 --- /dev/null +++ b/src/IconSkullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSkullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSkullSharpFilled as default } diff --git a/src/IconSlabSerifOutlinedFilled.tsx b/src/IconSlabSerifOutlinedFilled.tsx new file mode 100644 index 000000000..fa9fcabbf --- /dev/null +++ b/src/IconSlabSerifOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlabSerifOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlabSerifOutlinedFilled as default } diff --git a/src/IconSlabSerifRoundedFilled.tsx b/src/IconSlabSerifRoundedFilled.tsx new file mode 100644 index 000000000..2908d41a6 --- /dev/null +++ b/src/IconSlabSerifRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlabSerifRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlabSerifRoundedFilled as default } diff --git a/src/IconSlabSerifSharpFilled.tsx b/src/IconSlabSerifSharpFilled.tsx new file mode 100644 index 000000000..30e1c0c0e --- /dev/null +++ b/src/IconSlabSerifSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlabSerifSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlabSerifSharpFilled as default } diff --git a/src/IconSleddingOutlinedFilled.tsx b/src/IconSleddingOutlinedFilled.tsx new file mode 100644 index 000000000..1fa716777 --- /dev/null +++ b/src/IconSleddingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSleddingOutlinedFilled as default } diff --git a/src/IconSleddingRoundedFilled.tsx b/src/IconSleddingRoundedFilled.tsx new file mode 100644 index 000000000..361f7bc0a --- /dev/null +++ b/src/IconSleddingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSleddingRoundedFilled as default } diff --git a/src/IconSleddingSharpFilled.tsx b/src/IconSleddingSharpFilled.tsx new file mode 100644 index 000000000..d88369187 --- /dev/null +++ b/src/IconSleddingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleddingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSleddingSharpFilled as default } diff --git a/src/IconSleepScoreOutlinedFilled.tsx b/src/IconSleepScoreOutlinedFilled.tsx new file mode 100644 index 000000000..94060b82e --- /dev/null +++ b/src/IconSleepScoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleepScoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSleepScoreOutlinedFilled as default } diff --git a/src/IconSleepScoreRoundedFilled.tsx b/src/IconSleepScoreRoundedFilled.tsx new file mode 100644 index 000000000..41b699dd6 --- /dev/null +++ b/src/IconSleepScoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleepScoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSleepScoreRoundedFilled as default } diff --git a/src/IconSleepScoreSharpFilled.tsx b/src/IconSleepScoreSharpFilled.tsx new file mode 100644 index 000000000..c3e66309e --- /dev/null +++ b/src/IconSleepScoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSleepScoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSleepScoreSharpFilled as default } diff --git a/src/IconSlideLibraryOutlinedFilled.tsx b/src/IconSlideLibraryOutlinedFilled.tsx new file mode 100644 index 000000000..09f68dfe8 --- /dev/null +++ b/src/IconSlideLibraryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideLibraryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlideLibraryOutlinedFilled as default } diff --git a/src/IconSlideLibraryRoundedFilled.tsx b/src/IconSlideLibraryRoundedFilled.tsx new file mode 100644 index 000000000..c336f6fd1 --- /dev/null +++ b/src/IconSlideLibraryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideLibraryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlideLibraryRoundedFilled as default } diff --git a/src/IconSlideLibrarySharpFilled.tsx b/src/IconSlideLibrarySharpFilled.tsx new file mode 100644 index 000000000..f1c8ad4db --- /dev/null +++ b/src/IconSlideLibrarySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideLibrarySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlideLibrarySharpFilled as default } diff --git a/src/IconSlidersOutlinedFilled.tsx b/src/IconSlidersOutlinedFilled.tsx new file mode 100644 index 000000000..e690348e8 --- /dev/null +++ b/src/IconSlidersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlidersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlidersOutlinedFilled as default } diff --git a/src/IconSlidersRoundedFilled.tsx b/src/IconSlidersRoundedFilled.tsx new file mode 100644 index 000000000..8a8c4c92e --- /dev/null +++ b/src/IconSlidersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlidersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlidersRoundedFilled as default } diff --git a/src/IconSlidersSharpFilled.tsx b/src/IconSlidersSharpFilled.tsx new file mode 100644 index 000000000..6737f4e8a --- /dev/null +++ b/src/IconSlidersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlidersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlidersSharpFilled as default } diff --git a/src/IconSlideshowOutlinedFilled.tsx b/src/IconSlideshowOutlinedFilled.tsx new file mode 100644 index 000000000..83384e1ff --- /dev/null +++ b/src/IconSlideshowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlideshowOutlinedFilled as default } diff --git a/src/IconSlideshowRoundedFilled.tsx b/src/IconSlideshowRoundedFilled.tsx new file mode 100644 index 000000000..d0519b63c --- /dev/null +++ b/src/IconSlideshowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlideshowRoundedFilled as default } diff --git a/src/IconSlideshowSharpFilled.tsx b/src/IconSlideshowSharpFilled.tsx new file mode 100644 index 000000000..9d70876f5 --- /dev/null +++ b/src/IconSlideshowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlideshowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlideshowSharpFilled as default } diff --git a/src/IconSlowMotionVideoOutlinedFilled.tsx b/src/IconSlowMotionVideoOutlinedFilled.tsx new file mode 100644 index 000000000..10bb0b13c --- /dev/null +++ b/src/IconSlowMotionVideoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSlowMotionVideoOutlinedFilled as default } diff --git a/src/IconSlowMotionVideoRoundedFilled.tsx b/src/IconSlowMotionVideoRoundedFilled.tsx new file mode 100644 index 000000000..6d02ada5e --- /dev/null +++ b/src/IconSlowMotionVideoRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSlowMotionVideoRoundedFilled as default } diff --git a/src/IconSlowMotionVideoSharpFilled.tsx b/src/IconSlowMotionVideoSharpFilled.tsx new file mode 100644 index 000000000..7a6d65c28 --- /dev/null +++ b/src/IconSlowMotionVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSlowMotionVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSlowMotionVideoSharpFilled as default } diff --git a/src/IconSmartCardReaderOffOutlinedFilled.tsx b/src/IconSmartCardReaderOffOutlinedFilled.tsx new file mode 100644 index 000000000..9edbb8234 --- /dev/null +++ b/src/IconSmartCardReaderOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartCardReaderOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartCardReaderOffOutlinedFilled as default } diff --git a/src/IconSmartCardReaderOffRoundedFilled.tsx b/src/IconSmartCardReaderOffRoundedFilled.tsx new file mode 100644 index 000000000..b51473eea --- /dev/null +++ b/src/IconSmartCardReaderOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartCardReaderOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartCardReaderOffRoundedFilled as default } diff --git a/src/IconSmartCardReaderOffSharpFilled.tsx b/src/IconSmartCardReaderOffSharpFilled.tsx new file mode 100644 index 000000000..3c1dd82e4 --- /dev/null +++ b/src/IconSmartCardReaderOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartCardReaderOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartCardReaderOffSharpFilled as default } diff --git a/src/IconSmartCardReaderOutlinedFilled.tsx b/src/IconSmartCardReaderOutlinedFilled.tsx new file mode 100644 index 000000000..ce7abd3ff --- /dev/null +++ b/src/IconSmartCardReaderOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartCardReaderOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartCardReaderOutlinedFilled as default } diff --git a/src/IconSmartCardReaderRoundedFilled.tsx b/src/IconSmartCardReaderRoundedFilled.tsx new file mode 100644 index 000000000..839fc4c6a --- /dev/null +++ b/src/IconSmartCardReaderRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartCardReaderRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartCardReaderRoundedFilled as default } diff --git a/src/IconSmartCardReaderSharpFilled.tsx b/src/IconSmartCardReaderSharpFilled.tsx new file mode 100644 index 000000000..9f39a8621 --- /dev/null +++ b/src/IconSmartCardReaderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartCardReaderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartCardReaderSharpFilled as default } diff --git a/src/IconSmartDisplayOutlinedFilled.tsx b/src/IconSmartDisplayOutlinedFilled.tsx new file mode 100644 index 000000000..4f78e9b4a --- /dev/null +++ b/src/IconSmartDisplayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartDisplayOutlinedFilled as default } diff --git a/src/IconSmartDisplayRoundedFilled.tsx b/src/IconSmartDisplayRoundedFilled.tsx new file mode 100644 index 000000000..7c7439d88 --- /dev/null +++ b/src/IconSmartDisplayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartDisplayRoundedFilled as default } diff --git a/src/IconSmartDisplaySharpFilled.tsx b/src/IconSmartDisplaySharpFilled.tsx new file mode 100644 index 000000000..695d07be8 --- /dev/null +++ b/src/IconSmartDisplaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartDisplaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartDisplaySharpFilled as default } diff --git a/src/IconSmartOutletOutlinedFilled.tsx b/src/IconSmartOutletOutlinedFilled.tsx new file mode 100644 index 000000000..1d8be5349 --- /dev/null +++ b/src/IconSmartOutletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartOutletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartOutletOutlinedFilled as default } diff --git a/src/IconSmartOutletRoundedFilled.tsx b/src/IconSmartOutletRoundedFilled.tsx new file mode 100644 index 000000000..964ddf1d4 --- /dev/null +++ b/src/IconSmartOutletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartOutletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartOutletRoundedFilled as default } diff --git a/src/IconSmartOutletSharpFilled.tsx b/src/IconSmartOutletSharpFilled.tsx new file mode 100644 index 000000000..d90974abc --- /dev/null +++ b/src/IconSmartOutletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartOutletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartOutletSharpFilled as default } diff --git a/src/IconSmartScreenOutlinedFilled.tsx b/src/IconSmartScreenOutlinedFilled.tsx new file mode 100644 index 000000000..489b1a96e --- /dev/null +++ b/src/IconSmartScreenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartScreenOutlinedFilled as default } diff --git a/src/IconSmartScreenRoundedFilled.tsx b/src/IconSmartScreenRoundedFilled.tsx new file mode 100644 index 000000000..e290254b7 --- /dev/null +++ b/src/IconSmartScreenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartScreenRoundedFilled as default } diff --git a/src/IconSmartScreenSharpFilled.tsx b/src/IconSmartScreenSharpFilled.tsx new file mode 100644 index 000000000..456c37304 --- /dev/null +++ b/src/IconSmartScreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartScreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartScreenSharpFilled as default } diff --git a/src/IconSmartToyOutlinedFilled.tsx b/src/IconSmartToyOutlinedFilled.tsx new file mode 100644 index 000000000..fb2f8a348 --- /dev/null +++ b/src/IconSmartToyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartToyOutlinedFilled as default } diff --git a/src/IconSmartToyRoundedFilled.tsx b/src/IconSmartToyRoundedFilled.tsx new file mode 100644 index 000000000..25c0418ac --- /dev/null +++ b/src/IconSmartToyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartToyRoundedFilled as default } diff --git a/src/IconSmartToySharpFilled.tsx b/src/IconSmartToySharpFilled.tsx new file mode 100644 index 000000000..7a0e61758 --- /dev/null +++ b/src/IconSmartToySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartToySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartToySharpFilled as default } diff --git a/src/IconSmartphoneCameraOutlinedFilled.tsx b/src/IconSmartphoneCameraOutlinedFilled.tsx new file mode 100644 index 000000000..69a1031fa --- /dev/null +++ b/src/IconSmartphoneCameraOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneCameraOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneCameraOutlinedFilled as default } diff --git a/src/IconSmartphoneCameraRoundedFilled.tsx b/src/IconSmartphoneCameraRoundedFilled.tsx new file mode 100644 index 000000000..95f837457 --- /dev/null +++ b/src/IconSmartphoneCameraRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneCameraRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneCameraRoundedFilled as default } diff --git a/src/IconSmartphoneCameraSharpFilled.tsx b/src/IconSmartphoneCameraSharpFilled.tsx new file mode 100644 index 000000000..e5fbf747e --- /dev/null +++ b/src/IconSmartphoneCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneCameraSharpFilled as default } diff --git a/src/IconSmartphoneOutlinedFilled.tsx b/src/IconSmartphoneOutlinedFilled.tsx new file mode 100644 index 000000000..881fe1024 --- /dev/null +++ b/src/IconSmartphoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneOutlinedFilled as default } diff --git a/src/IconSmartphoneRoundedFilled.tsx b/src/IconSmartphoneRoundedFilled.tsx new file mode 100644 index 000000000..212fcb8ce --- /dev/null +++ b/src/IconSmartphoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneRoundedFilled as default } diff --git a/src/IconSmartphoneSharpFilled.tsx b/src/IconSmartphoneSharpFilled.tsx new file mode 100644 index 000000000..1a441e5bd --- /dev/null +++ b/src/IconSmartphoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmartphoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmartphoneSharpFilled as default } diff --git a/src/IconSmbShareOutlinedFilled.tsx b/src/IconSmbShareOutlinedFilled.tsx new file mode 100644 index 000000000..67e91a03f --- /dev/null +++ b/src/IconSmbShareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmbShareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmbShareOutlinedFilled as default } diff --git a/src/IconSmbShareRoundedFilled.tsx b/src/IconSmbShareRoundedFilled.tsx new file mode 100644 index 000000000..df0fe3697 --- /dev/null +++ b/src/IconSmbShareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmbShareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmbShareRoundedFilled as default } diff --git a/src/IconSmbShareSharpFilled.tsx b/src/IconSmbShareSharpFilled.tsx new file mode 100644 index 000000000..54a51a628 --- /dev/null +++ b/src/IconSmbShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmbShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmbShareSharpFilled as default } diff --git a/src/IconSmokeFreeOutlinedFilled.tsx b/src/IconSmokeFreeOutlinedFilled.tsx new file mode 100644 index 000000000..782c8f639 --- /dev/null +++ b/src/IconSmokeFreeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmokeFreeOutlinedFilled as default } diff --git a/src/IconSmokeFreeRoundedFilled.tsx b/src/IconSmokeFreeRoundedFilled.tsx new file mode 100644 index 000000000..10dee2653 --- /dev/null +++ b/src/IconSmokeFreeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmokeFreeRoundedFilled as default } diff --git a/src/IconSmokeFreeSharpFilled.tsx b/src/IconSmokeFreeSharpFilled.tsx new file mode 100644 index 000000000..82b4a8c31 --- /dev/null +++ b/src/IconSmokeFreeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokeFreeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmokeFreeSharpFilled as default } diff --git a/src/IconSmokingRoomsOutlinedFilled.tsx b/src/IconSmokingRoomsOutlinedFilled.tsx new file mode 100644 index 000000000..05894061b --- /dev/null +++ b/src/IconSmokingRoomsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmokingRoomsOutlinedFilled as default } diff --git a/src/IconSmokingRoomsRoundedFilled.tsx b/src/IconSmokingRoomsRoundedFilled.tsx new file mode 100644 index 000000000..4b9c822d5 --- /dev/null +++ b/src/IconSmokingRoomsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmokingRoomsRoundedFilled as default } diff --git a/src/IconSmokingRoomsSharpFilled.tsx b/src/IconSmokingRoomsSharpFilled.tsx new file mode 100644 index 000000000..e4db361aa --- /dev/null +++ b/src/IconSmokingRoomsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmokingRoomsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmokingRoomsSharpFilled as default } diff --git a/src/IconSmsOutlinedFilled.tsx b/src/IconSmsOutlinedFilled.tsx new file mode 100644 index 000000000..53cefba2b --- /dev/null +++ b/src/IconSmsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmsOutlinedFilled as default } diff --git a/src/IconSmsRoundedFilled.tsx b/src/IconSmsRoundedFilled.tsx new file mode 100644 index 000000000..225295619 --- /dev/null +++ b/src/IconSmsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmsRoundedFilled as default } diff --git a/src/IconSmsSharpFilled.tsx b/src/IconSmsSharpFilled.tsx new file mode 100644 index 000000000..a81627d7c --- /dev/null +++ b/src/IconSmsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSmsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSmsSharpFilled as default } diff --git a/src/IconSnippetFolderOutlinedFilled.tsx b/src/IconSnippetFolderOutlinedFilled.tsx new file mode 100644 index 000000000..affd90bcf --- /dev/null +++ b/src/IconSnippetFolderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnippetFolderOutlinedFilled as default } diff --git a/src/IconSnippetFolderRoundedFilled.tsx b/src/IconSnippetFolderRoundedFilled.tsx new file mode 100644 index 000000000..2a1c78519 --- /dev/null +++ b/src/IconSnippetFolderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnippetFolderRoundedFilled as default } diff --git a/src/IconSnippetFolderSharpFilled.tsx b/src/IconSnippetFolderSharpFilled.tsx new file mode 100644 index 000000000..db21b2f33 --- /dev/null +++ b/src/IconSnippetFolderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnippetFolderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnippetFolderSharpFilled as default } diff --git a/src/IconSnoozeOutlinedFilled.tsx b/src/IconSnoozeOutlinedFilled.tsx new file mode 100644 index 000000000..0e9bea5f7 --- /dev/null +++ b/src/IconSnoozeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnoozeOutlinedFilled as default } diff --git a/src/IconSnoozeRoundedFilled.tsx b/src/IconSnoozeRoundedFilled.tsx new file mode 100644 index 000000000..5486eadd4 --- /dev/null +++ b/src/IconSnoozeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnoozeRoundedFilled as default } diff --git a/src/IconSnoozeSharpFilled.tsx b/src/IconSnoozeSharpFilled.tsx new file mode 100644 index 000000000..7e86449e3 --- /dev/null +++ b/src/IconSnoozeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnoozeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnoozeSharpFilled as default } diff --git a/src/IconSnowboardingOutlinedFilled.tsx b/src/IconSnowboardingOutlinedFilled.tsx new file mode 100644 index 000000000..077586470 --- /dev/null +++ b/src/IconSnowboardingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowboardingOutlinedFilled as default } diff --git a/src/IconSnowboardingRoundedFilled.tsx b/src/IconSnowboardingRoundedFilled.tsx new file mode 100644 index 000000000..2595b9852 --- /dev/null +++ b/src/IconSnowboardingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowboardingRoundedFilled as default } diff --git a/src/IconSnowboardingSharpFilled.tsx b/src/IconSnowboardingSharpFilled.tsx new file mode 100644 index 000000000..0118cedb9 --- /dev/null +++ b/src/IconSnowboardingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowboardingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowboardingSharpFilled as default } diff --git a/src/IconSnowingHeavyOutlinedFilled.tsx b/src/IconSnowingHeavyOutlinedFilled.tsx new file mode 100644 index 000000000..e2cafb782 --- /dev/null +++ b/src/IconSnowingHeavyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowingHeavyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowingHeavyOutlinedFilled as default } diff --git a/src/IconSnowingHeavyRoundedFilled.tsx b/src/IconSnowingHeavyRoundedFilled.tsx new file mode 100644 index 000000000..8b21daa93 --- /dev/null +++ b/src/IconSnowingHeavyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowingHeavyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowingHeavyRoundedFilled as default } diff --git a/src/IconSnowingHeavySharpFilled.tsx b/src/IconSnowingHeavySharpFilled.tsx new file mode 100644 index 000000000..762ab34b7 --- /dev/null +++ b/src/IconSnowingHeavySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowingHeavySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowingHeavySharpFilled as default } diff --git a/src/IconSnowingOutlinedFilled.tsx b/src/IconSnowingOutlinedFilled.tsx new file mode 100644 index 000000000..cf0d7f2fe --- /dev/null +++ b/src/IconSnowingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowingOutlinedFilled as default } diff --git a/src/IconSnowingRoundedFilled.tsx b/src/IconSnowingRoundedFilled.tsx new file mode 100644 index 000000000..8c2604fa8 --- /dev/null +++ b/src/IconSnowingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowingRoundedFilled as default } diff --git a/src/IconSnowingSharpFilled.tsx b/src/IconSnowingSharpFilled.tsx new file mode 100644 index 000000000..118bf7330 --- /dev/null +++ b/src/IconSnowingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowingSharpFilled as default } diff --git a/src/IconSnowmobileOutlinedFilled.tsx b/src/IconSnowmobileOutlinedFilled.tsx new file mode 100644 index 000000000..880be1260 --- /dev/null +++ b/src/IconSnowmobileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowmobileOutlinedFilled as default } diff --git a/src/IconSnowmobileRoundedFilled.tsx b/src/IconSnowmobileRoundedFilled.tsx new file mode 100644 index 000000000..2030ef339 --- /dev/null +++ b/src/IconSnowmobileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowmobileRoundedFilled as default } diff --git a/src/IconSnowmobileSharpFilled.tsx b/src/IconSnowmobileSharpFilled.tsx new file mode 100644 index 000000000..7c9a178fd --- /dev/null +++ b/src/IconSnowmobileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowmobileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowmobileSharpFilled as default } diff --git a/src/IconSnowshoeingOutlinedFilled.tsx b/src/IconSnowshoeingOutlinedFilled.tsx new file mode 100644 index 000000000..818b0189e --- /dev/null +++ b/src/IconSnowshoeingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowshoeingOutlinedFilled as default } diff --git a/src/IconSnowshoeingRoundedFilled.tsx b/src/IconSnowshoeingRoundedFilled.tsx new file mode 100644 index 000000000..1893f641d --- /dev/null +++ b/src/IconSnowshoeingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowshoeingRoundedFilled as default } diff --git a/src/IconSnowshoeingSharpFilled.tsx b/src/IconSnowshoeingSharpFilled.tsx new file mode 100644 index 000000000..c3f02d13c --- /dev/null +++ b/src/IconSnowshoeingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSnowshoeingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSnowshoeingSharpFilled as default } diff --git a/src/IconSoapOutlinedFilled.tsx b/src/IconSoapOutlinedFilled.tsx new file mode 100644 index 000000000..3acc9428e --- /dev/null +++ b/src/IconSoapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoapOutlinedFilled as default } diff --git a/src/IconSoapRoundedFilled.tsx b/src/IconSoapRoundedFilled.tsx new file mode 100644 index 000000000..c56af7c36 --- /dev/null +++ b/src/IconSoapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoapRoundedFilled as default } diff --git a/src/IconSoapSharpFilled.tsx b/src/IconSoapSharpFilled.tsx new file mode 100644 index 000000000..522eb29e6 --- /dev/null +++ b/src/IconSoapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoapSharpFilled as default } diff --git a/src/IconSocialDistanceOutlinedFilled.tsx b/src/IconSocialDistanceOutlinedFilled.tsx new file mode 100644 index 000000000..73d2bc6b5 --- /dev/null +++ b/src/IconSocialDistanceOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSocialDistanceOutlinedFilled as default } diff --git a/src/IconSocialDistanceRoundedFilled.tsx b/src/IconSocialDistanceRoundedFilled.tsx new file mode 100644 index 000000000..9a679fec8 --- /dev/null +++ b/src/IconSocialDistanceRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSocialDistanceRoundedFilled as default } diff --git a/src/IconSocialDistanceSharpFilled.tsx b/src/IconSocialDistanceSharpFilled.tsx new file mode 100644 index 000000000..6543add75 --- /dev/null +++ b/src/IconSocialDistanceSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialDistanceSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSocialDistanceSharpFilled as default } diff --git a/src/IconSocialLeaderboardOutlinedFilled.tsx b/src/IconSocialLeaderboardOutlinedFilled.tsx new file mode 100644 index 000000000..0adfb4906 --- /dev/null +++ b/src/IconSocialLeaderboardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialLeaderboardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSocialLeaderboardOutlinedFilled as default } diff --git a/src/IconSocialLeaderboardRoundedFilled.tsx b/src/IconSocialLeaderboardRoundedFilled.tsx new file mode 100644 index 000000000..d03fe8251 --- /dev/null +++ b/src/IconSocialLeaderboardRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialLeaderboardRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSocialLeaderboardRoundedFilled as default } diff --git a/src/IconSocialLeaderboardSharpFilled.tsx b/src/IconSocialLeaderboardSharpFilled.tsx new file mode 100644 index 000000000..2a3a86bac --- /dev/null +++ b/src/IconSocialLeaderboardSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSocialLeaderboardSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSocialLeaderboardSharpFilled as default } diff --git a/src/IconSolarPowerOutlinedFilled.tsx b/src/IconSolarPowerOutlinedFilled.tsx new file mode 100644 index 000000000..636140619 --- /dev/null +++ b/src/IconSolarPowerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSolarPowerOutlinedFilled as default } diff --git a/src/IconSolarPowerRoundedFilled.tsx b/src/IconSolarPowerRoundedFilled.tsx new file mode 100644 index 000000000..65ecf8ab0 --- /dev/null +++ b/src/IconSolarPowerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSolarPowerRoundedFilled as default } diff --git a/src/IconSolarPowerSharpFilled.tsx b/src/IconSolarPowerSharpFilled.tsx new file mode 100644 index 000000000..1e5dd77ed --- /dev/null +++ b/src/IconSolarPowerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSolarPowerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSolarPowerSharpFilled as default } diff --git a/src/IconSortByAlphaOutlinedFilled.tsx b/src/IconSortByAlphaOutlinedFilled.tsx new file mode 100644 index 000000000..b2c25c034 --- /dev/null +++ b/src/IconSortByAlphaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortByAlphaOutlinedFilled as default } diff --git a/src/IconSortByAlphaRoundedFilled.tsx b/src/IconSortByAlphaRoundedFilled.tsx new file mode 100644 index 000000000..c0f0fd33f --- /dev/null +++ b/src/IconSortByAlphaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortByAlphaRoundedFilled as default } diff --git a/src/IconSortByAlphaSharpFilled.tsx b/src/IconSortByAlphaSharpFilled.tsx new file mode 100644 index 000000000..aad00299a --- /dev/null +++ b/src/IconSortByAlphaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortByAlphaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortByAlphaSharpFilled as default } diff --git a/src/IconSortOutlinedFilled.tsx b/src/IconSortOutlinedFilled.tsx new file mode 100644 index 000000000..ac4cc8816 --- /dev/null +++ b/src/IconSortOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortOutlinedFilled as default } diff --git a/src/IconSortRoundedFilled.tsx b/src/IconSortRoundedFilled.tsx new file mode 100644 index 000000000..d6268f333 --- /dev/null +++ b/src/IconSortRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortRoundedFilled as default } diff --git a/src/IconSortSharpFilled.tsx b/src/IconSortSharpFilled.tsx new file mode 100644 index 000000000..b9d3ca843 --- /dev/null +++ b/src/IconSortSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSortSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSortSharpFilled as default } diff --git a/src/IconSosOutlinedFilled.tsx b/src/IconSosOutlinedFilled.tsx new file mode 100644 index 000000000..1b93b4ad7 --- /dev/null +++ b/src/IconSosOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSosOutlinedFilled as default } diff --git a/src/IconSosRoundedFilled.tsx b/src/IconSosRoundedFilled.tsx new file mode 100644 index 000000000..2ae20fb38 --- /dev/null +++ b/src/IconSosRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSosRoundedFilled as default } diff --git a/src/IconSosSharpFilled.tsx b/src/IconSosSharpFilled.tsx new file mode 100644 index 000000000..aaed73def --- /dev/null +++ b/src/IconSosSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSosSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSosSharpFilled as default } diff --git a/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx b/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx new file mode 100644 index 000000000..6a34eb461 --- /dev/null +++ b/src/IconSoundDetectionDogBarkingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionDogBarkingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionDogBarkingOutlinedFilled as default } diff --git a/src/IconSoundDetectionDogBarkingRoundedFilled.tsx b/src/IconSoundDetectionDogBarkingRoundedFilled.tsx new file mode 100644 index 000000000..af66a30b5 --- /dev/null +++ b/src/IconSoundDetectionDogBarkingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionDogBarkingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionDogBarkingRoundedFilled as default } diff --git a/src/IconSoundDetectionDogBarkingSharpFilled.tsx b/src/IconSoundDetectionDogBarkingSharpFilled.tsx new file mode 100644 index 000000000..0f64e1ff6 --- /dev/null +++ b/src/IconSoundDetectionDogBarkingSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionDogBarkingSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionDogBarkingSharpFilled as default } diff --git a/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx b/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx new file mode 100644 index 000000000..e5c147cb2 --- /dev/null +++ b/src/IconSoundDetectionGlassBreakOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionGlassBreakOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionGlassBreakOutlinedFilled as default } diff --git a/src/IconSoundDetectionGlassBreakRoundedFilled.tsx b/src/IconSoundDetectionGlassBreakRoundedFilled.tsx new file mode 100644 index 000000000..2d423428c --- /dev/null +++ b/src/IconSoundDetectionGlassBreakRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionGlassBreakRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionGlassBreakRoundedFilled as default } diff --git a/src/IconSoundDetectionGlassBreakSharpFilled.tsx b/src/IconSoundDetectionGlassBreakSharpFilled.tsx new file mode 100644 index 000000000..9eed2bcac --- /dev/null +++ b/src/IconSoundDetectionGlassBreakSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionGlassBreakSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionGlassBreakSharpFilled as default } diff --git a/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx b/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx new file mode 100644 index 000000000..2e041b57d --- /dev/null +++ b/src/IconSoundDetectionLoudSoundOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionLoudSoundOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionLoudSoundOutlinedFilled as default } diff --git a/src/IconSoundDetectionLoudSoundRoundedFilled.tsx b/src/IconSoundDetectionLoudSoundRoundedFilled.tsx new file mode 100644 index 000000000..d76f69d1f --- /dev/null +++ b/src/IconSoundDetectionLoudSoundRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionLoudSoundRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionLoudSoundRoundedFilled as default } diff --git a/src/IconSoundDetectionLoudSoundSharpFilled.tsx b/src/IconSoundDetectionLoudSoundSharpFilled.tsx new file mode 100644 index 000000000..1811d0dd0 --- /dev/null +++ b/src/IconSoundDetectionLoudSoundSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundDetectionLoudSoundSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundDetectionLoudSoundSharpFilled as default } diff --git a/src/IconSoundSamplerOutlinedFilled.tsx b/src/IconSoundSamplerOutlinedFilled.tsx new file mode 100644 index 000000000..8395875d8 --- /dev/null +++ b/src/IconSoundSamplerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundSamplerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundSamplerOutlinedFilled as default } diff --git a/src/IconSoundSamplerRoundedFilled.tsx b/src/IconSoundSamplerRoundedFilled.tsx new file mode 100644 index 000000000..d96661b95 --- /dev/null +++ b/src/IconSoundSamplerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundSamplerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundSamplerRoundedFilled as default } diff --git a/src/IconSoundSamplerSharpFilled.tsx b/src/IconSoundSamplerSharpFilled.tsx new file mode 100644 index 000000000..c159d323d --- /dev/null +++ b/src/IconSoundSamplerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoundSamplerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoundSamplerSharpFilled as default } diff --git a/src/IconSoupKitchenOutlinedFilled.tsx b/src/IconSoupKitchenOutlinedFilled.tsx new file mode 100644 index 000000000..9835314aa --- /dev/null +++ b/src/IconSoupKitchenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoupKitchenOutlinedFilled as default } diff --git a/src/IconSoupKitchenRoundedFilled.tsx b/src/IconSoupKitchenRoundedFilled.tsx new file mode 100644 index 000000000..45c326ebe --- /dev/null +++ b/src/IconSoupKitchenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoupKitchenRoundedFilled as default } diff --git a/src/IconSoupKitchenSharpFilled.tsx b/src/IconSoupKitchenSharpFilled.tsx new file mode 100644 index 000000000..9ed9098f5 --- /dev/null +++ b/src/IconSoupKitchenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSoupKitchenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSoupKitchenSharpFilled as default } diff --git a/src/IconSourceEnvironmentOutlinedFilled.tsx b/src/IconSourceEnvironmentOutlinedFilled.tsx new file mode 100644 index 000000000..206f676a0 --- /dev/null +++ b/src/IconSourceEnvironmentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceEnvironmentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSourceEnvironmentOutlinedFilled as default } diff --git a/src/IconSourceEnvironmentRoundedFilled.tsx b/src/IconSourceEnvironmentRoundedFilled.tsx new file mode 100644 index 000000000..66e3cd60a --- /dev/null +++ b/src/IconSourceEnvironmentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceEnvironmentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSourceEnvironmentRoundedFilled as default } diff --git a/src/IconSourceEnvironmentSharpFilled.tsx b/src/IconSourceEnvironmentSharpFilled.tsx new file mode 100644 index 000000000..e22a6a77c --- /dev/null +++ b/src/IconSourceEnvironmentSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceEnvironmentSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSourceEnvironmentSharpFilled as default } diff --git a/src/IconSourceNotesOutlinedFilled.tsx b/src/IconSourceNotesOutlinedFilled.tsx new file mode 100644 index 000000000..06018b869 --- /dev/null +++ b/src/IconSourceNotesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceNotesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSourceNotesOutlinedFilled as default } diff --git a/src/IconSourceNotesRoundedFilled.tsx b/src/IconSourceNotesRoundedFilled.tsx new file mode 100644 index 000000000..6ded9ec35 --- /dev/null +++ b/src/IconSourceNotesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceNotesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSourceNotesRoundedFilled as default } diff --git a/src/IconSourceNotesSharpFilled.tsx b/src/IconSourceNotesSharpFilled.tsx new file mode 100644 index 000000000..a97abf9e7 --- /dev/null +++ b/src/IconSourceNotesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSourceNotesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSourceNotesSharpFilled as default } diff --git a/src/IconSouthAmericaOutlinedFilled.tsx b/src/IconSouthAmericaOutlinedFilled.tsx new file mode 100644 index 000000000..8d70316d6 --- /dev/null +++ b/src/IconSouthAmericaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthAmericaOutlinedFilled as default } diff --git a/src/IconSouthAmericaRoundedFilled.tsx b/src/IconSouthAmericaRoundedFilled.tsx new file mode 100644 index 000000000..c37bfddbe --- /dev/null +++ b/src/IconSouthAmericaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthAmericaRoundedFilled as default } diff --git a/src/IconSouthAmericaSharpFilled.tsx b/src/IconSouthAmericaSharpFilled.tsx new file mode 100644 index 000000000..583b2c375 --- /dev/null +++ b/src/IconSouthAmericaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthAmericaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthAmericaSharpFilled as default } diff --git a/src/IconSouthEastOutlinedFilled.tsx b/src/IconSouthEastOutlinedFilled.tsx new file mode 100644 index 000000000..f1992270c --- /dev/null +++ b/src/IconSouthEastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthEastOutlinedFilled as default } diff --git a/src/IconSouthEastRoundedFilled.tsx b/src/IconSouthEastRoundedFilled.tsx new file mode 100644 index 000000000..9471e2399 --- /dev/null +++ b/src/IconSouthEastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthEastRoundedFilled as default } diff --git a/src/IconSouthEastSharpFilled.tsx b/src/IconSouthEastSharpFilled.tsx new file mode 100644 index 000000000..d81764fd2 --- /dev/null +++ b/src/IconSouthEastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthEastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthEastSharpFilled as default } diff --git a/src/IconSouthOutlinedFilled.tsx b/src/IconSouthOutlinedFilled.tsx new file mode 100644 index 000000000..552e5c98c --- /dev/null +++ b/src/IconSouthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthOutlinedFilled as default } diff --git a/src/IconSouthRoundedFilled.tsx b/src/IconSouthRoundedFilled.tsx new file mode 100644 index 000000000..aa0f67411 --- /dev/null +++ b/src/IconSouthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthRoundedFilled as default } diff --git a/src/IconSouthSharpFilled.tsx b/src/IconSouthSharpFilled.tsx new file mode 100644 index 000000000..b57336cd7 --- /dev/null +++ b/src/IconSouthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthSharpFilled as default } diff --git a/src/IconSouthWestOutlinedFilled.tsx b/src/IconSouthWestOutlinedFilled.tsx new file mode 100644 index 000000000..20c3f5d46 --- /dev/null +++ b/src/IconSouthWestOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthWestOutlinedFilled as default } diff --git a/src/IconSouthWestRoundedFilled.tsx b/src/IconSouthWestRoundedFilled.tsx new file mode 100644 index 000000000..c1b9588e9 --- /dev/null +++ b/src/IconSouthWestRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthWestRoundedFilled as default } diff --git a/src/IconSouthWestSharpFilled.tsx b/src/IconSouthWestSharpFilled.tsx new file mode 100644 index 000000000..8038cf2c0 --- /dev/null +++ b/src/IconSouthWestSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSouthWestSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSouthWestSharpFilled as default } diff --git a/src/IconSpaOutlinedFilled.tsx b/src/IconSpaOutlinedFilled.tsx new file mode 100644 index 000000000..468ee0c91 --- /dev/null +++ b/src/IconSpaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaOutlinedFilled as default } diff --git a/src/IconSpaRoundedFilled.tsx b/src/IconSpaRoundedFilled.tsx new file mode 100644 index 000000000..5209a15aa --- /dev/null +++ b/src/IconSpaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaRoundedFilled as default } diff --git a/src/IconSpaSharpFilled.tsx b/src/IconSpaSharpFilled.tsx new file mode 100644 index 000000000..d22e37fef --- /dev/null +++ b/src/IconSpaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaSharpFilled as default } diff --git a/src/IconSpaceBarOutlinedFilled.tsx b/src/IconSpaceBarOutlinedFilled.tsx new file mode 100644 index 000000000..bd5a38c3a --- /dev/null +++ b/src/IconSpaceBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceBarOutlinedFilled as default } diff --git a/src/IconSpaceBarRoundedFilled.tsx b/src/IconSpaceBarRoundedFilled.tsx new file mode 100644 index 000000000..49fc2e923 --- /dev/null +++ b/src/IconSpaceBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceBarRoundedFilled as default } diff --git a/src/IconSpaceBarSharpFilled.tsx b/src/IconSpaceBarSharpFilled.tsx new file mode 100644 index 000000000..06621f8ef --- /dev/null +++ b/src/IconSpaceBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceBarSharpFilled as default } diff --git a/src/IconSpaceDashboardOutlinedFilled.tsx b/src/IconSpaceDashboardOutlinedFilled.tsx new file mode 100644 index 000000000..2887d94fc --- /dev/null +++ b/src/IconSpaceDashboardOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceDashboardOutlinedFilled as default } diff --git a/src/IconSpaceDashboardRoundedFilled.tsx b/src/IconSpaceDashboardRoundedFilled.tsx new file mode 100644 index 000000000..7f69d56fa --- /dev/null +++ b/src/IconSpaceDashboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceDashboardRoundedFilled as default } diff --git a/src/IconSpaceDashboardSharpFilled.tsx b/src/IconSpaceDashboardSharpFilled.tsx new file mode 100644 index 000000000..e85ef809d --- /dev/null +++ b/src/IconSpaceDashboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpaceDashboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpaceDashboardSharpFilled as default } diff --git a/src/IconSpatialAudioOffOutlinedFilled.tsx b/src/IconSpatialAudioOffOutlinedFilled.tsx new file mode 100644 index 000000000..7697ab320 --- /dev/null +++ b/src/IconSpatialAudioOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialAudioOffOutlinedFilled as default } diff --git a/src/IconSpatialAudioOffRoundedFilled.tsx b/src/IconSpatialAudioOffRoundedFilled.tsx new file mode 100644 index 000000000..431c48629 --- /dev/null +++ b/src/IconSpatialAudioOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialAudioOffRoundedFilled as default } diff --git a/src/IconSpatialAudioOffSharpFilled.tsx b/src/IconSpatialAudioOffSharpFilled.tsx new file mode 100644 index 000000000..8ca104b58 --- /dev/null +++ b/src/IconSpatialAudioOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialAudioOffSharpFilled as default } diff --git a/src/IconSpatialAudioOutlinedFilled.tsx b/src/IconSpatialAudioOutlinedFilled.tsx new file mode 100644 index 000000000..4c6181a55 --- /dev/null +++ b/src/IconSpatialAudioOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialAudioOutlinedFilled as default } diff --git a/src/IconSpatialAudioRoundedFilled.tsx b/src/IconSpatialAudioRoundedFilled.tsx new file mode 100644 index 000000000..3f5b133e4 --- /dev/null +++ b/src/IconSpatialAudioRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialAudioRoundedFilled as default } diff --git a/src/IconSpatialAudioSharpFilled.tsx b/src/IconSpatialAudioSharpFilled.tsx new file mode 100644 index 000000000..5d32b7450 --- /dev/null +++ b/src/IconSpatialAudioSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialAudioSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialAudioSharpFilled as default } diff --git a/src/IconSpatialSpeakerOutlinedFilled.tsx b/src/IconSpatialSpeakerOutlinedFilled.tsx new file mode 100644 index 000000000..3e535a223 --- /dev/null +++ b/src/IconSpatialSpeakerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialSpeakerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialSpeakerOutlinedFilled as default } diff --git a/src/IconSpatialSpeakerRoundedFilled.tsx b/src/IconSpatialSpeakerRoundedFilled.tsx new file mode 100644 index 000000000..1a019040b --- /dev/null +++ b/src/IconSpatialSpeakerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialSpeakerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialSpeakerRoundedFilled as default } diff --git a/src/IconSpatialSpeakerSharpFilled.tsx b/src/IconSpatialSpeakerSharpFilled.tsx new file mode 100644 index 000000000..dde2c768b --- /dev/null +++ b/src/IconSpatialSpeakerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialSpeakerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialSpeakerSharpFilled as default } diff --git a/src/IconSpatialTrackingOutlinedFilled.tsx b/src/IconSpatialTrackingOutlinedFilled.tsx new file mode 100644 index 000000000..158ed8972 --- /dev/null +++ b/src/IconSpatialTrackingOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialTrackingOutlinedFilled as default } diff --git a/src/IconSpatialTrackingRoundedFilled.tsx b/src/IconSpatialTrackingRoundedFilled.tsx new file mode 100644 index 000000000..332ac7a0f --- /dev/null +++ b/src/IconSpatialTrackingRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialTrackingRoundedFilled as default } diff --git a/src/IconSpatialTrackingSharpFilled.tsx b/src/IconSpatialTrackingSharpFilled.tsx new file mode 100644 index 000000000..ba4159e2e --- /dev/null +++ b/src/IconSpatialTrackingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpatialTrackingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpatialTrackingSharpFilled as default } diff --git a/src/IconSpeakerGroupOutlinedFilled.tsx b/src/IconSpeakerGroupOutlinedFilled.tsx new file mode 100644 index 000000000..27b29ff1a --- /dev/null +++ b/src/IconSpeakerGroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerGroupOutlinedFilled as default } diff --git a/src/IconSpeakerGroupRoundedFilled.tsx b/src/IconSpeakerGroupRoundedFilled.tsx new file mode 100644 index 000000000..9814eed14 --- /dev/null +++ b/src/IconSpeakerGroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerGroupRoundedFilled as default } diff --git a/src/IconSpeakerGroupSharpFilled.tsx b/src/IconSpeakerGroupSharpFilled.tsx new file mode 100644 index 000000000..627b9a918 --- /dev/null +++ b/src/IconSpeakerGroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerGroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerGroupSharpFilled as default } diff --git a/src/IconSpeakerNotesOffOutlinedFilled.tsx b/src/IconSpeakerNotesOffOutlinedFilled.tsx new file mode 100644 index 000000000..753ff892c --- /dev/null +++ b/src/IconSpeakerNotesOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerNotesOffOutlinedFilled as default } diff --git a/src/IconSpeakerNotesOffRoundedFilled.tsx b/src/IconSpeakerNotesOffRoundedFilled.tsx new file mode 100644 index 000000000..94916ebe9 --- /dev/null +++ b/src/IconSpeakerNotesOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerNotesOffRoundedFilled as default } diff --git a/src/IconSpeakerNotesOffSharpFilled.tsx b/src/IconSpeakerNotesOffSharpFilled.tsx new file mode 100644 index 000000000..8aa20b344 --- /dev/null +++ b/src/IconSpeakerNotesOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerNotesOffSharpFilled as default } diff --git a/src/IconSpeakerNotesOutlinedFilled.tsx b/src/IconSpeakerNotesOutlinedFilled.tsx new file mode 100644 index 000000000..a116e6d34 --- /dev/null +++ b/src/IconSpeakerNotesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerNotesOutlinedFilled as default } diff --git a/src/IconSpeakerNotesRoundedFilled.tsx b/src/IconSpeakerNotesRoundedFilled.tsx new file mode 100644 index 000000000..6d2777beb --- /dev/null +++ b/src/IconSpeakerNotesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerNotesRoundedFilled as default } diff --git a/src/IconSpeakerNotesSharpFilled.tsx b/src/IconSpeakerNotesSharpFilled.tsx new file mode 100644 index 000000000..c9c3f0f9e --- /dev/null +++ b/src/IconSpeakerNotesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerNotesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerNotesSharpFilled as default } diff --git a/src/IconSpeakerOutlinedFilled.tsx b/src/IconSpeakerOutlinedFilled.tsx new file mode 100644 index 000000000..4f7d16af7 --- /dev/null +++ b/src/IconSpeakerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerOutlinedFilled as default } diff --git a/src/IconSpeakerPhoneOutlinedFilled.tsx b/src/IconSpeakerPhoneOutlinedFilled.tsx new file mode 100644 index 000000000..e4ffb6518 --- /dev/null +++ b/src/IconSpeakerPhoneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerPhoneOutlinedFilled as default } diff --git a/src/IconSpeakerPhoneRoundedFilled.tsx b/src/IconSpeakerPhoneRoundedFilled.tsx new file mode 100644 index 000000000..6e1707d2f --- /dev/null +++ b/src/IconSpeakerPhoneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerPhoneRoundedFilled as default } diff --git a/src/IconSpeakerPhoneSharpFilled.tsx b/src/IconSpeakerPhoneSharpFilled.tsx new file mode 100644 index 000000000..31881e2ae --- /dev/null +++ b/src/IconSpeakerPhoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerPhoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerPhoneSharpFilled as default } diff --git a/src/IconSpeakerRoundedFilled.tsx b/src/IconSpeakerRoundedFilled.tsx new file mode 100644 index 000000000..2036e9b4a --- /dev/null +++ b/src/IconSpeakerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerRoundedFilled as default } diff --git a/src/IconSpeakerSharpFilled.tsx b/src/IconSpeakerSharpFilled.tsx new file mode 100644 index 000000000..6ba47c1ba --- /dev/null +++ b/src/IconSpeakerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeakerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeakerSharpFilled as default } diff --git a/src/IconSpecialCharacterOutlinedFilled.tsx b/src/IconSpecialCharacterOutlinedFilled.tsx new file mode 100644 index 000000000..f945daee5 --- /dev/null +++ b/src/IconSpecialCharacterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpecialCharacterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpecialCharacterOutlinedFilled as default } diff --git a/src/IconSpecialCharacterRoundedFilled.tsx b/src/IconSpecialCharacterRoundedFilled.tsx new file mode 100644 index 000000000..6144a5fdf --- /dev/null +++ b/src/IconSpecialCharacterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpecialCharacterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpecialCharacterRoundedFilled as default } diff --git a/src/IconSpecialCharacterSharpFilled.tsx b/src/IconSpecialCharacterSharpFilled.tsx new file mode 100644 index 000000000..19e634456 --- /dev/null +++ b/src/IconSpecialCharacterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpecialCharacterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpecialCharacterSharpFilled as default } diff --git a/src/IconSpecificGravityOutlinedFilled.tsx b/src/IconSpecificGravityOutlinedFilled.tsx new file mode 100644 index 000000000..4050f5255 --- /dev/null +++ b/src/IconSpecificGravityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpecificGravityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpecificGravityOutlinedFilled as default } diff --git a/src/IconSpecificGravityRoundedFilled.tsx b/src/IconSpecificGravityRoundedFilled.tsx new file mode 100644 index 000000000..79bb79012 --- /dev/null +++ b/src/IconSpecificGravityRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpecificGravityRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSpecificGravityRoundedFilled as default } diff --git a/src/IconSpecificGravitySharpFilled.tsx b/src/IconSpecificGravitySharpFilled.tsx new file mode 100644 index 000000000..0a9162c07 --- /dev/null +++ b/src/IconSpecificGravitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpecificGravitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpecificGravitySharpFilled as default } diff --git a/src/IconSpeechToTextOutlinedFilled.tsx b/src/IconSpeechToTextOutlinedFilled.tsx new file mode 100644 index 000000000..d44d437c4 --- /dev/null +++ b/src/IconSpeechToTextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeechToTextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeechToTextOutlinedFilled as default } diff --git a/src/IconSpeechToTextRoundedFilled.tsx b/src/IconSpeechToTextRoundedFilled.tsx new file mode 100644 index 000000000..6ff666d61 --- /dev/null +++ b/src/IconSpeechToTextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeechToTextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeechToTextRoundedFilled as default } diff --git a/src/IconSpeechToTextSharpFilled.tsx b/src/IconSpeechToTextSharpFilled.tsx new file mode 100644 index 000000000..f7e99928e --- /dev/null +++ b/src/IconSpeechToTextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeechToTextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeechToTextSharpFilled as default } diff --git a/src/IconSpeed025OutlinedFilled.tsx b/src/IconSpeed025OutlinedFilled.tsx new file mode 100644 index 000000000..36bc96b78 --- /dev/null +++ b/src/IconSpeed025OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed025OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed025OutlinedFilled as default } diff --git a/src/IconSpeed025RoundedFilled.tsx b/src/IconSpeed025RoundedFilled.tsx new file mode 100644 index 000000000..16a3d1e68 --- /dev/null +++ b/src/IconSpeed025RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed025RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed025RoundedFilled as default } diff --git a/src/IconSpeed025SharpFilled.tsx b/src/IconSpeed025SharpFilled.tsx new file mode 100644 index 000000000..eeda2cc06 --- /dev/null +++ b/src/IconSpeed025SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed025SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed025SharpFilled as default } diff --git a/src/IconSpeed02xOutlinedFilled.tsx b/src/IconSpeed02xOutlinedFilled.tsx new file mode 100644 index 000000000..f27d574c3 --- /dev/null +++ b/src/IconSpeed02xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed02xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed02xOutlinedFilled as default } diff --git a/src/IconSpeed02xRoundedFilled.tsx b/src/IconSpeed02xRoundedFilled.tsx new file mode 100644 index 000000000..304b1208b --- /dev/null +++ b/src/IconSpeed02xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed02xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed02xRoundedFilled as default } diff --git a/src/IconSpeed02xSharpFilled.tsx b/src/IconSpeed02xSharpFilled.tsx new file mode 100644 index 000000000..3de193d3e --- /dev/null +++ b/src/IconSpeed02xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed02xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed02xSharpFilled as default } diff --git a/src/IconSpeed05OutlinedFilled.tsx b/src/IconSpeed05OutlinedFilled.tsx new file mode 100644 index 000000000..2ff059a14 --- /dev/null +++ b/src/IconSpeed05OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed05OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed05OutlinedFilled as default } diff --git a/src/IconSpeed05RoundedFilled.tsx b/src/IconSpeed05RoundedFilled.tsx new file mode 100644 index 000000000..659296b88 --- /dev/null +++ b/src/IconSpeed05RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed05RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed05RoundedFilled as default } diff --git a/src/IconSpeed05SharpFilled.tsx b/src/IconSpeed05SharpFilled.tsx new file mode 100644 index 000000000..97e417613 --- /dev/null +++ b/src/IconSpeed05SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed05SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed05SharpFilled as default } diff --git a/src/IconSpeed05xOutlinedFilled.tsx b/src/IconSpeed05xOutlinedFilled.tsx new file mode 100644 index 000000000..f2e467d3b --- /dev/null +++ b/src/IconSpeed05xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed05xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed05xOutlinedFilled as default } diff --git a/src/IconSpeed05xRoundedFilled.tsx b/src/IconSpeed05xRoundedFilled.tsx new file mode 100644 index 000000000..43313927b --- /dev/null +++ b/src/IconSpeed05xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed05xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed05xRoundedFilled as default } diff --git a/src/IconSpeed05xSharpFilled.tsx b/src/IconSpeed05xSharpFilled.tsx new file mode 100644 index 000000000..371634819 --- /dev/null +++ b/src/IconSpeed05xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed05xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed05xSharpFilled as default } diff --git a/src/IconSpeed075OutlinedFilled.tsx b/src/IconSpeed075OutlinedFilled.tsx new file mode 100644 index 000000000..28763c262 --- /dev/null +++ b/src/IconSpeed075OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed075OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed075OutlinedFilled as default } diff --git a/src/IconSpeed075RoundedFilled.tsx b/src/IconSpeed075RoundedFilled.tsx new file mode 100644 index 000000000..4cd6b796b --- /dev/null +++ b/src/IconSpeed075RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed075RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed075RoundedFilled as default } diff --git a/src/IconSpeed075SharpFilled.tsx b/src/IconSpeed075SharpFilled.tsx new file mode 100644 index 000000000..aee106a87 --- /dev/null +++ b/src/IconSpeed075SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed075SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed075SharpFilled as default } diff --git a/src/IconSpeed07xOutlinedFilled.tsx b/src/IconSpeed07xOutlinedFilled.tsx new file mode 100644 index 000000000..e14f8ee18 --- /dev/null +++ b/src/IconSpeed07xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed07xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed07xOutlinedFilled as default } diff --git a/src/IconSpeed07xRoundedFilled.tsx b/src/IconSpeed07xRoundedFilled.tsx new file mode 100644 index 000000000..ba2a546e4 --- /dev/null +++ b/src/IconSpeed07xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed07xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed07xRoundedFilled as default } diff --git a/src/IconSpeed07xSharpFilled.tsx b/src/IconSpeed07xSharpFilled.tsx new file mode 100644 index 000000000..79e6802e1 --- /dev/null +++ b/src/IconSpeed07xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed07xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed07xSharpFilled as default } diff --git a/src/IconSpeed125OutlinedFilled.tsx b/src/IconSpeed125OutlinedFilled.tsx new file mode 100644 index 000000000..7ba14497d --- /dev/null +++ b/src/IconSpeed125OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed125OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed125OutlinedFilled as default } diff --git a/src/IconSpeed125RoundedFilled.tsx b/src/IconSpeed125RoundedFilled.tsx new file mode 100644 index 000000000..263911553 --- /dev/null +++ b/src/IconSpeed125RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed125RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed125RoundedFilled as default } diff --git a/src/IconSpeed125SharpFilled.tsx b/src/IconSpeed125SharpFilled.tsx new file mode 100644 index 000000000..8ea18b27a --- /dev/null +++ b/src/IconSpeed125SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed125SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed125SharpFilled as default } diff --git a/src/IconSpeed12OutlinedFilled.tsx b/src/IconSpeed12OutlinedFilled.tsx new file mode 100644 index 000000000..c35cb4565 --- /dev/null +++ b/src/IconSpeed12OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed12OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed12OutlinedFilled as default } diff --git a/src/IconSpeed12RoundedFilled.tsx b/src/IconSpeed12RoundedFilled.tsx new file mode 100644 index 000000000..58c351a57 --- /dev/null +++ b/src/IconSpeed12RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed12RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed12RoundedFilled as default } diff --git a/src/IconSpeed12SharpFilled.tsx b/src/IconSpeed12SharpFilled.tsx new file mode 100644 index 000000000..ef9018180 --- /dev/null +++ b/src/IconSpeed12SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed12SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed12SharpFilled as default } diff --git a/src/IconSpeed12xOutlinedFilled.tsx b/src/IconSpeed12xOutlinedFilled.tsx new file mode 100644 index 000000000..064094a89 --- /dev/null +++ b/src/IconSpeed12xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed12xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed12xOutlinedFilled as default } diff --git a/src/IconSpeed12xRoundedFilled.tsx b/src/IconSpeed12xRoundedFilled.tsx new file mode 100644 index 000000000..323f8d46b --- /dev/null +++ b/src/IconSpeed12xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed12xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed12xRoundedFilled as default } diff --git a/src/IconSpeed12xSharpFilled.tsx b/src/IconSpeed12xSharpFilled.tsx new file mode 100644 index 000000000..5196cc497 --- /dev/null +++ b/src/IconSpeed12xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed12xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed12xSharpFilled as default } diff --git a/src/IconSpeed15OutlinedFilled.tsx b/src/IconSpeed15OutlinedFilled.tsx new file mode 100644 index 000000000..8f7454fdb --- /dev/null +++ b/src/IconSpeed15OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed15OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed15OutlinedFilled as default } diff --git a/src/IconSpeed15RoundedFilled.tsx b/src/IconSpeed15RoundedFilled.tsx new file mode 100644 index 000000000..d49aa6cd7 --- /dev/null +++ b/src/IconSpeed15RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed15RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed15RoundedFilled as default } diff --git a/src/IconSpeed15SharpFilled.tsx b/src/IconSpeed15SharpFilled.tsx new file mode 100644 index 000000000..ac85a1589 --- /dev/null +++ b/src/IconSpeed15SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed15SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed15SharpFilled as default } diff --git a/src/IconSpeed15xOutlinedFilled.tsx b/src/IconSpeed15xOutlinedFilled.tsx new file mode 100644 index 000000000..98573338f --- /dev/null +++ b/src/IconSpeed15xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed15xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed15xOutlinedFilled as default } diff --git a/src/IconSpeed15xRoundedFilled.tsx b/src/IconSpeed15xRoundedFilled.tsx new file mode 100644 index 000000000..4a81aab47 --- /dev/null +++ b/src/IconSpeed15xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed15xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed15xRoundedFilled as default } diff --git a/src/IconSpeed15xSharpFilled.tsx b/src/IconSpeed15xSharpFilled.tsx new file mode 100644 index 000000000..505bf83e4 --- /dev/null +++ b/src/IconSpeed15xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed15xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed15xSharpFilled as default } diff --git a/src/IconSpeed175OutlinedFilled.tsx b/src/IconSpeed175OutlinedFilled.tsx new file mode 100644 index 000000000..9a35b10c9 --- /dev/null +++ b/src/IconSpeed175OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed175OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed175OutlinedFilled as default } diff --git a/src/IconSpeed175RoundedFilled.tsx b/src/IconSpeed175RoundedFilled.tsx new file mode 100644 index 000000000..c4dffd1d4 --- /dev/null +++ b/src/IconSpeed175RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed175RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed175RoundedFilled as default } diff --git a/src/IconSpeed175SharpFilled.tsx b/src/IconSpeed175SharpFilled.tsx new file mode 100644 index 000000000..deb322cbf --- /dev/null +++ b/src/IconSpeed175SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed175SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed175SharpFilled as default } diff --git a/src/IconSpeed17xOutlinedFilled.tsx b/src/IconSpeed17xOutlinedFilled.tsx new file mode 100644 index 000000000..dbad4e826 --- /dev/null +++ b/src/IconSpeed17xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed17xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed17xOutlinedFilled as default } diff --git a/src/IconSpeed17xRoundedFilled.tsx b/src/IconSpeed17xRoundedFilled.tsx new file mode 100644 index 000000000..0667f0e82 --- /dev/null +++ b/src/IconSpeed17xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed17xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed17xRoundedFilled as default } diff --git a/src/IconSpeed17xSharpFilled.tsx b/src/IconSpeed17xSharpFilled.tsx new file mode 100644 index 000000000..184daf728 --- /dev/null +++ b/src/IconSpeed17xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed17xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed17xSharpFilled as default } diff --git a/src/IconSpeed2xOutlinedFilled.tsx b/src/IconSpeed2xOutlinedFilled.tsx new file mode 100644 index 000000000..3889c64e9 --- /dev/null +++ b/src/IconSpeed2xOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed2xOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed2xOutlinedFilled as default } diff --git a/src/IconSpeed2xRoundedFilled.tsx b/src/IconSpeed2xRoundedFilled.tsx new file mode 100644 index 000000000..a8aeddc6b --- /dev/null +++ b/src/IconSpeed2xRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed2xRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed2xRoundedFilled as default } diff --git a/src/IconSpeed2xSharpFilled.tsx b/src/IconSpeed2xSharpFilled.tsx new file mode 100644 index 000000000..850e36a73 --- /dev/null +++ b/src/IconSpeed2xSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeed2xSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeed2xSharpFilled as default } diff --git a/src/IconSpeedCameraOutlinedFilled.tsx b/src/IconSpeedCameraOutlinedFilled.tsx new file mode 100644 index 000000000..29a7ae6c6 --- /dev/null +++ b/src/IconSpeedCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeedCameraOutlinedFilled as default } diff --git a/src/IconSpeedCameraRoundedFilled.tsx b/src/IconSpeedCameraRoundedFilled.tsx new file mode 100644 index 000000000..9197ad75a --- /dev/null +++ b/src/IconSpeedCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeedCameraRoundedFilled as default } diff --git a/src/IconSpeedCameraSharpFilled.tsx b/src/IconSpeedCameraSharpFilled.tsx new file mode 100644 index 000000000..836aeab20 --- /dev/null +++ b/src/IconSpeedCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeedCameraSharpFilled as default } diff --git a/src/IconSpeedOutlinedFilled.tsx b/src/IconSpeedOutlinedFilled.tsx new file mode 100644 index 000000000..2f72b7cae --- /dev/null +++ b/src/IconSpeedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeedOutlinedFilled as default } diff --git a/src/IconSpeedRoundedFilled.tsx b/src/IconSpeedRoundedFilled.tsx new file mode 100644 index 000000000..7acdbe443 --- /dev/null +++ b/src/IconSpeedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeedRoundedFilled as default } diff --git a/src/IconSpeedSharpFilled.tsx b/src/IconSpeedSharpFilled.tsx new file mode 100644 index 000000000..f22340984 --- /dev/null +++ b/src/IconSpeedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpeedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpeedSharpFilled as default } diff --git a/src/IconSpellcheckOutlinedFilled.tsx b/src/IconSpellcheckOutlinedFilled.tsx new file mode 100644 index 000000000..2987d60a1 --- /dev/null +++ b/src/IconSpellcheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpellcheckOutlinedFilled as default } diff --git a/src/IconSpellcheckRoundedFilled.tsx b/src/IconSpellcheckRoundedFilled.tsx new file mode 100644 index 000000000..02afcc99b --- /dev/null +++ b/src/IconSpellcheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpellcheckRoundedFilled as default } diff --git a/src/IconSpellcheckSharpFilled.tsx b/src/IconSpellcheckSharpFilled.tsx new file mode 100644 index 000000000..e03172b76 --- /dev/null +++ b/src/IconSpellcheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpellcheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpellcheckSharpFilled as default } diff --git a/src/IconSplitscreenAddOutlinedFilled.tsx b/src/IconSplitscreenAddOutlinedFilled.tsx new file mode 100644 index 000000000..df0a27636 --- /dev/null +++ b/src/IconSplitscreenAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenAddOutlinedFilled as default } diff --git a/src/IconSplitscreenAddRoundedFilled.tsx b/src/IconSplitscreenAddRoundedFilled.tsx new file mode 100644 index 000000000..389fbce4f --- /dev/null +++ b/src/IconSplitscreenAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenAddRoundedFilled as default } diff --git a/src/IconSplitscreenAddSharpFilled.tsx b/src/IconSplitscreenAddSharpFilled.tsx new file mode 100644 index 000000000..8e428f41d --- /dev/null +++ b/src/IconSplitscreenAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenAddSharpFilled as default } diff --git a/src/IconSplitscreenBottomOutlinedFilled.tsx b/src/IconSplitscreenBottomOutlinedFilled.tsx new file mode 100644 index 000000000..57e24ddb0 --- /dev/null +++ b/src/IconSplitscreenBottomOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenBottomOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenBottomOutlinedFilled as default } diff --git a/src/IconSplitscreenBottomRoundedFilled.tsx b/src/IconSplitscreenBottomRoundedFilled.tsx new file mode 100644 index 000000000..0dc8b4cde --- /dev/null +++ b/src/IconSplitscreenBottomRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenBottomRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenBottomRoundedFilled as default } diff --git a/src/IconSplitscreenBottomSharpFilled.tsx b/src/IconSplitscreenBottomSharpFilled.tsx new file mode 100644 index 000000000..c961ca0f8 --- /dev/null +++ b/src/IconSplitscreenBottomSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenBottomSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenBottomSharpFilled as default } diff --git a/src/IconSplitscreenLandscapeOutlinedFilled.tsx b/src/IconSplitscreenLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..a53bec1d1 --- /dev/null +++ b/src/IconSplitscreenLandscapeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenLandscapeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenLandscapeOutlinedFilled as default } diff --git a/src/IconSplitscreenLandscapeRoundedFilled.tsx b/src/IconSplitscreenLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..2a1d589d4 --- /dev/null +++ b/src/IconSplitscreenLandscapeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenLandscapeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenLandscapeRoundedFilled as default } diff --git a/src/IconSplitscreenLandscapeSharpFilled.tsx b/src/IconSplitscreenLandscapeSharpFilled.tsx new file mode 100644 index 000000000..004165ebe --- /dev/null +++ b/src/IconSplitscreenLandscapeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenLandscapeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenLandscapeSharpFilled as default } diff --git a/src/IconSplitscreenLeftOutlinedFilled.tsx b/src/IconSplitscreenLeftOutlinedFilled.tsx new file mode 100644 index 000000000..f761e2d00 --- /dev/null +++ b/src/IconSplitscreenLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenLeftOutlinedFilled as default } diff --git a/src/IconSplitscreenLeftRoundedFilled.tsx b/src/IconSplitscreenLeftRoundedFilled.tsx new file mode 100644 index 000000000..6cc1896b0 --- /dev/null +++ b/src/IconSplitscreenLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenLeftRoundedFilled as default } diff --git a/src/IconSplitscreenLeftSharpFilled.tsx b/src/IconSplitscreenLeftSharpFilled.tsx new file mode 100644 index 000000000..9e0601626 --- /dev/null +++ b/src/IconSplitscreenLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenLeftSharpFilled as default } diff --git a/src/IconSplitscreenOutlinedFilled.tsx b/src/IconSplitscreenOutlinedFilled.tsx new file mode 100644 index 000000000..679cae12d --- /dev/null +++ b/src/IconSplitscreenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenOutlinedFilled as default } diff --git a/src/IconSplitscreenPortraitOutlinedFilled.tsx b/src/IconSplitscreenPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..621d4ed70 --- /dev/null +++ b/src/IconSplitscreenPortraitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenPortraitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenPortraitOutlinedFilled as default } diff --git a/src/IconSplitscreenPortraitRoundedFilled.tsx b/src/IconSplitscreenPortraitRoundedFilled.tsx new file mode 100644 index 000000000..7ca74c53c --- /dev/null +++ b/src/IconSplitscreenPortraitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenPortraitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenPortraitRoundedFilled as default } diff --git a/src/IconSplitscreenPortraitSharpFilled.tsx b/src/IconSplitscreenPortraitSharpFilled.tsx new file mode 100644 index 000000000..ffafdfb3f --- /dev/null +++ b/src/IconSplitscreenPortraitSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenPortraitSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenPortraitSharpFilled as default } diff --git a/src/IconSplitscreenRightOutlinedFilled.tsx b/src/IconSplitscreenRightOutlinedFilled.tsx new file mode 100644 index 000000000..0d82f4ac1 --- /dev/null +++ b/src/IconSplitscreenRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenRightOutlinedFilled as default } diff --git a/src/IconSplitscreenRightRoundedFilled.tsx b/src/IconSplitscreenRightRoundedFilled.tsx new file mode 100644 index 000000000..09cd81b64 --- /dev/null +++ b/src/IconSplitscreenRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenRightRoundedFilled as default } diff --git a/src/IconSplitscreenRightSharpFilled.tsx b/src/IconSplitscreenRightSharpFilled.tsx new file mode 100644 index 000000000..5f461f17c --- /dev/null +++ b/src/IconSplitscreenRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenRightSharpFilled as default } diff --git a/src/IconSplitscreenRoundedFilled.tsx b/src/IconSplitscreenRoundedFilled.tsx new file mode 100644 index 000000000..079b680ae --- /dev/null +++ b/src/IconSplitscreenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenRoundedFilled as default } diff --git a/src/IconSplitscreenSharpFilled.tsx b/src/IconSplitscreenSharpFilled.tsx new file mode 100644 index 000000000..0064e2533 --- /dev/null +++ b/src/IconSplitscreenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenSharpFilled as default } diff --git a/src/IconSplitscreenTopOutlinedFilled.tsx b/src/IconSplitscreenTopOutlinedFilled.tsx new file mode 100644 index 000000000..384b4c3a3 --- /dev/null +++ b/src/IconSplitscreenTopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenTopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenTopOutlinedFilled as default } diff --git a/src/IconSplitscreenTopRoundedFilled.tsx b/src/IconSplitscreenTopRoundedFilled.tsx new file mode 100644 index 000000000..723bb2f35 --- /dev/null +++ b/src/IconSplitscreenTopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenTopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenTopRoundedFilled as default } diff --git a/src/IconSplitscreenTopSharpFilled.tsx b/src/IconSplitscreenTopSharpFilled.tsx new file mode 100644 index 000000000..3f309a3a1 --- /dev/null +++ b/src/IconSplitscreenTopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenTopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenTopSharpFilled as default } diff --git a/src/IconSplitscreenVerticalAddOutlinedFilled.tsx b/src/IconSplitscreenVerticalAddOutlinedFilled.tsx new file mode 100644 index 000000000..69b3ad6ab --- /dev/null +++ b/src/IconSplitscreenVerticalAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenVerticalAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenVerticalAddOutlinedFilled as default } diff --git a/src/IconSplitscreenVerticalAddRoundedFilled.tsx b/src/IconSplitscreenVerticalAddRoundedFilled.tsx new file mode 100644 index 000000000..6f637f5f1 --- /dev/null +++ b/src/IconSplitscreenVerticalAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenVerticalAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenVerticalAddRoundedFilled as default } diff --git a/src/IconSplitscreenVerticalAddSharpFilled.tsx b/src/IconSplitscreenVerticalAddSharpFilled.tsx new file mode 100644 index 000000000..738be848d --- /dev/null +++ b/src/IconSplitscreenVerticalAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSplitscreenVerticalAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSplitscreenVerticalAddSharpFilled as default } diff --git a/src/IconSpo2OutlinedFilled.tsx b/src/IconSpo2OutlinedFilled.tsx new file mode 100644 index 000000000..5fb435727 --- /dev/null +++ b/src/IconSpo2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpo2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpo2OutlinedFilled as default } diff --git a/src/IconSpo2RoundedFilled.tsx b/src/IconSpo2RoundedFilled.tsx new file mode 100644 index 000000000..ce6658dde --- /dev/null +++ b/src/IconSpo2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpo2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpo2RoundedFilled as default } diff --git a/src/IconSpo2SharpFilled.tsx b/src/IconSpo2SharpFilled.tsx new file mode 100644 index 000000000..544c0943a --- /dev/null +++ b/src/IconSpo2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpo2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpo2SharpFilled as default } diff --git a/src/IconSpokeOutlinedFilled.tsx b/src/IconSpokeOutlinedFilled.tsx new file mode 100644 index 000000000..23f462fc8 --- /dev/null +++ b/src/IconSpokeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpokeOutlinedFilled as default } diff --git a/src/IconSpokeRoundedFilled.tsx b/src/IconSpokeRoundedFilled.tsx new file mode 100644 index 000000000..59fc4b65b --- /dev/null +++ b/src/IconSpokeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpokeRoundedFilled as default } diff --git a/src/IconSpokeSharpFilled.tsx b/src/IconSpokeSharpFilled.tsx new file mode 100644 index 000000000..e296146ab --- /dev/null +++ b/src/IconSpokeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSpokeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSpokeSharpFilled as default } diff --git a/src/IconSportsAndOutdoorsOutlinedFilled.tsx b/src/IconSportsAndOutdoorsOutlinedFilled.tsx new file mode 100644 index 000000000..f91556402 --- /dev/null +++ b/src/IconSportsAndOutdoorsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsAndOutdoorsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsAndOutdoorsOutlinedFilled as default } diff --git a/src/IconSportsAndOutdoorsRoundedFilled.tsx b/src/IconSportsAndOutdoorsRoundedFilled.tsx new file mode 100644 index 000000000..fd8f2ae09 --- /dev/null +++ b/src/IconSportsAndOutdoorsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsAndOutdoorsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsAndOutdoorsRoundedFilled as default } diff --git a/src/IconSportsAndOutdoorsSharpFilled.tsx b/src/IconSportsAndOutdoorsSharpFilled.tsx new file mode 100644 index 000000000..5a1112953 --- /dev/null +++ b/src/IconSportsAndOutdoorsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsAndOutdoorsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsAndOutdoorsSharpFilled as default } diff --git a/src/IconSportsBarOutlinedFilled.tsx b/src/IconSportsBarOutlinedFilled.tsx new file mode 100644 index 000000000..973b272f7 --- /dev/null +++ b/src/IconSportsBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBarOutlinedFilled as default } diff --git a/src/IconSportsBarRoundedFilled.tsx b/src/IconSportsBarRoundedFilled.tsx new file mode 100644 index 000000000..08f767e30 --- /dev/null +++ b/src/IconSportsBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBarRoundedFilled as default } diff --git a/src/IconSportsBarSharpFilled.tsx b/src/IconSportsBarSharpFilled.tsx new file mode 100644 index 000000000..0918bb263 --- /dev/null +++ b/src/IconSportsBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBarSharpFilled as default } diff --git a/src/IconSportsBaseballOutlinedFilled.tsx b/src/IconSportsBaseballOutlinedFilled.tsx new file mode 100644 index 000000000..c44bcdcb5 --- /dev/null +++ b/src/IconSportsBaseballOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBaseballOutlinedFilled as default } diff --git a/src/IconSportsBaseballRoundedFilled.tsx b/src/IconSportsBaseballRoundedFilled.tsx new file mode 100644 index 000000000..83a9c190a --- /dev/null +++ b/src/IconSportsBaseballRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBaseballRoundedFilled as default } diff --git a/src/IconSportsBaseballSharpFilled.tsx b/src/IconSportsBaseballSharpFilled.tsx new file mode 100644 index 000000000..b4297e089 --- /dev/null +++ b/src/IconSportsBaseballSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBaseballSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBaseballSharpFilled as default } diff --git a/src/IconSportsBasketballOutlinedFilled.tsx b/src/IconSportsBasketballOutlinedFilled.tsx new file mode 100644 index 000000000..33e720ca6 --- /dev/null +++ b/src/IconSportsBasketballOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBasketballOutlinedFilled as default } diff --git a/src/IconSportsBasketballRoundedFilled.tsx b/src/IconSportsBasketballRoundedFilled.tsx new file mode 100644 index 000000000..4c26865c2 --- /dev/null +++ b/src/IconSportsBasketballRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBasketballRoundedFilled as default } diff --git a/src/IconSportsBasketballSharpFilled.tsx b/src/IconSportsBasketballSharpFilled.tsx new file mode 100644 index 000000000..6a95cf83e --- /dev/null +++ b/src/IconSportsBasketballSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsBasketballSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsBasketballSharpFilled as default } diff --git a/src/IconSportsCricketOutlinedFilled.tsx b/src/IconSportsCricketOutlinedFilled.tsx new file mode 100644 index 000000000..9e905c275 --- /dev/null +++ b/src/IconSportsCricketOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsCricketOutlinedFilled as default } diff --git a/src/IconSportsCricketRoundedFilled.tsx b/src/IconSportsCricketRoundedFilled.tsx new file mode 100644 index 000000000..c532d3146 --- /dev/null +++ b/src/IconSportsCricketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsCricketRoundedFilled as default } diff --git a/src/IconSportsCricketSharpFilled.tsx b/src/IconSportsCricketSharpFilled.tsx new file mode 100644 index 000000000..50f520026 --- /dev/null +++ b/src/IconSportsCricketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsCricketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsCricketSharpFilled as default } diff --git a/src/IconSportsEsportsOutlinedFilled.tsx b/src/IconSportsEsportsOutlinedFilled.tsx new file mode 100644 index 000000000..4a1520490 --- /dev/null +++ b/src/IconSportsEsportsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsEsportsOutlinedFilled as default } diff --git a/src/IconSportsEsportsRoundedFilled.tsx b/src/IconSportsEsportsRoundedFilled.tsx new file mode 100644 index 000000000..06a13daec --- /dev/null +++ b/src/IconSportsEsportsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsEsportsRoundedFilled as default } diff --git a/src/IconSportsEsportsSharpFilled.tsx b/src/IconSportsEsportsSharpFilled.tsx new file mode 100644 index 000000000..0d7ea2779 --- /dev/null +++ b/src/IconSportsEsportsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsEsportsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsEsportsSharpFilled as default } diff --git a/src/IconSportsFootballOutlinedFilled.tsx b/src/IconSportsFootballOutlinedFilled.tsx new file mode 100644 index 000000000..2581ef836 --- /dev/null +++ b/src/IconSportsFootballOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsFootballOutlinedFilled as default } diff --git a/src/IconSportsFootballRoundedFilled.tsx b/src/IconSportsFootballRoundedFilled.tsx new file mode 100644 index 000000000..91116cb59 --- /dev/null +++ b/src/IconSportsFootballRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsFootballRoundedFilled as default } diff --git a/src/IconSportsFootballSharpFilled.tsx b/src/IconSportsFootballSharpFilled.tsx new file mode 100644 index 000000000..8056abd8d --- /dev/null +++ b/src/IconSportsFootballSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsFootballSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsFootballSharpFilled as default } diff --git a/src/IconSportsGolfOutlinedFilled.tsx b/src/IconSportsGolfOutlinedFilled.tsx new file mode 100644 index 000000000..bce9312df --- /dev/null +++ b/src/IconSportsGolfOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsGolfOutlinedFilled as default } diff --git a/src/IconSportsGolfRoundedFilled.tsx b/src/IconSportsGolfRoundedFilled.tsx new file mode 100644 index 000000000..e7b684132 --- /dev/null +++ b/src/IconSportsGolfRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsGolfRoundedFilled as default } diff --git a/src/IconSportsGolfSharpFilled.tsx b/src/IconSportsGolfSharpFilled.tsx new file mode 100644 index 000000000..23ecc5a9d --- /dev/null +++ b/src/IconSportsGolfSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGolfSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsGolfSharpFilled as default } diff --git a/src/IconSportsGymnasticsOutlinedFilled.tsx b/src/IconSportsGymnasticsOutlinedFilled.tsx new file mode 100644 index 000000000..dd2340961 --- /dev/null +++ b/src/IconSportsGymnasticsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsGymnasticsOutlinedFilled as default } diff --git a/src/IconSportsGymnasticsRoundedFilled.tsx b/src/IconSportsGymnasticsRoundedFilled.tsx new file mode 100644 index 000000000..855b91046 --- /dev/null +++ b/src/IconSportsGymnasticsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsGymnasticsRoundedFilled as default } diff --git a/src/IconSportsGymnasticsSharpFilled.tsx b/src/IconSportsGymnasticsSharpFilled.tsx new file mode 100644 index 000000000..bbc20774c --- /dev/null +++ b/src/IconSportsGymnasticsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsGymnasticsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsGymnasticsSharpFilled as default } diff --git a/src/IconSportsHandballOutlinedFilled.tsx b/src/IconSportsHandballOutlinedFilled.tsx new file mode 100644 index 000000000..43ad0c4da --- /dev/null +++ b/src/IconSportsHandballOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsHandballOutlinedFilled as default } diff --git a/src/IconSportsHandballRoundedFilled.tsx b/src/IconSportsHandballRoundedFilled.tsx new file mode 100644 index 000000000..e1bdbbc33 --- /dev/null +++ b/src/IconSportsHandballRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsHandballRoundedFilled as default } diff --git a/src/IconSportsHandballSharpFilled.tsx b/src/IconSportsHandballSharpFilled.tsx new file mode 100644 index 000000000..4c93b8f62 --- /dev/null +++ b/src/IconSportsHandballSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHandballSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsHandballSharpFilled as default } diff --git a/src/IconSportsHockeyOutlinedFilled.tsx b/src/IconSportsHockeyOutlinedFilled.tsx new file mode 100644 index 000000000..ff63a9892 --- /dev/null +++ b/src/IconSportsHockeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsHockeyOutlinedFilled as default } diff --git a/src/IconSportsHockeyRoundedFilled.tsx b/src/IconSportsHockeyRoundedFilled.tsx new file mode 100644 index 000000000..29d826bc4 --- /dev/null +++ b/src/IconSportsHockeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsHockeyRoundedFilled as default } diff --git a/src/IconSportsHockeySharpFilled.tsx b/src/IconSportsHockeySharpFilled.tsx new file mode 100644 index 000000000..4964343e8 --- /dev/null +++ b/src/IconSportsHockeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsHockeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsHockeySharpFilled as default } diff --git a/src/IconSportsKabaddiOutlinedFilled.tsx b/src/IconSportsKabaddiOutlinedFilled.tsx new file mode 100644 index 000000000..2d1d9e96b --- /dev/null +++ b/src/IconSportsKabaddiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsKabaddiOutlinedFilled as default } diff --git a/src/IconSportsKabaddiRoundedFilled.tsx b/src/IconSportsKabaddiRoundedFilled.tsx new file mode 100644 index 000000000..026ea9255 --- /dev/null +++ b/src/IconSportsKabaddiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsKabaddiRoundedFilled as default } diff --git a/src/IconSportsKabaddiSharpFilled.tsx b/src/IconSportsKabaddiSharpFilled.tsx new file mode 100644 index 000000000..88fbbdcdf --- /dev/null +++ b/src/IconSportsKabaddiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsKabaddiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsKabaddiSharpFilled as default } diff --git a/src/IconSportsMartialArtsOutlinedFilled.tsx b/src/IconSportsMartialArtsOutlinedFilled.tsx new file mode 100644 index 000000000..8821918f2 --- /dev/null +++ b/src/IconSportsMartialArtsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMartialArtsOutlinedFilled as default } diff --git a/src/IconSportsMartialArtsRoundedFilled.tsx b/src/IconSportsMartialArtsRoundedFilled.tsx new file mode 100644 index 000000000..df25a76e3 --- /dev/null +++ b/src/IconSportsMartialArtsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMartialArtsRoundedFilled as default } diff --git a/src/IconSportsMartialArtsSharpFilled.tsx b/src/IconSportsMartialArtsSharpFilled.tsx new file mode 100644 index 000000000..2e0b49f47 --- /dev/null +++ b/src/IconSportsMartialArtsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMartialArtsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMartialArtsSharpFilled as default } diff --git a/src/IconSportsMmaOutlinedFilled.tsx b/src/IconSportsMmaOutlinedFilled.tsx new file mode 100644 index 000000000..fbabc093a --- /dev/null +++ b/src/IconSportsMmaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMmaOutlinedFilled as default } diff --git a/src/IconSportsMmaRoundedFilled.tsx b/src/IconSportsMmaRoundedFilled.tsx new file mode 100644 index 000000000..6975cbd29 --- /dev/null +++ b/src/IconSportsMmaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMmaRoundedFilled as default } diff --git a/src/IconSportsMmaSharpFilled.tsx b/src/IconSportsMmaSharpFilled.tsx new file mode 100644 index 000000000..56c31483b --- /dev/null +++ b/src/IconSportsMmaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMmaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMmaSharpFilled as default } diff --git a/src/IconSportsMotorsportsOutlinedFilled.tsx b/src/IconSportsMotorsportsOutlinedFilled.tsx new file mode 100644 index 000000000..7ba77559d --- /dev/null +++ b/src/IconSportsMotorsportsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMotorsportsOutlinedFilled as default } diff --git a/src/IconSportsMotorsportsRoundedFilled.tsx b/src/IconSportsMotorsportsRoundedFilled.tsx new file mode 100644 index 000000000..0b555854a --- /dev/null +++ b/src/IconSportsMotorsportsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMotorsportsRoundedFilled as default } diff --git a/src/IconSportsMotorsportsSharpFilled.tsx b/src/IconSportsMotorsportsSharpFilled.tsx new file mode 100644 index 000000000..c0d3d06d6 --- /dev/null +++ b/src/IconSportsMotorsportsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsMotorsportsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsMotorsportsSharpFilled as default } diff --git a/src/IconSportsOutlinedFilled.tsx b/src/IconSportsOutlinedFilled.tsx new file mode 100644 index 000000000..dfad86649 --- /dev/null +++ b/src/IconSportsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsOutlinedFilled as default } diff --git a/src/IconSportsRoundedFilled.tsx b/src/IconSportsRoundedFilled.tsx new file mode 100644 index 000000000..ee77e2557 --- /dev/null +++ b/src/IconSportsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsRoundedFilled as default } diff --git a/src/IconSportsRugbyOutlinedFilled.tsx b/src/IconSportsRugbyOutlinedFilled.tsx new file mode 100644 index 000000000..783ddddb4 --- /dev/null +++ b/src/IconSportsRugbyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsRugbyOutlinedFilled as default } diff --git a/src/IconSportsRugbyRoundedFilled.tsx b/src/IconSportsRugbyRoundedFilled.tsx new file mode 100644 index 000000000..68bc4b8bb --- /dev/null +++ b/src/IconSportsRugbyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsRugbyRoundedFilled as default } diff --git a/src/IconSportsRugbySharpFilled.tsx b/src/IconSportsRugbySharpFilled.tsx new file mode 100644 index 000000000..08b68893b --- /dev/null +++ b/src/IconSportsRugbySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsRugbySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsRugbySharpFilled as default } diff --git a/src/IconSportsScoreOutlinedFilled.tsx b/src/IconSportsScoreOutlinedFilled.tsx new file mode 100644 index 000000000..9e5fd9901 --- /dev/null +++ b/src/IconSportsScoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsScoreOutlinedFilled as default } diff --git a/src/IconSportsScoreRoundedFilled.tsx b/src/IconSportsScoreRoundedFilled.tsx new file mode 100644 index 000000000..dc5618bc8 --- /dev/null +++ b/src/IconSportsScoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsScoreRoundedFilled as default } diff --git a/src/IconSportsScoreSharpFilled.tsx b/src/IconSportsScoreSharpFilled.tsx new file mode 100644 index 000000000..ec30aea24 --- /dev/null +++ b/src/IconSportsScoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsScoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsScoreSharpFilled as default } diff --git a/src/IconSportsSharpFilled.tsx b/src/IconSportsSharpFilled.tsx new file mode 100644 index 000000000..6d389b98b --- /dev/null +++ b/src/IconSportsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsSharpFilled as default } diff --git a/src/IconSportsSoccerOutlinedFilled.tsx b/src/IconSportsSoccerOutlinedFilled.tsx new file mode 100644 index 000000000..bb5335913 --- /dev/null +++ b/src/IconSportsSoccerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsSoccerOutlinedFilled as default } diff --git a/src/IconSportsSoccerRoundedFilled.tsx b/src/IconSportsSoccerRoundedFilled.tsx new file mode 100644 index 000000000..b1de5d87c --- /dev/null +++ b/src/IconSportsSoccerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsSoccerRoundedFilled as default } diff --git a/src/IconSportsSoccerSharpFilled.tsx b/src/IconSportsSoccerSharpFilled.tsx new file mode 100644 index 000000000..9a598e72c --- /dev/null +++ b/src/IconSportsSoccerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsSoccerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsSoccerSharpFilled as default } diff --git a/src/IconSportsTennisOutlinedFilled.tsx b/src/IconSportsTennisOutlinedFilled.tsx new file mode 100644 index 000000000..12c6415a0 --- /dev/null +++ b/src/IconSportsTennisOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsTennisOutlinedFilled as default } diff --git a/src/IconSportsTennisRoundedFilled.tsx b/src/IconSportsTennisRoundedFilled.tsx new file mode 100644 index 000000000..8f5e5afc6 --- /dev/null +++ b/src/IconSportsTennisRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsTennisRoundedFilled as default } diff --git a/src/IconSportsTennisSharpFilled.tsx b/src/IconSportsTennisSharpFilled.tsx new file mode 100644 index 000000000..005c93c2c --- /dev/null +++ b/src/IconSportsTennisSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsTennisSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsTennisSharpFilled as default } diff --git a/src/IconSportsVolleyballOutlinedFilled.tsx b/src/IconSportsVolleyballOutlinedFilled.tsx new file mode 100644 index 000000000..a5b981d5e --- /dev/null +++ b/src/IconSportsVolleyballOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsVolleyballOutlinedFilled as default } diff --git a/src/IconSportsVolleyballRoundedFilled.tsx b/src/IconSportsVolleyballRoundedFilled.tsx new file mode 100644 index 000000000..1e63ed63f --- /dev/null +++ b/src/IconSportsVolleyballRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsVolleyballRoundedFilled as default } diff --git a/src/IconSportsVolleyballSharpFilled.tsx b/src/IconSportsVolleyballSharpFilled.tsx new file mode 100644 index 000000000..9879452bf --- /dev/null +++ b/src/IconSportsVolleyballSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSportsVolleyballSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSportsVolleyballSharpFilled as default } diff --git a/src/IconSprinklerOutlinedFilled.tsx b/src/IconSprinklerOutlinedFilled.tsx new file mode 100644 index 000000000..ba543f1cf --- /dev/null +++ b/src/IconSprinklerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSprinklerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSprinklerOutlinedFilled as default } diff --git a/src/IconSprinklerRoundedFilled.tsx b/src/IconSprinklerRoundedFilled.tsx new file mode 100644 index 000000000..10a57e917 --- /dev/null +++ b/src/IconSprinklerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSprinklerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSprinklerRoundedFilled as default } diff --git a/src/IconSprinklerSharpFilled.tsx b/src/IconSprinklerSharpFilled.tsx new file mode 100644 index 000000000..f0063187e --- /dev/null +++ b/src/IconSprinklerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSprinklerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSprinklerSharpFilled as default } diff --git a/src/IconSprintOutlinedFilled.tsx b/src/IconSprintOutlinedFilled.tsx new file mode 100644 index 000000000..3aef81148 --- /dev/null +++ b/src/IconSprintOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSprintOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSprintOutlinedFilled as default } diff --git a/src/IconSprintRoundedFilled.tsx b/src/IconSprintRoundedFilled.tsx new file mode 100644 index 000000000..5dc1503e4 --- /dev/null +++ b/src/IconSprintRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSprintRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSprintRoundedFilled as default } diff --git a/src/IconSprintSharpFilled.tsx b/src/IconSprintSharpFilled.tsx new file mode 100644 index 000000000..488d71b49 --- /dev/null +++ b/src/IconSprintSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSprintSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSprintSharpFilled as default } diff --git a/src/IconSquareFootOutlinedFilled.tsx b/src/IconSquareFootOutlinedFilled.tsx new file mode 100644 index 000000000..b0e59dc45 --- /dev/null +++ b/src/IconSquareFootOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSquareFootOutlinedFilled as default } diff --git a/src/IconSquareFootRoundedFilled.tsx b/src/IconSquareFootRoundedFilled.tsx new file mode 100644 index 000000000..e4a5bbc5c --- /dev/null +++ b/src/IconSquareFootRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSquareFootRoundedFilled as default } diff --git a/src/IconSquareFootSharpFilled.tsx b/src/IconSquareFootSharpFilled.tsx new file mode 100644 index 000000000..299e80401 --- /dev/null +++ b/src/IconSquareFootSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareFootSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSquareFootSharpFilled as default } diff --git a/src/IconSquareOutlinedFilled.tsx b/src/IconSquareOutlinedFilled.tsx new file mode 100644 index 000000000..b2c8d4a5d --- /dev/null +++ b/src/IconSquareOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSquareOutlinedFilled as default } diff --git a/src/IconSquareRoundedFilled.tsx b/src/IconSquareRoundedFilled.tsx new file mode 100644 index 000000000..cdd3c17d2 --- /dev/null +++ b/src/IconSquareRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSquareRoundedFilled as default } diff --git a/src/IconSquareSharpFilled.tsx b/src/IconSquareSharpFilled.tsx new file mode 100644 index 000000000..2766606fc --- /dev/null +++ b/src/IconSquareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSquareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSquareSharpFilled as default } diff --git a/src/IconSsidChartOutlinedFilled.tsx b/src/IconSsidChartOutlinedFilled.tsx new file mode 100644 index 000000000..ca021ef03 --- /dev/null +++ b/src/IconSsidChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSsidChartOutlinedFilled as default } diff --git a/src/IconSsidChartRoundedFilled.tsx b/src/IconSsidChartRoundedFilled.tsx new file mode 100644 index 000000000..3c2be26c8 --- /dev/null +++ b/src/IconSsidChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSsidChartRoundedFilled as default } diff --git a/src/IconSsidChartSharpFilled.tsx b/src/IconSsidChartSharpFilled.tsx new file mode 100644 index 000000000..506729531 --- /dev/null +++ b/src/IconSsidChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSsidChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSsidChartSharpFilled as default } diff --git a/src/IconStackHexagonOutlinedFilled.tsx b/src/IconStackHexagonOutlinedFilled.tsx new file mode 100644 index 000000000..184a9b53a --- /dev/null +++ b/src/IconStackHexagonOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackHexagonOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackHexagonOutlinedFilled as default } diff --git a/src/IconStackHexagonRoundedFilled.tsx b/src/IconStackHexagonRoundedFilled.tsx new file mode 100644 index 000000000..7b311ce2d --- /dev/null +++ b/src/IconStackHexagonRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackHexagonRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackHexagonRoundedFilled as default } diff --git a/src/IconStackHexagonSharpFilled.tsx b/src/IconStackHexagonSharpFilled.tsx new file mode 100644 index 000000000..13de09786 --- /dev/null +++ b/src/IconStackHexagonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackHexagonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackHexagonSharpFilled as default } diff --git a/src/IconStackOffOutlinedFilled.tsx b/src/IconStackOffOutlinedFilled.tsx new file mode 100644 index 000000000..28187dcd1 --- /dev/null +++ b/src/IconStackOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackOffOutlinedFilled as default } diff --git a/src/IconStackOffRoundedFilled.tsx b/src/IconStackOffRoundedFilled.tsx new file mode 100644 index 000000000..314b74b34 --- /dev/null +++ b/src/IconStackOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackOffRoundedFilled as default } diff --git a/src/IconStackOffSharpFilled.tsx b/src/IconStackOffSharpFilled.tsx new file mode 100644 index 000000000..eace6ead7 --- /dev/null +++ b/src/IconStackOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackOffSharpFilled as default } diff --git a/src/IconStackOutlinedFilled.tsx b/src/IconStackOutlinedFilled.tsx new file mode 100644 index 000000000..c8e9a44d9 --- /dev/null +++ b/src/IconStackOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackOutlinedFilled as default } diff --git a/src/IconStackRoundedFilled.tsx b/src/IconStackRoundedFilled.tsx new file mode 100644 index 000000000..e5cccc293 --- /dev/null +++ b/src/IconStackRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackRoundedFilled as default } diff --git a/src/IconStackSharpFilled.tsx b/src/IconStackSharpFilled.tsx new file mode 100644 index 000000000..34149d477 --- /dev/null +++ b/src/IconStackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackSharpFilled as default } diff --git a/src/IconStackStarOutlinedFilled.tsx b/src/IconStackStarOutlinedFilled.tsx new file mode 100644 index 000000000..68fc2ecd2 --- /dev/null +++ b/src/IconStackStarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackStarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackStarOutlinedFilled as default } diff --git a/src/IconStackStarRoundedFilled.tsx b/src/IconStackStarRoundedFilled.tsx new file mode 100644 index 000000000..9142968d7 --- /dev/null +++ b/src/IconStackStarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackStarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackStarRoundedFilled as default } diff --git a/src/IconStackStarSharpFilled.tsx b/src/IconStackStarSharpFilled.tsx new file mode 100644 index 000000000..0aa5b7919 --- /dev/null +++ b/src/IconStackStarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackStarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackStarSharpFilled as default } diff --git a/src/IconStackedBarChartOutlinedFilled.tsx b/src/IconStackedBarChartOutlinedFilled.tsx new file mode 100644 index 000000000..f6da857fa --- /dev/null +++ b/src/IconStackedBarChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedBarChartOutlinedFilled as default } diff --git a/src/IconStackedBarChartRoundedFilled.tsx b/src/IconStackedBarChartRoundedFilled.tsx new file mode 100644 index 000000000..c62b25f4d --- /dev/null +++ b/src/IconStackedBarChartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedBarChartRoundedFilled as default } diff --git a/src/IconStackedBarChartSharpFilled.tsx b/src/IconStackedBarChartSharpFilled.tsx new file mode 100644 index 000000000..a150f45a3 --- /dev/null +++ b/src/IconStackedBarChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedBarChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedBarChartSharpFilled as default } diff --git a/src/IconStackedEmailOutlinedFilled.tsx b/src/IconStackedEmailOutlinedFilled.tsx new file mode 100644 index 000000000..251a8058a --- /dev/null +++ b/src/IconStackedEmailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedEmailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedEmailOutlinedFilled as default } diff --git a/src/IconStackedEmailRoundedFilled.tsx b/src/IconStackedEmailRoundedFilled.tsx new file mode 100644 index 000000000..b601e4f57 --- /dev/null +++ b/src/IconStackedEmailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedEmailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedEmailRoundedFilled as default } diff --git a/src/IconStackedEmailSharpFilled.tsx b/src/IconStackedEmailSharpFilled.tsx new file mode 100644 index 000000000..4b00f45d8 --- /dev/null +++ b/src/IconStackedEmailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedEmailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedEmailSharpFilled as default } diff --git a/src/IconStackedInboxOutlinedFilled.tsx b/src/IconStackedInboxOutlinedFilled.tsx new file mode 100644 index 000000000..8a2c26e76 --- /dev/null +++ b/src/IconStackedInboxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedInboxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedInboxOutlinedFilled as default } diff --git a/src/IconStackedInboxRoundedFilled.tsx b/src/IconStackedInboxRoundedFilled.tsx new file mode 100644 index 000000000..89998705e --- /dev/null +++ b/src/IconStackedInboxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedInboxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedInboxRoundedFilled as default } diff --git a/src/IconStackedInboxSharpFilled.tsx b/src/IconStackedInboxSharpFilled.tsx new file mode 100644 index 000000000..49ad28ccc --- /dev/null +++ b/src/IconStackedInboxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedInboxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedInboxSharpFilled as default } diff --git a/src/IconStackedLineChartOutlinedFilled.tsx b/src/IconStackedLineChartOutlinedFilled.tsx new file mode 100644 index 000000000..a9b7b3f2b --- /dev/null +++ b/src/IconStackedLineChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedLineChartOutlinedFilled as default } diff --git a/src/IconStackedLineChartRoundedFilled.tsx b/src/IconStackedLineChartRoundedFilled.tsx new file mode 100644 index 000000000..a3f8e2d8c --- /dev/null +++ b/src/IconStackedLineChartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedLineChartRoundedFilled as default } diff --git a/src/IconStackedLineChartSharpFilled.tsx b/src/IconStackedLineChartSharpFilled.tsx new file mode 100644 index 000000000..63b2ac1bf --- /dev/null +++ b/src/IconStackedLineChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStackedLineChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStackedLineChartSharpFilled as default } diff --git a/src/IconStacksOutlinedFilled.tsx b/src/IconStacksOutlinedFilled.tsx new file mode 100644 index 000000000..d65e7bf01 --- /dev/null +++ b/src/IconStacksOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStacksOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStacksOutlinedFilled as default } diff --git a/src/IconStacksRoundedFilled.tsx b/src/IconStacksRoundedFilled.tsx new file mode 100644 index 000000000..e98b15a87 --- /dev/null +++ b/src/IconStacksRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStacksRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStacksRoundedFilled as default } diff --git a/src/IconStacksSharpFilled.tsx b/src/IconStacksSharpFilled.tsx new file mode 100644 index 000000000..9b30dfa07 --- /dev/null +++ b/src/IconStacksSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStacksSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStacksSharpFilled as default } diff --git a/src/IconStadiaControllerOutlinedFilled.tsx b/src/IconStadiaControllerOutlinedFilled.tsx new file mode 100644 index 000000000..6bb0db9d0 --- /dev/null +++ b/src/IconStadiaControllerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiaControllerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStadiaControllerOutlinedFilled as default } diff --git a/src/IconStadiaControllerRoundedFilled.tsx b/src/IconStadiaControllerRoundedFilled.tsx new file mode 100644 index 000000000..bd2bc2538 --- /dev/null +++ b/src/IconStadiaControllerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiaControllerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStadiaControllerRoundedFilled as default } diff --git a/src/IconStadiaControllerSharpFilled.tsx b/src/IconStadiaControllerSharpFilled.tsx new file mode 100644 index 000000000..888818c7c --- /dev/null +++ b/src/IconStadiaControllerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiaControllerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStadiaControllerSharpFilled as default } diff --git a/src/IconStadiumOutlinedFilled.tsx b/src/IconStadiumOutlinedFilled.tsx new file mode 100644 index 000000000..ab14c8786 --- /dev/null +++ b/src/IconStadiumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStadiumOutlinedFilled as default } diff --git a/src/IconStadiumRoundedFilled.tsx b/src/IconStadiumRoundedFilled.tsx new file mode 100644 index 000000000..1f9843a5e --- /dev/null +++ b/src/IconStadiumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStadiumRoundedFilled as default } diff --git a/src/IconStadiumSharpFilled.tsx b/src/IconStadiumSharpFilled.tsx new file mode 100644 index 000000000..068e6d9cf --- /dev/null +++ b/src/IconStadiumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStadiumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStadiumSharpFilled as default } diff --git a/src/IconStairs2OutlinedFilled.tsx b/src/IconStairs2OutlinedFilled.tsx new file mode 100644 index 000000000..7a8fe0773 --- /dev/null +++ b/src/IconStairs2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairs2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStairs2OutlinedFilled as default } diff --git a/src/IconStairs2RoundedFilled.tsx b/src/IconStairs2RoundedFilled.tsx new file mode 100644 index 000000000..5636b47cb --- /dev/null +++ b/src/IconStairs2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairs2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStairs2RoundedFilled as default } diff --git a/src/IconStairs2SharpFilled.tsx b/src/IconStairs2SharpFilled.tsx new file mode 100644 index 000000000..41d266010 --- /dev/null +++ b/src/IconStairs2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairs2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStairs2SharpFilled as default } diff --git a/src/IconStairsOutlinedFilled.tsx b/src/IconStairsOutlinedFilled.tsx new file mode 100644 index 000000000..2b907dc8c --- /dev/null +++ b/src/IconStairsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStairsOutlinedFilled as default } diff --git a/src/IconStairsRoundedFilled.tsx b/src/IconStairsRoundedFilled.tsx new file mode 100644 index 000000000..6f366baaf --- /dev/null +++ b/src/IconStairsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStairsRoundedFilled as default } diff --git a/src/IconStairsSharpFilled.tsx b/src/IconStairsSharpFilled.tsx new file mode 100644 index 000000000..e93acccbc --- /dev/null +++ b/src/IconStairsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStairsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStairsSharpFilled as default } diff --git a/src/IconStarHalfOutlinedFilled.tsx b/src/IconStarHalfOutlinedFilled.tsx new file mode 100644 index 000000000..fa34c3d80 --- /dev/null +++ b/src/IconStarHalfOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarHalfOutlinedFilled as default } diff --git a/src/IconStarHalfRoundedFilled.tsx b/src/IconStarHalfRoundedFilled.tsx new file mode 100644 index 000000000..68af70b08 --- /dev/null +++ b/src/IconStarHalfRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarHalfRoundedFilled as default } diff --git a/src/IconStarHalfSharpFilled.tsx b/src/IconStarHalfSharpFilled.tsx new file mode 100644 index 000000000..4cb27f02b --- /dev/null +++ b/src/IconStarHalfSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarHalfSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarHalfSharpFilled as default } diff --git a/src/IconStarOutlinedFilled.tsx b/src/IconStarOutlinedFilled.tsx new file mode 100644 index 000000000..f5639491f --- /dev/null +++ b/src/IconStarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarOutlinedFilled as default } diff --git a/src/IconStarRateHalfOutlinedFilled.tsx b/src/IconStarRateHalfOutlinedFilled.tsx new file mode 100644 index 000000000..736821e37 --- /dev/null +++ b/src/IconStarRateHalfOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateHalfOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRateHalfOutlinedFilled as default } diff --git a/src/IconStarRateHalfRoundedFilled.tsx b/src/IconStarRateHalfRoundedFilled.tsx new file mode 100644 index 000000000..01a5591ef --- /dev/null +++ b/src/IconStarRateHalfRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateHalfRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRateHalfRoundedFilled as default } diff --git a/src/IconStarRateHalfSharpFilled.tsx b/src/IconStarRateHalfSharpFilled.tsx new file mode 100644 index 000000000..efb43a25a --- /dev/null +++ b/src/IconStarRateHalfSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateHalfSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRateHalfSharpFilled as default } diff --git a/src/IconStarRateOutlinedFilled.tsx b/src/IconStarRateOutlinedFilled.tsx new file mode 100644 index 000000000..eead0d37e --- /dev/null +++ b/src/IconStarRateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRateOutlinedFilled as default } diff --git a/src/IconStarRateRoundedFilled.tsx b/src/IconStarRateRoundedFilled.tsx new file mode 100644 index 000000000..12652328c --- /dev/null +++ b/src/IconStarRateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRateRoundedFilled as default } diff --git a/src/IconStarRateSharpFilled.tsx b/src/IconStarRateSharpFilled.tsx new file mode 100644 index 000000000..794c948cf --- /dev/null +++ b/src/IconStarRateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRateSharpFilled as default } diff --git a/src/IconStarRoundedFilled.tsx b/src/IconStarRoundedFilled.tsx new file mode 100644 index 000000000..7a1fae22f --- /dev/null +++ b/src/IconStarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarRoundedFilled as default } diff --git a/src/IconStarSharpFilled.tsx b/src/IconStarSharpFilled.tsx new file mode 100644 index 000000000..f11075240 --- /dev/null +++ b/src/IconStarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarSharpFilled as default } diff --git a/src/IconStarsOutlinedFilled.tsx b/src/IconStarsOutlinedFilled.tsx new file mode 100644 index 000000000..8bef2f135 --- /dev/null +++ b/src/IconStarsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarsOutlinedFilled as default } diff --git a/src/IconStarsRoundedFilled.tsx b/src/IconStarsRoundedFilled.tsx new file mode 100644 index 000000000..4a67c3f0e --- /dev/null +++ b/src/IconStarsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarsRoundedFilled as default } diff --git a/src/IconStarsSharpFilled.tsx b/src/IconStarsSharpFilled.tsx new file mode 100644 index 000000000..4719d215e --- /dev/null +++ b/src/IconStarsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStarsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStarsSharpFilled as default } diff --git a/src/IconStartOutlinedFilled.tsx b/src/IconStartOutlinedFilled.tsx new file mode 100644 index 000000000..b61cd20c1 --- /dev/null +++ b/src/IconStartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStartOutlinedFilled as default } diff --git a/src/IconStartRoundedFilled.tsx b/src/IconStartRoundedFilled.tsx new file mode 100644 index 000000000..b6e1892fa --- /dev/null +++ b/src/IconStartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStartRoundedFilled as default } diff --git a/src/IconStartSharpFilled.tsx b/src/IconStartSharpFilled.tsx new file mode 100644 index 000000000..362caa983 --- /dev/null +++ b/src/IconStartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStartSharpFilled as default } diff --git a/src/IconStat0OutlinedFilled.tsx b/src/IconStat0OutlinedFilled.tsx new file mode 100644 index 000000000..0d33441f3 --- /dev/null +++ b/src/IconStat0OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat0OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat0OutlinedFilled as default } diff --git a/src/IconStat0RoundedFilled.tsx b/src/IconStat0RoundedFilled.tsx new file mode 100644 index 000000000..4611a5f32 --- /dev/null +++ b/src/IconStat0RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat0RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat0RoundedFilled as default } diff --git a/src/IconStat0SharpFilled.tsx b/src/IconStat0SharpFilled.tsx new file mode 100644 index 000000000..32b65ef1b --- /dev/null +++ b/src/IconStat0SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat0SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat0SharpFilled as default } diff --git a/src/IconStat1OutlinedFilled.tsx b/src/IconStat1OutlinedFilled.tsx new file mode 100644 index 000000000..a0059b423 --- /dev/null +++ b/src/IconStat1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat1OutlinedFilled as default } diff --git a/src/IconStat1RoundedFilled.tsx b/src/IconStat1RoundedFilled.tsx new file mode 100644 index 000000000..2c62aceef --- /dev/null +++ b/src/IconStat1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat1RoundedFilled as default } diff --git a/src/IconStat1SharpFilled.tsx b/src/IconStat1SharpFilled.tsx new file mode 100644 index 000000000..02f517507 --- /dev/null +++ b/src/IconStat1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat1SharpFilled as default } diff --git a/src/IconStat2OutlinedFilled.tsx b/src/IconStat2OutlinedFilled.tsx new file mode 100644 index 000000000..5d622e847 --- /dev/null +++ b/src/IconStat2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat2OutlinedFilled as default } diff --git a/src/IconStat2RoundedFilled.tsx b/src/IconStat2RoundedFilled.tsx new file mode 100644 index 000000000..5256a6ebe --- /dev/null +++ b/src/IconStat2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat2RoundedFilled as default } diff --git a/src/IconStat2SharpFilled.tsx b/src/IconStat2SharpFilled.tsx new file mode 100644 index 000000000..ec6f3e4e4 --- /dev/null +++ b/src/IconStat2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat2SharpFilled as default } diff --git a/src/IconStat3OutlinedFilled.tsx b/src/IconStat3OutlinedFilled.tsx new file mode 100644 index 000000000..3d2debc4d --- /dev/null +++ b/src/IconStat3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat3OutlinedFilled as default } diff --git a/src/IconStat3RoundedFilled.tsx b/src/IconStat3RoundedFilled.tsx new file mode 100644 index 000000000..4f4fa1748 --- /dev/null +++ b/src/IconStat3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat3RoundedFilled as default } diff --git a/src/IconStat3SharpFilled.tsx b/src/IconStat3SharpFilled.tsx new file mode 100644 index 000000000..c6ad7db71 --- /dev/null +++ b/src/IconStat3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStat3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStat3SharpFilled as default } diff --git a/src/IconStatMinus1OutlinedFilled.tsx b/src/IconStatMinus1OutlinedFilled.tsx new file mode 100644 index 000000000..4c1293dea --- /dev/null +++ b/src/IconStatMinus1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus1OutlinedFilled as default } diff --git a/src/IconStatMinus1RoundedFilled.tsx b/src/IconStatMinus1RoundedFilled.tsx new file mode 100644 index 000000000..eb994a9fc --- /dev/null +++ b/src/IconStatMinus1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus1RoundedFilled as default } diff --git a/src/IconStatMinus1SharpFilled.tsx b/src/IconStatMinus1SharpFilled.tsx new file mode 100644 index 000000000..eeb49372f --- /dev/null +++ b/src/IconStatMinus1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus1SharpFilled as default } diff --git a/src/IconStatMinus2OutlinedFilled.tsx b/src/IconStatMinus2OutlinedFilled.tsx new file mode 100644 index 000000000..13efb0c20 --- /dev/null +++ b/src/IconStatMinus2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus2OutlinedFilled as default } diff --git a/src/IconStatMinus2RoundedFilled.tsx b/src/IconStatMinus2RoundedFilled.tsx new file mode 100644 index 000000000..9e87390a9 --- /dev/null +++ b/src/IconStatMinus2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus2RoundedFilled as default } diff --git a/src/IconStatMinus2SharpFilled.tsx b/src/IconStatMinus2SharpFilled.tsx new file mode 100644 index 000000000..2a443e1a6 --- /dev/null +++ b/src/IconStatMinus2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus2SharpFilled as default } diff --git a/src/IconStatMinus3OutlinedFilled.tsx b/src/IconStatMinus3OutlinedFilled.tsx new file mode 100644 index 000000000..1184f19a5 --- /dev/null +++ b/src/IconStatMinus3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus3OutlinedFilled as default } diff --git a/src/IconStatMinus3RoundedFilled.tsx b/src/IconStatMinus3RoundedFilled.tsx new file mode 100644 index 000000000..8343e2b7e --- /dev/null +++ b/src/IconStatMinus3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus3RoundedFilled as default } diff --git a/src/IconStatMinus3SharpFilled.tsx b/src/IconStatMinus3SharpFilled.tsx new file mode 100644 index 000000000..bd5a4ada3 --- /dev/null +++ b/src/IconStatMinus3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStatMinus3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStatMinus3SharpFilled as default } diff --git a/src/IconStayCurrentLandscapeOutlinedFilled.tsx b/src/IconStayCurrentLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..9543ed511 --- /dev/null +++ b/src/IconStayCurrentLandscapeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayCurrentLandscapeOutlinedFilled as default } diff --git a/src/IconStayCurrentLandscapeRoundedFilled.tsx b/src/IconStayCurrentLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..8c206c9d8 --- /dev/null +++ b/src/IconStayCurrentLandscapeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayCurrentLandscapeRoundedFilled as default } diff --git a/src/IconStayCurrentLandscapeSharpFilled.tsx b/src/IconStayCurrentLandscapeSharpFilled.tsx new file mode 100644 index 000000000..88fab021b --- /dev/null +++ b/src/IconStayCurrentLandscapeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentLandscapeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayCurrentLandscapeSharpFilled as default } diff --git a/src/IconStayCurrentPortraitOutlinedFilled.tsx b/src/IconStayCurrentPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..38cc55399 --- /dev/null +++ b/src/IconStayCurrentPortraitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayCurrentPortraitOutlinedFilled as default } diff --git a/src/IconStayCurrentPortraitRoundedFilled.tsx b/src/IconStayCurrentPortraitRoundedFilled.tsx new file mode 100644 index 000000000..d1f83154f --- /dev/null +++ b/src/IconStayCurrentPortraitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayCurrentPortraitRoundedFilled as default } diff --git a/src/IconStayCurrentPortraitSharpFilled.tsx b/src/IconStayCurrentPortraitSharpFilled.tsx new file mode 100644 index 000000000..11ea48a25 --- /dev/null +++ b/src/IconStayCurrentPortraitSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayCurrentPortraitSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayCurrentPortraitSharpFilled as default } diff --git a/src/IconStayPrimaryLandscapeOutlinedFilled.tsx b/src/IconStayPrimaryLandscapeOutlinedFilled.tsx new file mode 100644 index 000000000..f946bbd27 --- /dev/null +++ b/src/IconStayPrimaryLandscapeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayPrimaryLandscapeOutlinedFilled as default } diff --git a/src/IconStayPrimaryLandscapeRoundedFilled.tsx b/src/IconStayPrimaryLandscapeRoundedFilled.tsx new file mode 100644 index 000000000..f09454d5a --- /dev/null +++ b/src/IconStayPrimaryLandscapeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayPrimaryLandscapeRoundedFilled as default } diff --git a/src/IconStayPrimaryLandscapeSharpFilled.tsx b/src/IconStayPrimaryLandscapeSharpFilled.tsx new file mode 100644 index 000000000..0a6997ac9 --- /dev/null +++ b/src/IconStayPrimaryLandscapeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryLandscapeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayPrimaryLandscapeSharpFilled as default } diff --git a/src/IconStayPrimaryPortraitOutlinedFilled.tsx b/src/IconStayPrimaryPortraitOutlinedFilled.tsx new file mode 100644 index 000000000..7ac22339f --- /dev/null +++ b/src/IconStayPrimaryPortraitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayPrimaryPortraitOutlinedFilled as default } diff --git a/src/IconStayPrimaryPortraitRoundedFilled.tsx b/src/IconStayPrimaryPortraitRoundedFilled.tsx new file mode 100644 index 000000000..4d45638d2 --- /dev/null +++ b/src/IconStayPrimaryPortraitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayPrimaryPortraitRoundedFilled as default } diff --git a/src/IconStayPrimaryPortraitSharpFilled.tsx b/src/IconStayPrimaryPortraitSharpFilled.tsx new file mode 100644 index 000000000..888f13d83 --- /dev/null +++ b/src/IconStayPrimaryPortraitSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStayPrimaryPortraitSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStayPrimaryPortraitSharpFilled as default } diff --git a/src/IconStepIntoOutlinedFilled.tsx b/src/IconStepIntoOutlinedFilled.tsx new file mode 100644 index 000000000..13110ed02 --- /dev/null +++ b/src/IconStepIntoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepIntoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepIntoOutlinedFilled as default } diff --git a/src/IconStepIntoRoundedFilled.tsx b/src/IconStepIntoRoundedFilled.tsx new file mode 100644 index 000000000..de1b9f1d4 --- /dev/null +++ b/src/IconStepIntoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepIntoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepIntoRoundedFilled as default } diff --git a/src/IconStepIntoSharpFilled.tsx b/src/IconStepIntoSharpFilled.tsx new file mode 100644 index 000000000..93649dcdc --- /dev/null +++ b/src/IconStepIntoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepIntoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepIntoSharpFilled as default } diff --git a/src/IconStepOutOutlinedFilled.tsx b/src/IconStepOutOutlinedFilled.tsx new file mode 100644 index 000000000..9279c66e0 --- /dev/null +++ b/src/IconStepOutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOutOutlinedFilled as default } diff --git a/src/IconStepOutRoundedFilled.tsx b/src/IconStepOutRoundedFilled.tsx new file mode 100644 index 000000000..fdac88478 --- /dev/null +++ b/src/IconStepOutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOutRoundedFilled as default } diff --git a/src/IconStepOutSharpFilled.tsx b/src/IconStepOutSharpFilled.tsx new file mode 100644 index 000000000..a321388b8 --- /dev/null +++ b/src/IconStepOutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOutSharpFilled as default } diff --git a/src/IconStepOutlinedFilled.tsx b/src/IconStepOutlinedFilled.tsx new file mode 100644 index 000000000..1f4806510 --- /dev/null +++ b/src/IconStepOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOutlinedFilled as default } diff --git a/src/IconStepOverOutlinedFilled.tsx b/src/IconStepOverOutlinedFilled.tsx new file mode 100644 index 000000000..4a4c44cef --- /dev/null +++ b/src/IconStepOverOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOverOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOverOutlinedFilled as default } diff --git a/src/IconStepOverRoundedFilled.tsx b/src/IconStepOverRoundedFilled.tsx new file mode 100644 index 000000000..185ffc51f --- /dev/null +++ b/src/IconStepOverRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOverRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOverRoundedFilled as default } diff --git a/src/IconStepOverSharpFilled.tsx b/src/IconStepOverSharpFilled.tsx new file mode 100644 index 000000000..294842783 --- /dev/null +++ b/src/IconStepOverSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepOverSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepOverSharpFilled as default } diff --git a/src/IconStepRoundedFilled.tsx b/src/IconStepRoundedFilled.tsx new file mode 100644 index 000000000..0f4c739fc --- /dev/null +++ b/src/IconStepRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepRoundedFilled as default } diff --git a/src/IconStepSharpFilled.tsx b/src/IconStepSharpFilled.tsx new file mode 100644 index 000000000..695515575 --- /dev/null +++ b/src/IconStepSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepSharpFilled as default } diff --git a/src/IconSteppersOutlinedFilled.tsx b/src/IconSteppersOutlinedFilled.tsx new file mode 100644 index 000000000..e76df1d77 --- /dev/null +++ b/src/IconSteppersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSteppersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSteppersOutlinedFilled as default } diff --git a/src/IconSteppersRoundedFilled.tsx b/src/IconSteppersRoundedFilled.tsx new file mode 100644 index 000000000..2c8a8ab2e --- /dev/null +++ b/src/IconSteppersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSteppersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSteppersRoundedFilled as default } diff --git a/src/IconSteppersSharpFilled.tsx b/src/IconSteppersSharpFilled.tsx new file mode 100644 index 000000000..44648110a --- /dev/null +++ b/src/IconSteppersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSteppersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSteppersSharpFilled as default } diff --git a/src/IconStepsOutlinedFilled.tsx b/src/IconStepsOutlinedFilled.tsx new file mode 100644 index 000000000..d60f280ea --- /dev/null +++ b/src/IconStepsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepsOutlinedFilled as default } diff --git a/src/IconStepsRoundedFilled.tsx b/src/IconStepsRoundedFilled.tsx new file mode 100644 index 000000000..659e9dc3c --- /dev/null +++ b/src/IconStepsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepsRoundedFilled as default } diff --git a/src/IconStepsSharpFilled.tsx b/src/IconStepsSharpFilled.tsx new file mode 100644 index 000000000..118379fb9 --- /dev/null +++ b/src/IconStepsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStepsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStepsSharpFilled as default } diff --git a/src/IconStethoscopeArrowOutlinedFilled.tsx b/src/IconStethoscopeArrowOutlinedFilled.tsx new file mode 100644 index 000000000..1bfe7b5cf --- /dev/null +++ b/src/IconStethoscopeArrowOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeArrowOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeArrowOutlinedFilled as default } diff --git a/src/IconStethoscopeArrowRoundedFilled.tsx b/src/IconStethoscopeArrowRoundedFilled.tsx new file mode 100644 index 000000000..1022cd8da --- /dev/null +++ b/src/IconStethoscopeArrowRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeArrowRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeArrowRoundedFilled as default } diff --git a/src/IconStethoscopeArrowSharpFilled.tsx b/src/IconStethoscopeArrowSharpFilled.tsx new file mode 100644 index 000000000..c7533f192 --- /dev/null +++ b/src/IconStethoscopeArrowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeArrowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeArrowSharpFilled as default } diff --git a/src/IconStethoscopeCheckOutlinedFilled.tsx b/src/IconStethoscopeCheckOutlinedFilled.tsx new file mode 100644 index 000000000..c1329a741 --- /dev/null +++ b/src/IconStethoscopeCheckOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeCheckOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeCheckOutlinedFilled as default } diff --git a/src/IconStethoscopeCheckRoundedFilled.tsx b/src/IconStethoscopeCheckRoundedFilled.tsx new file mode 100644 index 000000000..996a98257 --- /dev/null +++ b/src/IconStethoscopeCheckRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeCheckRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeCheckRoundedFilled as default } diff --git a/src/IconStethoscopeCheckSharpFilled.tsx b/src/IconStethoscopeCheckSharpFilled.tsx new file mode 100644 index 000000000..f8ddd2db7 --- /dev/null +++ b/src/IconStethoscopeCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeCheckSharpFilled as default } diff --git a/src/IconStethoscopeOutlinedFilled.tsx b/src/IconStethoscopeOutlinedFilled.tsx new file mode 100644 index 000000000..90715c4bb --- /dev/null +++ b/src/IconStethoscopeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeOutlinedFilled as default } diff --git a/src/IconStethoscopeRoundedFilled.tsx b/src/IconStethoscopeRoundedFilled.tsx new file mode 100644 index 000000000..d17314521 --- /dev/null +++ b/src/IconStethoscopeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeRoundedFilled as default } diff --git a/src/IconStethoscopeSharpFilled.tsx b/src/IconStethoscopeSharpFilled.tsx new file mode 100644 index 000000000..c67c966fb --- /dev/null +++ b/src/IconStethoscopeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStethoscopeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStethoscopeSharpFilled as default } diff --git a/src/IconStickyNote2OutlinedFilled.tsx b/src/IconStickyNote2OutlinedFilled.tsx new file mode 100644 index 000000000..f89e8a16a --- /dev/null +++ b/src/IconStickyNote2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStickyNote2OutlinedFilled as default } diff --git a/src/IconStickyNote2RoundedFilled.tsx b/src/IconStickyNote2RoundedFilled.tsx new file mode 100644 index 000000000..f528e91a7 --- /dev/null +++ b/src/IconStickyNote2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStickyNote2RoundedFilled as default } diff --git a/src/IconStickyNote2SharpFilled.tsx b/src/IconStickyNote2SharpFilled.tsx new file mode 100644 index 000000000..425d6810b --- /dev/null +++ b/src/IconStickyNote2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNote2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStickyNote2SharpFilled as default } diff --git a/src/IconStickyNoteOutlinedFilled.tsx b/src/IconStickyNoteOutlinedFilled.tsx new file mode 100644 index 000000000..1ba9d1c96 --- /dev/null +++ b/src/IconStickyNoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStickyNoteOutlinedFilled as default } diff --git a/src/IconStickyNoteRoundedFilled.tsx b/src/IconStickyNoteRoundedFilled.tsx new file mode 100644 index 000000000..a22c16bfc --- /dev/null +++ b/src/IconStickyNoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStickyNoteRoundedFilled as default } diff --git a/src/IconStickyNoteSharpFilled.tsx b/src/IconStickyNoteSharpFilled.tsx new file mode 100644 index 000000000..9c50f11ac --- /dev/null +++ b/src/IconStickyNoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStickyNoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStickyNoteSharpFilled as default } diff --git a/src/IconStockMediaOutlinedFilled.tsx b/src/IconStockMediaOutlinedFilled.tsx new file mode 100644 index 000000000..9b8a1e611 --- /dev/null +++ b/src/IconStockMediaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStockMediaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStockMediaOutlinedFilled as default } diff --git a/src/IconStockMediaRoundedFilled.tsx b/src/IconStockMediaRoundedFilled.tsx new file mode 100644 index 000000000..e7f85585a --- /dev/null +++ b/src/IconStockMediaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStockMediaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStockMediaRoundedFilled as default } diff --git a/src/IconStockMediaSharpFilled.tsx b/src/IconStockMediaSharpFilled.tsx new file mode 100644 index 000000000..352d3d1c7 --- /dev/null +++ b/src/IconStockMediaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStockMediaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStockMediaSharpFilled as default } diff --git a/src/IconStockpotOutlinedFilled.tsx b/src/IconStockpotOutlinedFilled.tsx new file mode 100644 index 000000000..305c06ce4 --- /dev/null +++ b/src/IconStockpotOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStockpotOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStockpotOutlinedFilled as default } diff --git a/src/IconStockpotRoundedFilled.tsx b/src/IconStockpotRoundedFilled.tsx new file mode 100644 index 000000000..8b4dfc5ed --- /dev/null +++ b/src/IconStockpotRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStockpotRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStockpotRoundedFilled as default } diff --git a/src/IconStockpotSharpFilled.tsx b/src/IconStockpotSharpFilled.tsx new file mode 100644 index 000000000..253952104 --- /dev/null +++ b/src/IconStockpotSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStockpotSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStockpotSharpFilled as default } diff --git a/src/IconStopCircleOutlinedFilled.tsx b/src/IconStopCircleOutlinedFilled.tsx new file mode 100644 index 000000000..7b8dc5c0f --- /dev/null +++ b/src/IconStopCircleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopCircleOutlinedFilled as default } diff --git a/src/IconStopCircleRoundedFilled.tsx b/src/IconStopCircleRoundedFilled.tsx new file mode 100644 index 000000000..4010ee859 --- /dev/null +++ b/src/IconStopCircleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopCircleRoundedFilled as default } diff --git a/src/IconStopCircleSharpFilled.tsx b/src/IconStopCircleSharpFilled.tsx new file mode 100644 index 000000000..6e2d2018d --- /dev/null +++ b/src/IconStopCircleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopCircleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopCircleSharpFilled as default } diff --git a/src/IconStopOutlinedFilled.tsx b/src/IconStopOutlinedFilled.tsx new file mode 100644 index 000000000..f1ef583a0 --- /dev/null +++ b/src/IconStopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopOutlinedFilled as default } diff --git a/src/IconStopRoundedFilled.tsx b/src/IconStopRoundedFilled.tsx new file mode 100644 index 000000000..f019cb4ab --- /dev/null +++ b/src/IconStopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopRoundedFilled as default } diff --git a/src/IconStopScreenShareOutlinedFilled.tsx b/src/IconStopScreenShareOutlinedFilled.tsx new file mode 100644 index 000000000..91fc5012e --- /dev/null +++ b/src/IconStopScreenShareOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStopScreenShareOutlinedFilled as default } diff --git a/src/IconStopScreenShareRoundedFilled.tsx b/src/IconStopScreenShareRoundedFilled.tsx new file mode 100644 index 000000000..398a650ed --- /dev/null +++ b/src/IconStopScreenShareRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStopScreenShareRoundedFilled as default } diff --git a/src/IconStopScreenShareSharpFilled.tsx b/src/IconStopScreenShareSharpFilled.tsx new file mode 100644 index 000000000..b65672340 --- /dev/null +++ b/src/IconStopScreenShareSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopScreenShareSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopScreenShareSharpFilled as default } diff --git a/src/IconStopSharpFilled.tsx b/src/IconStopSharpFilled.tsx new file mode 100644 index 000000000..b30e18c6e --- /dev/null +++ b/src/IconStopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStopSharpFilled as default } diff --git a/src/IconStorageOutlinedFilled.tsx b/src/IconStorageOutlinedFilled.tsx new file mode 100644 index 000000000..b56507827 --- /dev/null +++ b/src/IconStorageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStorageOutlinedFilled as default } diff --git a/src/IconStorageRoundedFilled.tsx b/src/IconStorageRoundedFilled.tsx new file mode 100644 index 000000000..87896a9dc --- /dev/null +++ b/src/IconStorageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStorageRoundedFilled as default } diff --git a/src/IconStorageSharpFilled.tsx b/src/IconStorageSharpFilled.tsx new file mode 100644 index 000000000..2d2273f17 --- /dev/null +++ b/src/IconStorageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStorageSharpFilled as default } diff --git a/src/IconStoreOutlinedFilled.tsx b/src/IconStoreOutlinedFilled.tsx new file mode 100644 index 000000000..9ba695d7d --- /dev/null +++ b/src/IconStoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStoreOutlinedFilled as default } diff --git a/src/IconStoreRoundedFilled.tsx b/src/IconStoreRoundedFilled.tsx new file mode 100644 index 000000000..9583896ae --- /dev/null +++ b/src/IconStoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStoreRoundedFilled as default } diff --git a/src/IconStoreSharpFilled.tsx b/src/IconStoreSharpFilled.tsx new file mode 100644 index 000000000..56c5359f0 --- /dev/null +++ b/src/IconStoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStoreSharpFilled as default } diff --git a/src/IconStorefrontOutlinedFilled.tsx b/src/IconStorefrontOutlinedFilled.tsx new file mode 100644 index 000000000..0f19aa7f5 --- /dev/null +++ b/src/IconStorefrontOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStorefrontOutlinedFilled as default } diff --git a/src/IconStorefrontRoundedFilled.tsx b/src/IconStorefrontRoundedFilled.tsx new file mode 100644 index 000000000..50a14dc28 --- /dev/null +++ b/src/IconStorefrontRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStorefrontRoundedFilled as default } diff --git a/src/IconStorefrontSharpFilled.tsx b/src/IconStorefrontSharpFilled.tsx new file mode 100644 index 000000000..5d1562204 --- /dev/null +++ b/src/IconStorefrontSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStorefrontSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStorefrontSharpFilled as default } diff --git a/src/IconStormOutlinedFilled.tsx b/src/IconStormOutlinedFilled.tsx new file mode 100644 index 000000000..763b3a500 --- /dev/null +++ b/src/IconStormOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStormOutlinedFilled as default } diff --git a/src/IconStormRoundedFilled.tsx b/src/IconStormRoundedFilled.tsx new file mode 100644 index 000000000..eb7774c56 --- /dev/null +++ b/src/IconStormRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStormRoundedFilled as default } diff --git a/src/IconStormSharpFilled.tsx b/src/IconStormSharpFilled.tsx new file mode 100644 index 000000000..c7caf3856 --- /dev/null +++ b/src/IconStormSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStormSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStormSharpFilled as default } diff --git a/src/IconStraightOutlinedFilled.tsx b/src/IconStraightOutlinedFilled.tsx new file mode 100644 index 000000000..665f990f0 --- /dev/null +++ b/src/IconStraightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStraightOutlinedFilled as default } diff --git a/src/IconStraightRoundedFilled.tsx b/src/IconStraightRoundedFilled.tsx new file mode 100644 index 000000000..878b266db --- /dev/null +++ b/src/IconStraightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStraightRoundedFilled as default } diff --git a/src/IconStraightSharpFilled.tsx b/src/IconStraightSharpFilled.tsx new file mode 100644 index 000000000..5efbdb0b1 --- /dev/null +++ b/src/IconStraightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStraightSharpFilled as default } diff --git a/src/IconStraightenOutlinedFilled.tsx b/src/IconStraightenOutlinedFilled.tsx new file mode 100644 index 000000000..560b22d1e --- /dev/null +++ b/src/IconStraightenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStraightenOutlinedFilled as default } diff --git a/src/IconStraightenRoundedFilled.tsx b/src/IconStraightenRoundedFilled.tsx new file mode 100644 index 000000000..14f3d38d4 --- /dev/null +++ b/src/IconStraightenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStraightenRoundedFilled as default } diff --git a/src/IconStraightenSharpFilled.tsx b/src/IconStraightenSharpFilled.tsx new file mode 100644 index 000000000..ba3763f7e --- /dev/null +++ b/src/IconStraightenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStraightenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStraightenSharpFilled as default } diff --git a/src/IconStrategyOutlinedFilled.tsx b/src/IconStrategyOutlinedFilled.tsx new file mode 100644 index 000000000..3083b7344 --- /dev/null +++ b/src/IconStrategyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrategyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrategyOutlinedFilled as default } diff --git a/src/IconStrategyRoundedFilled.tsx b/src/IconStrategyRoundedFilled.tsx new file mode 100644 index 000000000..44722b840 --- /dev/null +++ b/src/IconStrategyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrategyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrategyRoundedFilled as default } diff --git a/src/IconStrategySharpFilled.tsx b/src/IconStrategySharpFilled.tsx new file mode 100644 index 000000000..dfdbaca08 --- /dev/null +++ b/src/IconStrategySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrategySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrategySharpFilled as default } diff --git a/src/IconStreamAppsOutlinedFilled.tsx b/src/IconStreamAppsOutlinedFilled.tsx new file mode 100644 index 000000000..61ee24f02 --- /dev/null +++ b/src/IconStreamAppsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamAppsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreamAppsOutlinedFilled as default } diff --git a/src/IconStreamAppsRoundedFilled.tsx b/src/IconStreamAppsRoundedFilled.tsx new file mode 100644 index 000000000..4f4b32522 --- /dev/null +++ b/src/IconStreamAppsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamAppsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreamAppsRoundedFilled as default } diff --git a/src/IconStreamAppsSharpFilled.tsx b/src/IconStreamAppsSharpFilled.tsx new file mode 100644 index 000000000..c20a0290e --- /dev/null +++ b/src/IconStreamAppsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamAppsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreamAppsSharpFilled as default } diff --git a/src/IconStreamOutlinedFilled.tsx b/src/IconStreamOutlinedFilled.tsx new file mode 100644 index 000000000..7a0fe9242 --- /dev/null +++ b/src/IconStreamOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreamOutlinedFilled as default } diff --git a/src/IconStreamRoundedFilled.tsx b/src/IconStreamRoundedFilled.tsx new file mode 100644 index 000000000..7f47cdfde --- /dev/null +++ b/src/IconStreamRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreamRoundedFilled as default } diff --git a/src/IconStreamSharpFilled.tsx b/src/IconStreamSharpFilled.tsx new file mode 100644 index 000000000..8b0bb3c15 --- /dev/null +++ b/src/IconStreamSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreamSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreamSharpFilled as default } diff --git a/src/IconStreetviewOutlinedFilled.tsx b/src/IconStreetviewOutlinedFilled.tsx new file mode 100644 index 000000000..a73dc37eb --- /dev/null +++ b/src/IconStreetviewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreetviewOutlinedFilled as default } diff --git a/src/IconStreetviewRoundedFilled.tsx b/src/IconStreetviewRoundedFilled.tsx new file mode 100644 index 000000000..d3d8412d6 --- /dev/null +++ b/src/IconStreetviewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreetviewRoundedFilled as default } diff --git a/src/IconStreetviewSharpFilled.tsx b/src/IconStreetviewSharpFilled.tsx new file mode 100644 index 000000000..c1f1a5448 --- /dev/null +++ b/src/IconStreetviewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStreetviewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStreetviewSharpFilled as default } diff --git a/src/IconStressManagementOutlinedFilled.tsx b/src/IconStressManagementOutlinedFilled.tsx new file mode 100644 index 000000000..56a5e28ba --- /dev/null +++ b/src/IconStressManagementOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStressManagementOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStressManagementOutlinedFilled as default } diff --git a/src/IconStressManagementRoundedFilled.tsx b/src/IconStressManagementRoundedFilled.tsx new file mode 100644 index 000000000..de82b0507 --- /dev/null +++ b/src/IconStressManagementRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStressManagementRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStressManagementRoundedFilled as default } diff --git a/src/IconStressManagementSharpFilled.tsx b/src/IconStressManagementSharpFilled.tsx new file mode 100644 index 000000000..9b1db1c48 --- /dev/null +++ b/src/IconStressManagementSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStressManagementSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStressManagementSharpFilled as default } diff --git a/src/IconStrikethroughSOutlinedFilled.tsx b/src/IconStrikethroughSOutlinedFilled.tsx new file mode 100644 index 000000000..7b61cde91 --- /dev/null +++ b/src/IconStrikethroughSOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStrikethroughSOutlinedFilled as default } diff --git a/src/IconStrikethroughSRoundedFilled.tsx b/src/IconStrikethroughSRoundedFilled.tsx new file mode 100644 index 000000000..4e750a686 --- /dev/null +++ b/src/IconStrikethroughSRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrikethroughSRoundedFilled as default } diff --git a/src/IconStrikethroughSSharpFilled.tsx b/src/IconStrikethroughSSharpFilled.tsx new file mode 100644 index 000000000..d1709557d --- /dev/null +++ b/src/IconStrikethroughSSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrikethroughSSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrikethroughSSharpFilled as default } diff --git a/src/IconStrokeFullOutlinedFilled.tsx b/src/IconStrokeFullOutlinedFilled.tsx new file mode 100644 index 000000000..804c19479 --- /dev/null +++ b/src/IconStrokeFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrokeFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrokeFullOutlinedFilled as default } diff --git a/src/IconStrokeFullRoundedFilled.tsx b/src/IconStrokeFullRoundedFilled.tsx new file mode 100644 index 000000000..87815f419 --- /dev/null +++ b/src/IconStrokeFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrokeFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrokeFullRoundedFilled as default } diff --git a/src/IconStrokeFullSharpFilled.tsx b/src/IconStrokeFullSharpFilled.tsx new file mode 100644 index 000000000..2f0a77a32 --- /dev/null +++ b/src/IconStrokeFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrokeFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrokeFullSharpFilled as default } diff --git a/src/IconStrokePartialOutlinedFilled.tsx b/src/IconStrokePartialOutlinedFilled.tsx new file mode 100644 index 000000000..cd7c4471d --- /dev/null +++ b/src/IconStrokePartialOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrokePartialOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrokePartialOutlinedFilled as default } diff --git a/src/IconStrokePartialRoundedFilled.tsx b/src/IconStrokePartialRoundedFilled.tsx new file mode 100644 index 000000000..0b12f4905 --- /dev/null +++ b/src/IconStrokePartialRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrokePartialRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrokePartialRoundedFilled as default } diff --git a/src/IconStrokePartialSharpFilled.tsx b/src/IconStrokePartialSharpFilled.tsx new file mode 100644 index 000000000..51626bf70 --- /dev/null +++ b/src/IconStrokePartialSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrokePartialSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrokePartialSharpFilled as default } diff --git a/src/IconStrollerOutlinedFilled.tsx b/src/IconStrollerOutlinedFilled.tsx new file mode 100644 index 000000000..cadde1b16 --- /dev/null +++ b/src/IconStrollerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrollerOutlinedFilled as default } diff --git a/src/IconStrollerRoundedFilled.tsx b/src/IconStrollerRoundedFilled.tsx new file mode 100644 index 000000000..c03af1bcb --- /dev/null +++ b/src/IconStrollerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrollerRoundedFilled as default } diff --git a/src/IconStrollerSharpFilled.tsx b/src/IconStrollerSharpFilled.tsx new file mode 100644 index 000000000..9fe1ca0a9 --- /dev/null +++ b/src/IconStrollerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStrollerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStrollerSharpFilled as default } diff --git a/src/IconStyleOutlinedFilled.tsx b/src/IconStyleOutlinedFilled.tsx new file mode 100644 index 000000000..548f64ca1 --- /dev/null +++ b/src/IconStyleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStyleOutlinedFilled as default } diff --git a/src/IconStyleRoundedFilled.tsx b/src/IconStyleRoundedFilled.tsx new file mode 100644 index 000000000..f884efe74 --- /dev/null +++ b/src/IconStyleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStyleRoundedFilled as default } diff --git a/src/IconStyleSharpFilled.tsx b/src/IconStyleSharpFilled.tsx new file mode 100644 index 000000000..9fb2f8ddb --- /dev/null +++ b/src/IconStyleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStyleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStyleSharpFilled as default } diff --git a/src/IconStylerOutlinedFilled.tsx b/src/IconStylerOutlinedFilled.tsx new file mode 100644 index 000000000..f1241124c --- /dev/null +++ b/src/IconStylerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylerOutlinedFilled as default } diff --git a/src/IconStylerRoundedFilled.tsx b/src/IconStylerRoundedFilled.tsx new file mode 100644 index 000000000..9e24a1147 --- /dev/null +++ b/src/IconStylerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylerRoundedFilled as default } diff --git a/src/IconStylerSharpFilled.tsx b/src/IconStylerSharpFilled.tsx new file mode 100644 index 000000000..8ef3bfab7 --- /dev/null +++ b/src/IconStylerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylerSharpFilled as default } diff --git a/src/IconStylusLaserPointerOutlinedFilled.tsx b/src/IconStylusLaserPointerOutlinedFilled.tsx new file mode 100644 index 000000000..1b1796d82 --- /dev/null +++ b/src/IconStylusLaserPointerOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusLaserPointerOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusLaserPointerOutlinedFilled as default } diff --git a/src/IconStylusLaserPointerRoundedFilled.tsx b/src/IconStylusLaserPointerRoundedFilled.tsx new file mode 100644 index 000000000..2e2950162 --- /dev/null +++ b/src/IconStylusLaserPointerRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusLaserPointerRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusLaserPointerRoundedFilled as default } diff --git a/src/IconStylusLaserPointerSharpFilled.tsx b/src/IconStylusLaserPointerSharpFilled.tsx new file mode 100644 index 000000000..52f3d9d58 --- /dev/null +++ b/src/IconStylusLaserPointerSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusLaserPointerSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusLaserPointerSharpFilled as default } diff --git a/src/IconStylusNoteOutlinedFilled.tsx b/src/IconStylusNoteOutlinedFilled.tsx new file mode 100644 index 000000000..58a75ec12 --- /dev/null +++ b/src/IconStylusNoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusNoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusNoteOutlinedFilled as default } diff --git a/src/IconStylusNoteRoundedFilled.tsx b/src/IconStylusNoteRoundedFilled.tsx new file mode 100644 index 000000000..110e13728 --- /dev/null +++ b/src/IconStylusNoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusNoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusNoteRoundedFilled as default } diff --git a/src/IconStylusNoteSharpFilled.tsx b/src/IconStylusNoteSharpFilled.tsx new file mode 100644 index 000000000..92d0cc23e --- /dev/null +++ b/src/IconStylusNoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusNoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusNoteSharpFilled as default } diff --git a/src/IconStylusOutlinedFilled.tsx b/src/IconStylusOutlinedFilled.tsx new file mode 100644 index 000000000..c4d487760 --- /dev/null +++ b/src/IconStylusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusOutlinedFilled as default } diff --git a/src/IconStylusRoundedFilled.tsx b/src/IconStylusRoundedFilled.tsx new file mode 100644 index 000000000..e5b8be540 --- /dev/null +++ b/src/IconStylusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusRoundedFilled as default } diff --git a/src/IconStylusSharpFilled.tsx b/src/IconStylusSharpFilled.tsx new file mode 100644 index 000000000..2024499d1 --- /dev/null +++ b/src/IconStylusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconStylusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconStylusSharpFilled as default } diff --git a/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx b/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx new file mode 100644 index 000000000..22315a7ef --- /dev/null +++ b/src/IconSubdirectoryArrowLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSubdirectoryArrowLeftOutlinedFilled as default } diff --git a/src/IconSubdirectoryArrowLeftRoundedFilled.tsx b/src/IconSubdirectoryArrowLeftRoundedFilled.tsx new file mode 100644 index 000000000..fa2ff2392 --- /dev/null +++ b/src/IconSubdirectoryArrowLeftRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSubdirectoryArrowLeftRoundedFilled as default } diff --git a/src/IconSubdirectoryArrowLeftSharpFilled.tsx b/src/IconSubdirectoryArrowLeftSharpFilled.tsx new file mode 100644 index 000000000..26b50a4ec --- /dev/null +++ b/src/IconSubdirectoryArrowLeftSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowLeftSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSubdirectoryArrowLeftSharpFilled as default } diff --git a/src/IconSubdirectoryArrowRightOutlinedFilled.tsx b/src/IconSubdirectoryArrowRightOutlinedFilled.tsx new file mode 100644 index 000000000..3ab9c6cfd --- /dev/null +++ b/src/IconSubdirectoryArrowRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSubdirectoryArrowRightOutlinedFilled as default } diff --git a/src/IconSubdirectoryArrowRightRoundedFilled.tsx b/src/IconSubdirectoryArrowRightRoundedFilled.tsx new file mode 100644 index 000000000..65503c2fb --- /dev/null +++ b/src/IconSubdirectoryArrowRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSubdirectoryArrowRightRoundedFilled as default } diff --git a/src/IconSubdirectoryArrowRightSharpFilled.tsx b/src/IconSubdirectoryArrowRightSharpFilled.tsx new file mode 100644 index 000000000..3e91fb9a8 --- /dev/null +++ b/src/IconSubdirectoryArrowRightSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubdirectoryArrowRightSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSubdirectoryArrowRightSharpFilled as default } diff --git a/src/IconSubheaderOutlinedFilled.tsx b/src/IconSubheaderOutlinedFilled.tsx new file mode 100644 index 000000000..30c2bf714 --- /dev/null +++ b/src/IconSubheaderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubheaderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubheaderOutlinedFilled as default } diff --git a/src/IconSubheaderRoundedFilled.tsx b/src/IconSubheaderRoundedFilled.tsx new file mode 100644 index 000000000..a07d62336 --- /dev/null +++ b/src/IconSubheaderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubheaderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubheaderRoundedFilled as default } diff --git a/src/IconSubheaderSharpFilled.tsx b/src/IconSubheaderSharpFilled.tsx new file mode 100644 index 000000000..e1bdd4ea1 --- /dev/null +++ b/src/IconSubheaderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubheaderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubheaderSharpFilled as default } diff --git a/src/IconSubjectOutlinedFilled.tsx b/src/IconSubjectOutlinedFilled.tsx new file mode 100644 index 000000000..e5255450c --- /dev/null +++ b/src/IconSubjectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubjectOutlinedFilled as default } diff --git a/src/IconSubjectRoundedFilled.tsx b/src/IconSubjectRoundedFilled.tsx new file mode 100644 index 000000000..32dc89659 --- /dev/null +++ b/src/IconSubjectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubjectRoundedFilled as default } diff --git a/src/IconSubjectSharpFilled.tsx b/src/IconSubjectSharpFilled.tsx new file mode 100644 index 000000000..978f772c3 --- /dev/null +++ b/src/IconSubjectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubjectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubjectSharpFilled as default } diff --git a/src/IconSubscriptOutlinedFilled.tsx b/src/IconSubscriptOutlinedFilled.tsx new file mode 100644 index 000000000..b093cd49d --- /dev/null +++ b/src/IconSubscriptOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptOutlinedFilled as default } diff --git a/src/IconSubscriptRoundedFilled.tsx b/src/IconSubscriptRoundedFilled.tsx new file mode 100644 index 000000000..5fcdb8667 --- /dev/null +++ b/src/IconSubscriptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptRoundedFilled as default } diff --git a/src/IconSubscriptSharpFilled.tsx b/src/IconSubscriptSharpFilled.tsx new file mode 100644 index 000000000..3b79c6b21 --- /dev/null +++ b/src/IconSubscriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptSharpFilled as default } diff --git a/src/IconSubscriptionsOutlinedFilled.tsx b/src/IconSubscriptionsOutlinedFilled.tsx new file mode 100644 index 000000000..4ae4d537f --- /dev/null +++ b/src/IconSubscriptionsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptionsOutlinedFilled as default } diff --git a/src/IconSubscriptionsRoundedFilled.tsx b/src/IconSubscriptionsRoundedFilled.tsx new file mode 100644 index 000000000..3d7b570fc --- /dev/null +++ b/src/IconSubscriptionsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptionsRoundedFilled as default } diff --git a/src/IconSubscriptionsSharpFilled.tsx b/src/IconSubscriptionsSharpFilled.tsx new file mode 100644 index 000000000..fe493b73f --- /dev/null +++ b/src/IconSubscriptionsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubscriptionsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubscriptionsSharpFilled as default } diff --git a/src/IconSubtitlesOffOutlinedFilled.tsx b/src/IconSubtitlesOffOutlinedFilled.tsx new file mode 100644 index 000000000..6e2e3ec0d --- /dev/null +++ b/src/IconSubtitlesOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesOffOutlinedFilled as default } diff --git a/src/IconSubtitlesOffRoundedFilled.tsx b/src/IconSubtitlesOffRoundedFilled.tsx new file mode 100644 index 000000000..4b7e3c9c6 --- /dev/null +++ b/src/IconSubtitlesOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesOffRoundedFilled as default } diff --git a/src/IconSubtitlesOffSharpFilled.tsx b/src/IconSubtitlesOffSharpFilled.tsx new file mode 100644 index 000000000..945e1d41f --- /dev/null +++ b/src/IconSubtitlesOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesOffSharpFilled as default } diff --git a/src/IconSubtitlesOutlinedFilled.tsx b/src/IconSubtitlesOutlinedFilled.tsx new file mode 100644 index 000000000..9abbabdc8 --- /dev/null +++ b/src/IconSubtitlesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesOutlinedFilled as default } diff --git a/src/IconSubtitlesRoundedFilled.tsx b/src/IconSubtitlesRoundedFilled.tsx new file mode 100644 index 000000000..54ed02081 --- /dev/null +++ b/src/IconSubtitlesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesRoundedFilled as default } diff --git a/src/IconSubtitlesSharpFilled.tsx b/src/IconSubtitlesSharpFilled.tsx new file mode 100644 index 000000000..3bf5f8f0d --- /dev/null +++ b/src/IconSubtitlesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubtitlesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubtitlesSharpFilled as default } diff --git a/src/IconSubwayOutlinedFilled.tsx b/src/IconSubwayOutlinedFilled.tsx new file mode 100644 index 000000000..a93895b0a --- /dev/null +++ b/src/IconSubwayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubwayOutlinedFilled as default } diff --git a/src/IconSubwayRoundedFilled.tsx b/src/IconSubwayRoundedFilled.tsx new file mode 100644 index 000000000..3cc6d33a9 --- /dev/null +++ b/src/IconSubwayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubwayRoundedFilled as default } diff --git a/src/IconSubwaySharpFilled.tsx b/src/IconSubwaySharpFilled.tsx new file mode 100644 index 000000000..c57ec7b8d --- /dev/null +++ b/src/IconSubwaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSubwaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSubwaySharpFilled as default } diff --git a/src/IconSummarizeOutlinedFilled.tsx b/src/IconSummarizeOutlinedFilled.tsx new file mode 100644 index 000000000..ae3fe1974 --- /dev/null +++ b/src/IconSummarizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSummarizeOutlinedFilled as default } diff --git a/src/IconSummarizeRoundedFilled.tsx b/src/IconSummarizeRoundedFilled.tsx new file mode 100644 index 000000000..b10bcbee1 --- /dev/null +++ b/src/IconSummarizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSummarizeRoundedFilled as default } diff --git a/src/IconSummarizeSharpFilled.tsx b/src/IconSummarizeSharpFilled.tsx new file mode 100644 index 000000000..9fe3ccd75 --- /dev/null +++ b/src/IconSummarizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSummarizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSummarizeSharpFilled as default } diff --git a/src/IconSunnyOutlinedFilled.tsx b/src/IconSunnyOutlinedFilled.tsx new file mode 100644 index 000000000..4a983fabb --- /dev/null +++ b/src/IconSunnyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSunnyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSunnyOutlinedFilled as default } diff --git a/src/IconSunnyRoundedFilled.tsx b/src/IconSunnyRoundedFilled.tsx new file mode 100644 index 000000000..6505d8326 --- /dev/null +++ b/src/IconSunnyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSunnyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSunnyRoundedFilled as default } diff --git a/src/IconSunnySharpFilled.tsx b/src/IconSunnySharpFilled.tsx new file mode 100644 index 000000000..7cb448ea4 --- /dev/null +++ b/src/IconSunnySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSunnySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSunnySharpFilled as default } diff --git a/src/IconSunnySnowingOutlinedFilled.tsx b/src/IconSunnySnowingOutlinedFilled.tsx new file mode 100644 index 000000000..414bab534 --- /dev/null +++ b/src/IconSunnySnowingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSunnySnowingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSunnySnowingOutlinedFilled as default } diff --git a/src/IconSunnySnowingRoundedFilled.tsx b/src/IconSunnySnowingRoundedFilled.tsx new file mode 100644 index 000000000..e74f86a17 --- /dev/null +++ b/src/IconSunnySnowingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSunnySnowingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSunnySnowingRoundedFilled as default } diff --git a/src/IconSunnySnowingSharpFilled.tsx b/src/IconSunnySnowingSharpFilled.tsx new file mode 100644 index 000000000..464bddc70 --- /dev/null +++ b/src/IconSunnySnowingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSunnySnowingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSunnySnowingSharpFilled as default } diff --git a/src/IconSuperscriptOutlinedFilled.tsx b/src/IconSuperscriptOutlinedFilled.tsx new file mode 100644 index 000000000..4e1dccdeb --- /dev/null +++ b/src/IconSuperscriptOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSuperscriptOutlinedFilled as default } diff --git a/src/IconSuperscriptRoundedFilled.tsx b/src/IconSuperscriptRoundedFilled.tsx new file mode 100644 index 000000000..eef17b01f --- /dev/null +++ b/src/IconSuperscriptRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSuperscriptRoundedFilled as default } diff --git a/src/IconSuperscriptSharpFilled.tsx b/src/IconSuperscriptSharpFilled.tsx new file mode 100644 index 000000000..3a154a67e --- /dev/null +++ b/src/IconSuperscriptSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSuperscriptSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSuperscriptSharpFilled as default } diff --git a/src/IconSupervisedUserCircleOffOutlinedFilled.tsx b/src/IconSupervisedUserCircleOffOutlinedFilled.tsx new file mode 100644 index 000000000..71d96a282 --- /dev/null +++ b/src/IconSupervisedUserCircleOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisedUserCircleOffOutlinedFilled as default } diff --git a/src/IconSupervisedUserCircleOffRoundedFilled.tsx b/src/IconSupervisedUserCircleOffRoundedFilled.tsx new file mode 100644 index 000000000..bb309c43e --- /dev/null +++ b/src/IconSupervisedUserCircleOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisedUserCircleOffRoundedFilled as default } diff --git a/src/IconSupervisedUserCircleOffSharpFilled.tsx b/src/IconSupervisedUserCircleOffSharpFilled.tsx new file mode 100644 index 000000000..0926d3c9d --- /dev/null +++ b/src/IconSupervisedUserCircleOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisedUserCircleOffSharpFilled as default } diff --git a/src/IconSupervisedUserCircleOutlinedFilled.tsx b/src/IconSupervisedUserCircleOutlinedFilled.tsx new file mode 100644 index 000000000..a62c9c41b --- /dev/null +++ b/src/IconSupervisedUserCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisedUserCircleOutlinedFilled as default } diff --git a/src/IconSupervisedUserCircleRoundedFilled.tsx b/src/IconSupervisedUserCircleRoundedFilled.tsx new file mode 100644 index 000000000..4853fcda9 --- /dev/null +++ b/src/IconSupervisedUserCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisedUserCircleRoundedFilled as default } diff --git a/src/IconSupervisedUserCircleSharpFilled.tsx b/src/IconSupervisedUserCircleSharpFilled.tsx new file mode 100644 index 000000000..407dd8f72 --- /dev/null +++ b/src/IconSupervisedUserCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisedUserCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisedUserCircleSharpFilled as default } diff --git a/src/IconSupervisorAccountOutlinedFilled.tsx b/src/IconSupervisorAccountOutlinedFilled.tsx new file mode 100644 index 000000000..dba0779bf --- /dev/null +++ b/src/IconSupervisorAccountOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisorAccountOutlinedFilled as default } diff --git a/src/IconSupervisorAccountRoundedFilled.tsx b/src/IconSupervisorAccountRoundedFilled.tsx new file mode 100644 index 000000000..0a6d258bc --- /dev/null +++ b/src/IconSupervisorAccountRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisorAccountRoundedFilled as default } diff --git a/src/IconSupervisorAccountSharpFilled.tsx b/src/IconSupervisorAccountSharpFilled.tsx new file mode 100644 index 000000000..46b5caea5 --- /dev/null +++ b/src/IconSupervisorAccountSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupervisorAccountSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSupervisorAccountSharpFilled as default } diff --git a/src/IconSupportAgentOutlinedFilled.tsx b/src/IconSupportAgentOutlinedFilled.tsx new file mode 100644 index 000000000..4773f382a --- /dev/null +++ b/src/IconSupportAgentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSupportAgentOutlinedFilled as default } diff --git a/src/IconSupportAgentRoundedFilled.tsx b/src/IconSupportAgentRoundedFilled.tsx new file mode 100644 index 000000000..6d64546ad --- /dev/null +++ b/src/IconSupportAgentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSupportAgentRoundedFilled as default } diff --git a/src/IconSupportAgentSharpFilled.tsx b/src/IconSupportAgentSharpFilled.tsx new file mode 100644 index 000000000..768bc7598 --- /dev/null +++ b/src/IconSupportAgentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportAgentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSupportAgentSharpFilled as default } diff --git a/src/IconSupportOutlinedFilled.tsx b/src/IconSupportOutlinedFilled.tsx new file mode 100644 index 000000000..0cc9870d6 --- /dev/null +++ b/src/IconSupportOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSupportOutlinedFilled as default } diff --git a/src/IconSupportRoundedFilled.tsx b/src/IconSupportRoundedFilled.tsx new file mode 100644 index 000000000..61495f063 --- /dev/null +++ b/src/IconSupportRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSupportRoundedFilled as default } diff --git a/src/IconSupportSharpFilled.tsx b/src/IconSupportSharpFilled.tsx new file mode 100644 index 000000000..94795bb7b --- /dev/null +++ b/src/IconSupportSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSupportSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSupportSharpFilled as default } diff --git a/src/IconSurfingOutlinedFilled.tsx b/src/IconSurfingOutlinedFilled.tsx new file mode 100644 index 000000000..1b04bd0a0 --- /dev/null +++ b/src/IconSurfingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurfingOutlinedFilled as default } diff --git a/src/IconSurfingRoundedFilled.tsx b/src/IconSurfingRoundedFilled.tsx new file mode 100644 index 000000000..7126f1bb3 --- /dev/null +++ b/src/IconSurfingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurfingRoundedFilled as default } diff --git a/src/IconSurfingSharpFilled.tsx b/src/IconSurfingSharpFilled.tsx new file mode 100644 index 000000000..9f8666b7e --- /dev/null +++ b/src/IconSurfingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurfingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurfingSharpFilled as default } diff --git a/src/IconSurgicalOutlinedFilled.tsx b/src/IconSurgicalOutlinedFilled.tsx new file mode 100644 index 000000000..01b415c8e --- /dev/null +++ b/src/IconSurgicalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurgicalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurgicalOutlinedFilled as default } diff --git a/src/IconSurgicalRoundedFilled.tsx b/src/IconSurgicalRoundedFilled.tsx new file mode 100644 index 000000000..b9f01515d --- /dev/null +++ b/src/IconSurgicalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurgicalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurgicalRoundedFilled as default } diff --git a/src/IconSurgicalSharpFilled.tsx b/src/IconSurgicalSharpFilled.tsx new file mode 100644 index 000000000..56a5bd73b --- /dev/null +++ b/src/IconSurgicalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurgicalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurgicalSharpFilled as default } diff --git a/src/IconSurroundSoundOutlinedFilled.tsx b/src/IconSurroundSoundOutlinedFilled.tsx new file mode 100644 index 000000000..e6e4136c1 --- /dev/null +++ b/src/IconSurroundSoundOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurroundSoundOutlinedFilled as default } diff --git a/src/IconSurroundSoundRoundedFilled.tsx b/src/IconSurroundSoundRoundedFilled.tsx new file mode 100644 index 000000000..16429502e --- /dev/null +++ b/src/IconSurroundSoundRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurroundSoundRoundedFilled as default } diff --git a/src/IconSurroundSoundSharpFilled.tsx b/src/IconSurroundSoundSharpFilled.tsx new file mode 100644 index 000000000..ac69f4206 --- /dev/null +++ b/src/IconSurroundSoundSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSurroundSoundSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSurroundSoundSharpFilled as default } diff --git a/src/IconSwapCallsOutlinedFilled.tsx b/src/IconSwapCallsOutlinedFilled.tsx new file mode 100644 index 000000000..7f13861f6 --- /dev/null +++ b/src/IconSwapCallsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapCallsOutlinedFilled as default } diff --git a/src/IconSwapCallsRoundedFilled.tsx b/src/IconSwapCallsRoundedFilled.tsx new file mode 100644 index 000000000..1a333d27f --- /dev/null +++ b/src/IconSwapCallsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapCallsRoundedFilled as default } diff --git a/src/IconSwapCallsSharpFilled.tsx b/src/IconSwapCallsSharpFilled.tsx new file mode 100644 index 000000000..020d20252 --- /dev/null +++ b/src/IconSwapCallsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapCallsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapCallsSharpFilled as default } diff --git a/src/IconSwapDrivingAppsOutlinedFilled.tsx b/src/IconSwapDrivingAppsOutlinedFilled.tsx new file mode 100644 index 000000000..571d25bef --- /dev/null +++ b/src/IconSwapDrivingAppsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapDrivingAppsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapDrivingAppsOutlinedFilled as default } diff --git a/src/IconSwapDrivingAppsRoundedFilled.tsx b/src/IconSwapDrivingAppsRoundedFilled.tsx new file mode 100644 index 000000000..3924b6d7d --- /dev/null +++ b/src/IconSwapDrivingAppsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapDrivingAppsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapDrivingAppsRoundedFilled as default } diff --git a/src/IconSwapDrivingAppsSharpFilled.tsx b/src/IconSwapDrivingAppsSharpFilled.tsx new file mode 100644 index 000000000..9a8d4768c --- /dev/null +++ b/src/IconSwapDrivingAppsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapDrivingAppsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapDrivingAppsSharpFilled as default } diff --git a/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx b/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx new file mode 100644 index 000000000..1e7b4a5eb --- /dev/null +++ b/src/IconSwapDrivingAppsWheelOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapDrivingAppsWheelOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapDrivingAppsWheelOutlinedFilled as default } diff --git a/src/IconSwapDrivingAppsWheelRoundedFilled.tsx b/src/IconSwapDrivingAppsWheelRoundedFilled.tsx new file mode 100644 index 000000000..e9709f015 --- /dev/null +++ b/src/IconSwapDrivingAppsWheelRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapDrivingAppsWheelRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapDrivingAppsWheelRoundedFilled as default } diff --git a/src/IconSwapDrivingAppsWheelSharpFilled.tsx b/src/IconSwapDrivingAppsWheelSharpFilled.tsx new file mode 100644 index 000000000..5a77fff87 --- /dev/null +++ b/src/IconSwapDrivingAppsWheelSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapDrivingAppsWheelSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapDrivingAppsWheelSharpFilled as default } diff --git a/src/IconSwapHorizOutlinedFilled.tsx b/src/IconSwapHorizOutlinedFilled.tsx new file mode 100644 index 000000000..4e83a51df --- /dev/null +++ b/src/IconSwapHorizOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapHorizOutlinedFilled as default } diff --git a/src/IconSwapHorizRoundedFilled.tsx b/src/IconSwapHorizRoundedFilled.tsx new file mode 100644 index 000000000..f24d75cf9 --- /dev/null +++ b/src/IconSwapHorizRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapHorizRoundedFilled as default } diff --git a/src/IconSwapHorizSharpFilled.tsx b/src/IconSwapHorizSharpFilled.tsx new file mode 100644 index 000000000..9d361c52e --- /dev/null +++ b/src/IconSwapHorizSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapHorizSharpFilled as default } diff --git a/src/IconSwapHorizontalCircleOutlinedFilled.tsx b/src/IconSwapHorizontalCircleOutlinedFilled.tsx new file mode 100644 index 000000000..3133e47a0 --- /dev/null +++ b/src/IconSwapHorizontalCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapHorizontalCircleOutlinedFilled as default } diff --git a/src/IconSwapHorizontalCircleRoundedFilled.tsx b/src/IconSwapHorizontalCircleRoundedFilled.tsx new file mode 100644 index 000000000..aa893a8c7 --- /dev/null +++ b/src/IconSwapHorizontalCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapHorizontalCircleRoundedFilled as default } diff --git a/src/IconSwapHorizontalCircleSharpFilled.tsx b/src/IconSwapHorizontalCircleSharpFilled.tsx new file mode 100644 index 000000000..fbcbfd395 --- /dev/null +++ b/src/IconSwapHorizontalCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapHorizontalCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapHorizontalCircleSharpFilled as default } diff --git a/src/IconSwapVertOutlinedFilled.tsx b/src/IconSwapVertOutlinedFilled.tsx new file mode 100644 index 000000000..684bcd6d2 --- /dev/null +++ b/src/IconSwapVertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapVertOutlinedFilled as default } diff --git a/src/IconSwapVertRoundedFilled.tsx b/src/IconSwapVertRoundedFilled.tsx new file mode 100644 index 000000000..516b8781b --- /dev/null +++ b/src/IconSwapVertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapVertRoundedFilled as default } diff --git a/src/IconSwapVertSharpFilled.tsx b/src/IconSwapVertSharpFilled.tsx new file mode 100644 index 000000000..e3a1e6c6b --- /dev/null +++ b/src/IconSwapVertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapVertSharpFilled as default } diff --git a/src/IconSwapVerticalCircleOutlinedFilled.tsx b/src/IconSwapVerticalCircleOutlinedFilled.tsx new file mode 100644 index 000000000..0d3f3ee19 --- /dev/null +++ b/src/IconSwapVerticalCircleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapVerticalCircleOutlinedFilled as default } diff --git a/src/IconSwapVerticalCircleRoundedFilled.tsx b/src/IconSwapVerticalCircleRoundedFilled.tsx new file mode 100644 index 000000000..f2503015a --- /dev/null +++ b/src/IconSwapVerticalCircleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapVerticalCircleRoundedFilled as default } diff --git a/src/IconSwapVerticalCircleSharpFilled.tsx b/src/IconSwapVerticalCircleSharpFilled.tsx new file mode 100644 index 000000000..a5834d2c1 --- /dev/null +++ b/src/IconSwapVerticalCircleSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwapVerticalCircleSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwapVerticalCircleSharpFilled as default } diff --git a/src/IconSweepOutlinedFilled.tsx b/src/IconSweepOutlinedFilled.tsx new file mode 100644 index 000000000..eec9a1753 --- /dev/null +++ b/src/IconSweepOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSweepOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSweepOutlinedFilled as default } diff --git a/src/IconSweepRoundedFilled.tsx b/src/IconSweepRoundedFilled.tsx new file mode 100644 index 000000000..5ac96887e --- /dev/null +++ b/src/IconSweepRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSweepRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSweepRoundedFilled as default } diff --git a/src/IconSweepSharpFilled.tsx b/src/IconSweepSharpFilled.tsx new file mode 100644 index 000000000..7d403e410 --- /dev/null +++ b/src/IconSweepSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSweepSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSweepSharpFilled as default } diff --git a/src/IconSwipeDownAltOutlinedFilled.tsx b/src/IconSwipeDownAltOutlinedFilled.tsx new file mode 100644 index 000000000..ec5a10ebb --- /dev/null +++ b/src/IconSwipeDownAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeDownAltOutlinedFilled as default } diff --git a/src/IconSwipeDownAltRoundedFilled.tsx b/src/IconSwipeDownAltRoundedFilled.tsx new file mode 100644 index 000000000..d4575a48f --- /dev/null +++ b/src/IconSwipeDownAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeDownAltRoundedFilled as default } diff --git a/src/IconSwipeDownAltSharpFilled.tsx b/src/IconSwipeDownAltSharpFilled.tsx new file mode 100644 index 000000000..87f465c55 --- /dev/null +++ b/src/IconSwipeDownAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeDownAltSharpFilled as default } diff --git a/src/IconSwipeDownOutlinedFilled.tsx b/src/IconSwipeDownOutlinedFilled.tsx new file mode 100644 index 000000000..cd88d2a17 --- /dev/null +++ b/src/IconSwipeDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeDownOutlinedFilled as default } diff --git a/src/IconSwipeDownRoundedFilled.tsx b/src/IconSwipeDownRoundedFilled.tsx new file mode 100644 index 000000000..852768a25 --- /dev/null +++ b/src/IconSwipeDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeDownRoundedFilled as default } diff --git a/src/IconSwipeDownSharpFilled.tsx b/src/IconSwipeDownSharpFilled.tsx new file mode 100644 index 000000000..9b5051be0 --- /dev/null +++ b/src/IconSwipeDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeDownSharpFilled as default } diff --git a/src/IconSwipeLeftAltOutlinedFilled.tsx b/src/IconSwipeLeftAltOutlinedFilled.tsx new file mode 100644 index 000000000..7659bcce2 --- /dev/null +++ b/src/IconSwipeLeftAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeLeftAltOutlinedFilled as default } diff --git a/src/IconSwipeLeftAltRoundedFilled.tsx b/src/IconSwipeLeftAltRoundedFilled.tsx new file mode 100644 index 000000000..3de4f468a --- /dev/null +++ b/src/IconSwipeLeftAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeLeftAltRoundedFilled as default } diff --git a/src/IconSwipeLeftAltSharpFilled.tsx b/src/IconSwipeLeftAltSharpFilled.tsx new file mode 100644 index 000000000..ef95f3748 --- /dev/null +++ b/src/IconSwipeLeftAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeLeftAltSharpFilled as default } diff --git a/src/IconSwipeLeftOutlinedFilled.tsx b/src/IconSwipeLeftOutlinedFilled.tsx new file mode 100644 index 000000000..d8b623730 --- /dev/null +++ b/src/IconSwipeLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeLeftOutlinedFilled as default } diff --git a/src/IconSwipeLeftRoundedFilled.tsx b/src/IconSwipeLeftRoundedFilled.tsx new file mode 100644 index 000000000..23e7d1a52 --- /dev/null +++ b/src/IconSwipeLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeLeftRoundedFilled as default } diff --git a/src/IconSwipeLeftSharpFilled.tsx b/src/IconSwipeLeftSharpFilled.tsx new file mode 100644 index 000000000..a86775af8 --- /dev/null +++ b/src/IconSwipeLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeLeftSharpFilled as default } diff --git a/src/IconSwipeOutlinedFilled.tsx b/src/IconSwipeOutlinedFilled.tsx new file mode 100644 index 000000000..3eea8bccf --- /dev/null +++ b/src/IconSwipeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeOutlinedFilled as default } diff --git a/src/IconSwipeRightAltOutlinedFilled.tsx b/src/IconSwipeRightAltOutlinedFilled.tsx new file mode 100644 index 000000000..d50e1d9f7 --- /dev/null +++ b/src/IconSwipeRightAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRightAltOutlinedFilled as default } diff --git a/src/IconSwipeRightAltRoundedFilled.tsx b/src/IconSwipeRightAltRoundedFilled.tsx new file mode 100644 index 000000000..dc7294352 --- /dev/null +++ b/src/IconSwipeRightAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRightAltRoundedFilled as default } diff --git a/src/IconSwipeRightAltSharpFilled.tsx b/src/IconSwipeRightAltSharpFilled.tsx new file mode 100644 index 000000000..8598e3cc0 --- /dev/null +++ b/src/IconSwipeRightAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRightAltSharpFilled as default } diff --git a/src/IconSwipeRightOutlinedFilled.tsx b/src/IconSwipeRightOutlinedFilled.tsx new file mode 100644 index 000000000..dfe374702 --- /dev/null +++ b/src/IconSwipeRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRightOutlinedFilled as default } diff --git a/src/IconSwipeRightRoundedFilled.tsx b/src/IconSwipeRightRoundedFilled.tsx new file mode 100644 index 000000000..5d11af9b5 --- /dev/null +++ b/src/IconSwipeRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRightRoundedFilled as default } diff --git a/src/IconSwipeRightSharpFilled.tsx b/src/IconSwipeRightSharpFilled.tsx new file mode 100644 index 000000000..62beb1506 --- /dev/null +++ b/src/IconSwipeRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRightSharpFilled as default } diff --git a/src/IconSwipeRoundedFilled.tsx b/src/IconSwipeRoundedFilled.tsx new file mode 100644 index 000000000..2ee705d86 --- /dev/null +++ b/src/IconSwipeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeRoundedFilled as default } diff --git a/src/IconSwipeSharpFilled.tsx b/src/IconSwipeSharpFilled.tsx new file mode 100644 index 000000000..aea364c26 --- /dev/null +++ b/src/IconSwipeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeSharpFilled as default } diff --git a/src/IconSwipeUpAltOutlinedFilled.tsx b/src/IconSwipeUpAltOutlinedFilled.tsx new file mode 100644 index 000000000..6c13cd2ce --- /dev/null +++ b/src/IconSwipeUpAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeUpAltOutlinedFilled as default } diff --git a/src/IconSwipeUpAltRoundedFilled.tsx b/src/IconSwipeUpAltRoundedFilled.tsx new file mode 100644 index 000000000..804ada283 --- /dev/null +++ b/src/IconSwipeUpAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeUpAltRoundedFilled as default } diff --git a/src/IconSwipeUpAltSharpFilled.tsx b/src/IconSwipeUpAltSharpFilled.tsx new file mode 100644 index 000000000..4a644c2d4 --- /dev/null +++ b/src/IconSwipeUpAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeUpAltSharpFilled as default } diff --git a/src/IconSwipeUpOutlinedFilled.tsx b/src/IconSwipeUpOutlinedFilled.tsx new file mode 100644 index 000000000..df1ee9707 --- /dev/null +++ b/src/IconSwipeUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeUpOutlinedFilled as default } diff --git a/src/IconSwipeUpRoundedFilled.tsx b/src/IconSwipeUpRoundedFilled.tsx new file mode 100644 index 000000000..82d81c49a --- /dev/null +++ b/src/IconSwipeUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeUpRoundedFilled as default } diff --git a/src/IconSwipeUpSharpFilled.tsx b/src/IconSwipeUpSharpFilled.tsx new file mode 100644 index 000000000..ddf66ef20 --- /dev/null +++ b/src/IconSwipeUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeUpSharpFilled as default } diff --git a/src/IconSwipeVerticalOutlinedFilled.tsx b/src/IconSwipeVerticalOutlinedFilled.tsx new file mode 100644 index 000000000..52f18aab0 --- /dev/null +++ b/src/IconSwipeVerticalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeVerticalOutlinedFilled as default } diff --git a/src/IconSwipeVerticalRoundedFilled.tsx b/src/IconSwipeVerticalRoundedFilled.tsx new file mode 100644 index 000000000..6ebae6437 --- /dev/null +++ b/src/IconSwipeVerticalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeVerticalRoundedFilled as default } diff --git a/src/IconSwipeVerticalSharpFilled.tsx b/src/IconSwipeVerticalSharpFilled.tsx new file mode 100644 index 000000000..05bfdb62b --- /dev/null +++ b/src/IconSwipeVerticalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwipeVerticalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwipeVerticalSharpFilled as default } diff --git a/src/IconSwitchAccess2OutlinedFilled.tsx b/src/IconSwitchAccess2OutlinedFilled.tsx new file mode 100644 index 000000000..255430fbd --- /dev/null +++ b/src/IconSwitchAccess2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccess2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccess2OutlinedFilled as default } diff --git a/src/IconSwitchAccess2RoundedFilled.tsx b/src/IconSwitchAccess2RoundedFilled.tsx new file mode 100644 index 000000000..48abcb71c --- /dev/null +++ b/src/IconSwitchAccess2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccess2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccess2RoundedFilled as default } diff --git a/src/IconSwitchAccess2SharpFilled.tsx b/src/IconSwitchAccess2SharpFilled.tsx new file mode 100644 index 000000000..8a4caf500 --- /dev/null +++ b/src/IconSwitchAccess2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccess2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccess2SharpFilled as default } diff --git a/src/IconSwitchAccessOutlinedFilled.tsx b/src/IconSwitchAccessOutlinedFilled.tsx new file mode 100644 index 000000000..58bbd0739 --- /dev/null +++ b/src/IconSwitchAccessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessOutlinedFilled as default } diff --git a/src/IconSwitchAccessRoundedFilled.tsx b/src/IconSwitchAccessRoundedFilled.tsx new file mode 100644 index 000000000..e2a45544a --- /dev/null +++ b/src/IconSwitchAccessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessRoundedFilled as default } diff --git a/src/IconSwitchAccessSharpFilled.tsx b/src/IconSwitchAccessSharpFilled.tsx new file mode 100644 index 000000000..295bd15ee --- /dev/null +++ b/src/IconSwitchAccessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessSharpFilled as default } diff --git a/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx b/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx new file mode 100644 index 000000000..1cccdda05 --- /dev/null +++ b/src/IconSwitchAccessShortcutAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessShortcutAddOutlinedFilled as default } diff --git a/src/IconSwitchAccessShortcutAddRoundedFilled.tsx b/src/IconSwitchAccessShortcutAddRoundedFilled.tsx new file mode 100644 index 000000000..d6c73ee03 --- /dev/null +++ b/src/IconSwitchAccessShortcutAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessShortcutAddRoundedFilled as default } diff --git a/src/IconSwitchAccessShortcutAddSharpFilled.tsx b/src/IconSwitchAccessShortcutAddSharpFilled.tsx new file mode 100644 index 000000000..df09a029a --- /dev/null +++ b/src/IconSwitchAccessShortcutAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessShortcutAddSharpFilled as default } diff --git a/src/IconSwitchAccessShortcutOutlinedFilled.tsx b/src/IconSwitchAccessShortcutOutlinedFilled.tsx new file mode 100644 index 000000000..ac764eab8 --- /dev/null +++ b/src/IconSwitchAccessShortcutOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessShortcutOutlinedFilled as default } diff --git a/src/IconSwitchAccessShortcutRoundedFilled.tsx b/src/IconSwitchAccessShortcutRoundedFilled.tsx new file mode 100644 index 000000000..396e069da --- /dev/null +++ b/src/IconSwitchAccessShortcutRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessShortcutRoundedFilled as default } diff --git a/src/IconSwitchAccessShortcutSharpFilled.tsx b/src/IconSwitchAccessShortcutSharpFilled.tsx new file mode 100644 index 000000000..a81ac3a5d --- /dev/null +++ b/src/IconSwitchAccessShortcutSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccessShortcutSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccessShortcutSharpFilled as default } diff --git a/src/IconSwitchAccountOutlinedFilled.tsx b/src/IconSwitchAccountOutlinedFilled.tsx new file mode 100644 index 000000000..6360a2e4f --- /dev/null +++ b/src/IconSwitchAccountOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccountOutlinedFilled as default } diff --git a/src/IconSwitchAccountRoundedFilled.tsx b/src/IconSwitchAccountRoundedFilled.tsx new file mode 100644 index 000000000..57ee62efc --- /dev/null +++ b/src/IconSwitchAccountRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccountRoundedFilled as default } diff --git a/src/IconSwitchAccountSharpFilled.tsx b/src/IconSwitchAccountSharpFilled.tsx new file mode 100644 index 000000000..b1a3016d0 --- /dev/null +++ b/src/IconSwitchAccountSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchAccountSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchAccountSharpFilled as default } diff --git a/src/IconSwitchCameraOutlinedFilled.tsx b/src/IconSwitchCameraOutlinedFilled.tsx new file mode 100644 index 000000000..fd24a2e7d --- /dev/null +++ b/src/IconSwitchCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchCameraOutlinedFilled as default } diff --git a/src/IconSwitchCameraRoundedFilled.tsx b/src/IconSwitchCameraRoundedFilled.tsx new file mode 100644 index 000000000..e59fe4def --- /dev/null +++ b/src/IconSwitchCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchCameraRoundedFilled as default } diff --git a/src/IconSwitchCameraSharpFilled.tsx b/src/IconSwitchCameraSharpFilled.tsx new file mode 100644 index 000000000..abe1c561e --- /dev/null +++ b/src/IconSwitchCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchCameraSharpFilled as default } diff --git a/src/IconSwitchLeftOutlinedFilled.tsx b/src/IconSwitchLeftOutlinedFilled.tsx new file mode 100644 index 000000000..ba32e7675 --- /dev/null +++ b/src/IconSwitchLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchLeftOutlinedFilled as default } diff --git a/src/IconSwitchLeftRoundedFilled.tsx b/src/IconSwitchLeftRoundedFilled.tsx new file mode 100644 index 000000000..69e623c60 --- /dev/null +++ b/src/IconSwitchLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchLeftRoundedFilled as default } diff --git a/src/IconSwitchLeftSharpFilled.tsx b/src/IconSwitchLeftSharpFilled.tsx new file mode 100644 index 000000000..9f1a5d314 --- /dev/null +++ b/src/IconSwitchLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchLeftSharpFilled as default } diff --git a/src/IconSwitchOutlinedFilled.tsx b/src/IconSwitchOutlinedFilled.tsx new file mode 100644 index 000000000..7c7b98c5d --- /dev/null +++ b/src/IconSwitchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchOutlinedFilled as default } diff --git a/src/IconSwitchRightOutlinedFilled.tsx b/src/IconSwitchRightOutlinedFilled.tsx new file mode 100644 index 000000000..9aa3a4ea8 --- /dev/null +++ b/src/IconSwitchRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchRightOutlinedFilled as default } diff --git a/src/IconSwitchRightRoundedFilled.tsx b/src/IconSwitchRightRoundedFilled.tsx new file mode 100644 index 000000000..dfa9ccd07 --- /dev/null +++ b/src/IconSwitchRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchRightRoundedFilled as default } diff --git a/src/IconSwitchRightSharpFilled.tsx b/src/IconSwitchRightSharpFilled.tsx new file mode 100644 index 000000000..7baa73b83 --- /dev/null +++ b/src/IconSwitchRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchRightSharpFilled as default } diff --git a/src/IconSwitchRoundedFilled.tsx b/src/IconSwitchRoundedFilled.tsx new file mode 100644 index 000000000..44f740437 --- /dev/null +++ b/src/IconSwitchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchRoundedFilled as default } diff --git a/src/IconSwitchSharpFilled.tsx b/src/IconSwitchSharpFilled.tsx new file mode 100644 index 000000000..ad7f1e358 --- /dev/null +++ b/src/IconSwitchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchSharpFilled as default } diff --git a/src/IconSwitchVideoOutlinedFilled.tsx b/src/IconSwitchVideoOutlinedFilled.tsx new file mode 100644 index 000000000..6d3360fb0 --- /dev/null +++ b/src/IconSwitchVideoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchVideoOutlinedFilled as default } diff --git a/src/IconSwitchVideoRoundedFilled.tsx b/src/IconSwitchVideoRoundedFilled.tsx new file mode 100644 index 000000000..ec65d2579 --- /dev/null +++ b/src/IconSwitchVideoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchVideoRoundedFilled as default } diff --git a/src/IconSwitchVideoSharpFilled.tsx b/src/IconSwitchVideoSharpFilled.tsx new file mode 100644 index 000000000..ba14b6fac --- /dev/null +++ b/src/IconSwitchVideoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchVideoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchVideoSharpFilled as default } diff --git a/src/IconSwitchesOutlinedFilled.tsx b/src/IconSwitchesOutlinedFilled.tsx new file mode 100644 index 000000000..d8f6a55a2 --- /dev/null +++ b/src/IconSwitchesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchesOutlinedFilled as default } diff --git a/src/IconSwitchesRoundedFilled.tsx b/src/IconSwitchesRoundedFilled.tsx new file mode 100644 index 000000000..ccff9041e --- /dev/null +++ b/src/IconSwitchesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchesRoundedFilled as default } diff --git a/src/IconSwitchesSharpFilled.tsx b/src/IconSwitchesSharpFilled.tsx new file mode 100644 index 000000000..2389a06e8 --- /dev/null +++ b/src/IconSwitchesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwitchesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwitchesSharpFilled as default } diff --git a/src/IconSwordRoseOutlinedFilled.tsx b/src/IconSwordRoseOutlinedFilled.tsx new file mode 100644 index 000000000..4c5dfc2e4 --- /dev/null +++ b/src/IconSwordRoseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwordRoseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwordRoseOutlinedFilled as default } diff --git a/src/IconSwordRoseRoundedFilled.tsx b/src/IconSwordRoseRoundedFilled.tsx new file mode 100644 index 000000000..8271404b5 --- /dev/null +++ b/src/IconSwordRoseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwordRoseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwordRoseRoundedFilled as default } diff --git a/src/IconSwordRoseSharpFilled.tsx b/src/IconSwordRoseSharpFilled.tsx new file mode 100644 index 000000000..fa8d27fa1 --- /dev/null +++ b/src/IconSwordRoseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwordRoseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwordRoseSharpFilled as default } diff --git a/src/IconSwordsOutlinedFilled.tsx b/src/IconSwordsOutlinedFilled.tsx new file mode 100644 index 000000000..20b93aee6 --- /dev/null +++ b/src/IconSwordsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwordsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwordsOutlinedFilled as default } diff --git a/src/IconSwordsRoundedFilled.tsx b/src/IconSwordsRoundedFilled.tsx new file mode 100644 index 000000000..bed286617 --- /dev/null +++ b/src/IconSwordsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwordsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwordsRoundedFilled as default } diff --git a/src/IconSwordsSharpFilled.tsx b/src/IconSwordsSharpFilled.tsx new file mode 100644 index 000000000..c821ab13d --- /dev/null +++ b/src/IconSwordsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSwordsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSwordsSharpFilled as default } diff --git a/src/IconSymptomsOutlinedFilled.tsx b/src/IconSymptomsOutlinedFilled.tsx new file mode 100644 index 000000000..32d9a884a --- /dev/null +++ b/src/IconSymptomsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSymptomsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSymptomsOutlinedFilled as default } diff --git a/src/IconSymptomsRoundedFilled.tsx b/src/IconSymptomsRoundedFilled.tsx new file mode 100644 index 000000000..0b33a4c93 --- /dev/null +++ b/src/IconSymptomsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSymptomsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSymptomsRoundedFilled as default } diff --git a/src/IconSymptomsSharpFilled.tsx b/src/IconSymptomsSharpFilled.tsx new file mode 100644 index 000000000..0861d80cc --- /dev/null +++ b/src/IconSymptomsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSymptomsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSymptomsSharpFilled as default } diff --git a/src/IconSynagogueOutlinedFilled.tsx b/src/IconSynagogueOutlinedFilled.tsx new file mode 100644 index 000000000..f48c1936f --- /dev/null +++ b/src/IconSynagogueOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSynagogueOutlinedFilled as default } diff --git a/src/IconSynagogueRoundedFilled.tsx b/src/IconSynagogueRoundedFilled.tsx new file mode 100644 index 000000000..d831ac226 --- /dev/null +++ b/src/IconSynagogueRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSynagogueRoundedFilled as default } diff --git a/src/IconSynagogueSharpFilled.tsx b/src/IconSynagogueSharpFilled.tsx new file mode 100644 index 000000000..c5737b3bc --- /dev/null +++ b/src/IconSynagogueSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSynagogueSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSynagogueSharpFilled as default } diff --git a/src/IconSyncAltOutlinedFilled.tsx b/src/IconSyncAltOutlinedFilled.tsx new file mode 100644 index 000000000..4f538b4a3 --- /dev/null +++ b/src/IconSyncAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncAltOutlinedFilled as default } diff --git a/src/IconSyncAltRoundedFilled.tsx b/src/IconSyncAltRoundedFilled.tsx new file mode 100644 index 000000000..c3ff7e9d3 --- /dev/null +++ b/src/IconSyncAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncAltRoundedFilled as default } diff --git a/src/IconSyncAltSharpFilled.tsx b/src/IconSyncAltSharpFilled.tsx new file mode 100644 index 000000000..2258df58d --- /dev/null +++ b/src/IconSyncAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncAltSharpFilled as default } diff --git a/src/IconSyncDesktopOutlinedFilled.tsx b/src/IconSyncDesktopOutlinedFilled.tsx new file mode 100644 index 000000000..78cd4932c --- /dev/null +++ b/src/IconSyncDesktopOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDesktopOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncDesktopOutlinedFilled as default } diff --git a/src/IconSyncDesktopRoundedFilled.tsx b/src/IconSyncDesktopRoundedFilled.tsx new file mode 100644 index 000000000..5a33d4cb7 --- /dev/null +++ b/src/IconSyncDesktopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDesktopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncDesktopRoundedFilled as default } diff --git a/src/IconSyncDesktopSharpFilled.tsx b/src/IconSyncDesktopSharpFilled.tsx new file mode 100644 index 000000000..0a6e8d135 --- /dev/null +++ b/src/IconSyncDesktopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDesktopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncDesktopSharpFilled as default } diff --git a/src/IconSyncDisabledOutlinedFilled.tsx b/src/IconSyncDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..0f1d8f277 --- /dev/null +++ b/src/IconSyncDisabledOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncDisabledOutlinedFilled as default } diff --git a/src/IconSyncDisabledRoundedFilled.tsx b/src/IconSyncDisabledRoundedFilled.tsx new file mode 100644 index 000000000..ed73b7cc8 --- /dev/null +++ b/src/IconSyncDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncDisabledRoundedFilled as default } diff --git a/src/IconSyncDisabledSharpFilled.tsx b/src/IconSyncDisabledSharpFilled.tsx new file mode 100644 index 000000000..d9aaedc92 --- /dev/null +++ b/src/IconSyncDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncDisabledSharpFilled as default } diff --git a/src/IconSyncLockOutlinedFilled.tsx b/src/IconSyncLockOutlinedFilled.tsx new file mode 100644 index 000000000..408244878 --- /dev/null +++ b/src/IconSyncLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncLockOutlinedFilled as default } diff --git a/src/IconSyncLockRoundedFilled.tsx b/src/IconSyncLockRoundedFilled.tsx new file mode 100644 index 000000000..a0707c61a --- /dev/null +++ b/src/IconSyncLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncLockRoundedFilled as default } diff --git a/src/IconSyncLockSharpFilled.tsx b/src/IconSyncLockSharpFilled.tsx new file mode 100644 index 000000000..a37bdb5d7 --- /dev/null +++ b/src/IconSyncLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncLockSharpFilled as default } diff --git a/src/IconSyncOutlinedFilled.tsx b/src/IconSyncOutlinedFilled.tsx new file mode 100644 index 000000000..4a5947a3d --- /dev/null +++ b/src/IconSyncOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncOutlinedFilled as default } diff --git a/src/IconSyncProblemOutlinedFilled.tsx b/src/IconSyncProblemOutlinedFilled.tsx new file mode 100644 index 000000000..7a224bde6 --- /dev/null +++ b/src/IconSyncProblemOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncProblemOutlinedFilled as default } diff --git a/src/IconSyncProblemRoundedFilled.tsx b/src/IconSyncProblemRoundedFilled.tsx new file mode 100644 index 000000000..b5ab66edb --- /dev/null +++ b/src/IconSyncProblemRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncProblemRoundedFilled as default } diff --git a/src/IconSyncProblemSharpFilled.tsx b/src/IconSyncProblemSharpFilled.tsx new file mode 100644 index 000000000..4fe61bcab --- /dev/null +++ b/src/IconSyncProblemSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncProblemSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncProblemSharpFilled as default } diff --git a/src/IconSyncRoundedFilled.tsx b/src/IconSyncRoundedFilled.tsx new file mode 100644 index 000000000..e798c7613 --- /dev/null +++ b/src/IconSyncRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncRoundedFilled as default } diff --git a/src/IconSyncSavedLocallyOutlinedFilled.tsx b/src/IconSyncSavedLocallyOutlinedFilled.tsx new file mode 100644 index 000000000..92f73d62e --- /dev/null +++ b/src/IconSyncSavedLocallyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncSavedLocallyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncSavedLocallyOutlinedFilled as default } diff --git a/src/IconSyncSavedLocallyRoundedFilled.tsx b/src/IconSyncSavedLocallyRoundedFilled.tsx new file mode 100644 index 000000000..32b8ed75c --- /dev/null +++ b/src/IconSyncSavedLocallyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncSavedLocallyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncSavedLocallyRoundedFilled as default } diff --git a/src/IconSyncSavedLocallySharpFilled.tsx b/src/IconSyncSavedLocallySharpFilled.tsx new file mode 100644 index 000000000..e06fef030 --- /dev/null +++ b/src/IconSyncSavedLocallySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncSavedLocallySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncSavedLocallySharpFilled as default } diff --git a/src/IconSyncSharpFilled.tsx b/src/IconSyncSharpFilled.tsx new file mode 100644 index 000000000..95a1f660e --- /dev/null +++ b/src/IconSyncSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyncSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyncSharpFilled as default } diff --git a/src/IconSyringeOutlinedFilled.tsx b/src/IconSyringeOutlinedFilled.tsx new file mode 100644 index 000000000..14da88e0d --- /dev/null +++ b/src/IconSyringeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyringeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyringeOutlinedFilled as default } diff --git a/src/IconSyringeRoundedFilled.tsx b/src/IconSyringeRoundedFilled.tsx new file mode 100644 index 000000000..9b19c27f7 --- /dev/null +++ b/src/IconSyringeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyringeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyringeRoundedFilled as default } diff --git a/src/IconSyringeSharpFilled.tsx b/src/IconSyringeSharpFilled.tsx new file mode 100644 index 000000000..0b98010ed --- /dev/null +++ b/src/IconSyringeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSyringeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSyringeSharpFilled as default } diff --git a/src/IconSystemUpdateAltOutlinedFilled.tsx b/src/IconSystemUpdateAltOutlinedFilled.tsx new file mode 100644 index 000000000..7412f0cc0 --- /dev/null +++ b/src/IconSystemUpdateAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSystemUpdateAltOutlinedFilled as default } diff --git a/src/IconSystemUpdateAltRoundedFilled.tsx b/src/IconSystemUpdateAltRoundedFilled.tsx new file mode 100644 index 000000000..8100f78ea --- /dev/null +++ b/src/IconSystemUpdateAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconSystemUpdateAltRoundedFilled as default } diff --git a/src/IconSystemUpdateAltSharpFilled.tsx b/src/IconSystemUpdateAltSharpFilled.tsx new file mode 100644 index 000000000..1eff15097 --- /dev/null +++ b/src/IconSystemUpdateAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSystemUpdateAltSharpFilled as default } diff --git a/src/IconSystemUpdateOutlinedFilled.tsx b/src/IconSystemUpdateOutlinedFilled.tsx new file mode 100644 index 000000000..44901cf42 --- /dev/null +++ b/src/IconSystemUpdateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSystemUpdateOutlinedFilled as default } diff --git a/src/IconSystemUpdateRoundedFilled.tsx b/src/IconSystemUpdateRoundedFilled.tsx new file mode 100644 index 000000000..f712e66f8 --- /dev/null +++ b/src/IconSystemUpdateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSystemUpdateRoundedFilled as default } diff --git a/src/IconSystemUpdateSharpFilled.tsx b/src/IconSystemUpdateSharpFilled.tsx new file mode 100644 index 000000000..7cd40f072 --- /dev/null +++ b/src/IconSystemUpdateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconSystemUpdateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconSystemUpdateSharpFilled as default } diff --git a/src/IconTabCloseOutlinedFilled.tsx b/src/IconTabCloseOutlinedFilled.tsx new file mode 100644 index 000000000..f1b4f8196 --- /dev/null +++ b/src/IconTabCloseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabCloseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabCloseOutlinedFilled as default } diff --git a/src/IconTabCloseRightOutlinedFilled.tsx b/src/IconTabCloseRightOutlinedFilled.tsx new file mode 100644 index 000000000..6bd853328 --- /dev/null +++ b/src/IconTabCloseRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabCloseRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabCloseRightOutlinedFilled as default } diff --git a/src/IconTabCloseRightRoundedFilled.tsx b/src/IconTabCloseRightRoundedFilled.tsx new file mode 100644 index 000000000..9e2ead516 --- /dev/null +++ b/src/IconTabCloseRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabCloseRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabCloseRightRoundedFilled as default } diff --git a/src/IconTabCloseRightSharpFilled.tsx b/src/IconTabCloseRightSharpFilled.tsx new file mode 100644 index 000000000..7e22b3bd2 --- /dev/null +++ b/src/IconTabCloseRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabCloseRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabCloseRightSharpFilled as default } diff --git a/src/IconTabCloseRoundedFilled.tsx b/src/IconTabCloseRoundedFilled.tsx new file mode 100644 index 000000000..066276ce9 --- /dev/null +++ b/src/IconTabCloseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabCloseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabCloseRoundedFilled as default } diff --git a/src/IconTabCloseSharpFilled.tsx b/src/IconTabCloseSharpFilled.tsx new file mode 100644 index 000000000..8808000b8 --- /dev/null +++ b/src/IconTabCloseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabCloseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabCloseSharpFilled as default } diff --git a/src/IconTabDuplicateOutlinedFilled.tsx b/src/IconTabDuplicateOutlinedFilled.tsx new file mode 100644 index 000000000..55dbf3edc --- /dev/null +++ b/src/IconTabDuplicateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabDuplicateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabDuplicateOutlinedFilled as default } diff --git a/src/IconTabDuplicateRoundedFilled.tsx b/src/IconTabDuplicateRoundedFilled.tsx new file mode 100644 index 000000000..c8f98da45 --- /dev/null +++ b/src/IconTabDuplicateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabDuplicateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabDuplicateRoundedFilled as default } diff --git a/src/IconTabDuplicateSharpFilled.tsx b/src/IconTabDuplicateSharpFilled.tsx new file mode 100644 index 000000000..cdc8b6f11 --- /dev/null +++ b/src/IconTabDuplicateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabDuplicateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabDuplicateSharpFilled as default } diff --git a/src/IconTabGroupOutlinedFilled.tsx b/src/IconTabGroupOutlinedFilled.tsx new file mode 100644 index 000000000..ef20a2ddd --- /dev/null +++ b/src/IconTabGroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabGroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabGroupOutlinedFilled as default } diff --git a/src/IconTabGroupRoundedFilled.tsx b/src/IconTabGroupRoundedFilled.tsx new file mode 100644 index 000000000..5db909bd6 --- /dev/null +++ b/src/IconTabGroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabGroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabGroupRoundedFilled as default } diff --git a/src/IconTabGroupSharpFilled.tsx b/src/IconTabGroupSharpFilled.tsx new file mode 100644 index 000000000..737871ac9 --- /dev/null +++ b/src/IconTabGroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabGroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabGroupSharpFilled as default } diff --git a/src/IconTabInactiveOutlinedFilled.tsx b/src/IconTabInactiveOutlinedFilled.tsx new file mode 100644 index 000000000..4c32df3e5 --- /dev/null +++ b/src/IconTabInactiveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabInactiveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabInactiveOutlinedFilled as default } diff --git a/src/IconTabInactiveRoundedFilled.tsx b/src/IconTabInactiveRoundedFilled.tsx new file mode 100644 index 000000000..75a626e01 --- /dev/null +++ b/src/IconTabInactiveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabInactiveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabInactiveRoundedFilled as default } diff --git a/src/IconTabInactiveSharpFilled.tsx b/src/IconTabInactiveSharpFilled.tsx new file mode 100644 index 000000000..35f7289a5 --- /dev/null +++ b/src/IconTabInactiveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabInactiveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabInactiveSharpFilled as default } diff --git a/src/IconTabMoveOutlinedFilled.tsx b/src/IconTabMoveOutlinedFilled.tsx new file mode 100644 index 000000000..24a24a2b8 --- /dev/null +++ b/src/IconTabMoveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabMoveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabMoveOutlinedFilled as default } diff --git a/src/IconTabMoveRoundedFilled.tsx b/src/IconTabMoveRoundedFilled.tsx new file mode 100644 index 000000000..72e1c105a --- /dev/null +++ b/src/IconTabMoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabMoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabMoveRoundedFilled as default } diff --git a/src/IconTabMoveSharpFilled.tsx b/src/IconTabMoveSharpFilled.tsx new file mode 100644 index 000000000..30ebfb59c --- /dev/null +++ b/src/IconTabMoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabMoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabMoveSharpFilled as default } diff --git a/src/IconTabNewRightOutlinedFilled.tsx b/src/IconTabNewRightOutlinedFilled.tsx new file mode 100644 index 000000000..c75e9011c --- /dev/null +++ b/src/IconTabNewRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabNewRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabNewRightOutlinedFilled as default } diff --git a/src/IconTabNewRightRoundedFilled.tsx b/src/IconTabNewRightRoundedFilled.tsx new file mode 100644 index 000000000..c649c55e1 --- /dev/null +++ b/src/IconTabNewRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabNewRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabNewRightRoundedFilled as default } diff --git a/src/IconTabNewRightSharpFilled.tsx b/src/IconTabNewRightSharpFilled.tsx new file mode 100644 index 000000000..6119c2441 --- /dev/null +++ b/src/IconTabNewRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabNewRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabNewRightSharpFilled as default } diff --git a/src/IconTabOutlinedFilled.tsx b/src/IconTabOutlinedFilled.tsx new file mode 100644 index 000000000..fdb5333e4 --- /dev/null +++ b/src/IconTabOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabOutlinedFilled as default } diff --git a/src/IconTabRecentOutlinedFilled.tsx b/src/IconTabRecentOutlinedFilled.tsx new file mode 100644 index 000000000..39eb47462 --- /dev/null +++ b/src/IconTabRecentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabRecentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabRecentOutlinedFilled as default } diff --git a/src/IconTabRecentRoundedFilled.tsx b/src/IconTabRecentRoundedFilled.tsx new file mode 100644 index 000000000..1b6c6c904 --- /dev/null +++ b/src/IconTabRecentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabRecentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabRecentRoundedFilled as default } diff --git a/src/IconTabRecentSharpFilled.tsx b/src/IconTabRecentSharpFilled.tsx new file mode 100644 index 000000000..008416923 --- /dev/null +++ b/src/IconTabRecentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabRecentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabRecentSharpFilled as default } diff --git a/src/IconTabRoundedFilled.tsx b/src/IconTabRoundedFilled.tsx new file mode 100644 index 000000000..a3ac9e98a --- /dev/null +++ b/src/IconTabRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabRoundedFilled as default } diff --git a/src/IconTabSharpFilled.tsx b/src/IconTabSharpFilled.tsx new file mode 100644 index 000000000..538030de0 --- /dev/null +++ b/src/IconTabSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabSharpFilled as default } diff --git a/src/IconTabUnselectedOutlinedFilled.tsx b/src/IconTabUnselectedOutlinedFilled.tsx new file mode 100644 index 000000000..0e2acd7a1 --- /dev/null +++ b/src/IconTabUnselectedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabUnselectedOutlinedFilled as default } diff --git a/src/IconTabUnselectedRoundedFilled.tsx b/src/IconTabUnselectedRoundedFilled.tsx new file mode 100644 index 000000000..9ac09e40f --- /dev/null +++ b/src/IconTabUnselectedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabUnselectedRoundedFilled as default } diff --git a/src/IconTabUnselectedSharpFilled.tsx b/src/IconTabUnselectedSharpFilled.tsx new file mode 100644 index 000000000..0443c5bec --- /dev/null +++ b/src/IconTabUnselectedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabUnselectedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabUnselectedSharpFilled as default } diff --git a/src/IconTableBarOutlinedFilled.tsx b/src/IconTableBarOutlinedFilled.tsx new file mode 100644 index 000000000..566a42cb6 --- /dev/null +++ b/src/IconTableBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableBarOutlinedFilled as default } diff --git a/src/IconTableBarRoundedFilled.tsx b/src/IconTableBarRoundedFilled.tsx new file mode 100644 index 000000000..6e1a62c19 --- /dev/null +++ b/src/IconTableBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableBarRoundedFilled as default } diff --git a/src/IconTableBarSharpFilled.tsx b/src/IconTableBarSharpFilled.tsx new file mode 100644 index 000000000..6bdb708af --- /dev/null +++ b/src/IconTableBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableBarSharpFilled as default } diff --git a/src/IconTableChartOutlinedFilled.tsx b/src/IconTableChartOutlinedFilled.tsx new file mode 100644 index 000000000..19555b8a8 --- /dev/null +++ b/src/IconTableChartOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartOutlinedFilled as default } diff --git a/src/IconTableChartRoundedFilled.tsx b/src/IconTableChartRoundedFilled.tsx new file mode 100644 index 000000000..2ab9f990c --- /dev/null +++ b/src/IconTableChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartRoundedFilled as default } diff --git a/src/IconTableChartSharpFilled.tsx b/src/IconTableChartSharpFilled.tsx new file mode 100644 index 000000000..95c9858dd --- /dev/null +++ b/src/IconTableChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartSharpFilled as default } diff --git a/src/IconTableChartViewOutlinedFilled.tsx b/src/IconTableChartViewOutlinedFilled.tsx new file mode 100644 index 000000000..03e534262 --- /dev/null +++ b/src/IconTableChartViewOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartViewOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartViewOutlinedFilled as default } diff --git a/src/IconTableChartViewRoundedFilled.tsx b/src/IconTableChartViewRoundedFilled.tsx new file mode 100644 index 000000000..c64934b40 --- /dev/null +++ b/src/IconTableChartViewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartViewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartViewRoundedFilled as default } diff --git a/src/IconTableChartViewSharpFilled.tsx b/src/IconTableChartViewSharpFilled.tsx new file mode 100644 index 000000000..8f56dbe2b --- /dev/null +++ b/src/IconTableChartViewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableChartViewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableChartViewSharpFilled as default } diff --git a/src/IconTableEyeOutlinedFilled.tsx b/src/IconTableEyeOutlinedFilled.tsx new file mode 100644 index 000000000..a1b429ce9 --- /dev/null +++ b/src/IconTableEyeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableEyeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableEyeOutlinedFilled as default } diff --git a/src/IconTableEyeRoundedFilled.tsx b/src/IconTableEyeRoundedFilled.tsx new file mode 100644 index 000000000..b629716bd --- /dev/null +++ b/src/IconTableEyeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableEyeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableEyeRoundedFilled as default } diff --git a/src/IconTableEyeSharpFilled.tsx b/src/IconTableEyeSharpFilled.tsx new file mode 100644 index 000000000..1909f958d --- /dev/null +++ b/src/IconTableEyeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableEyeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableEyeSharpFilled as default } diff --git a/src/IconTableLampOutlinedFilled.tsx b/src/IconTableLampOutlinedFilled.tsx new file mode 100644 index 000000000..ee594bc70 --- /dev/null +++ b/src/IconTableLampOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableLampOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableLampOutlinedFilled as default } diff --git a/src/IconTableLampRoundedFilled.tsx b/src/IconTableLampRoundedFilled.tsx new file mode 100644 index 000000000..427a3745b --- /dev/null +++ b/src/IconTableLampRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableLampRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableLampRoundedFilled as default } diff --git a/src/IconTableLampSharpFilled.tsx b/src/IconTableLampSharpFilled.tsx new file mode 100644 index 000000000..dde5a1c0b --- /dev/null +++ b/src/IconTableLampSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableLampSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableLampSharpFilled as default } diff --git a/src/IconTableOutlinedFilled.tsx b/src/IconTableOutlinedFilled.tsx new file mode 100644 index 000000000..e0dda776b --- /dev/null +++ b/src/IconTableOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableOutlinedFilled as default } diff --git a/src/IconTableRestaurantOutlinedFilled.tsx b/src/IconTableRestaurantOutlinedFilled.tsx new file mode 100644 index 000000000..4af2267c8 --- /dev/null +++ b/src/IconTableRestaurantOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRestaurantOutlinedFilled as default } diff --git a/src/IconTableRestaurantRoundedFilled.tsx b/src/IconTableRestaurantRoundedFilled.tsx new file mode 100644 index 000000000..d95cfb7b3 --- /dev/null +++ b/src/IconTableRestaurantRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRestaurantRoundedFilled as default } diff --git a/src/IconTableRestaurantSharpFilled.tsx b/src/IconTableRestaurantSharpFilled.tsx new file mode 100644 index 000000000..efb141df9 --- /dev/null +++ b/src/IconTableRestaurantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRestaurantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRestaurantSharpFilled as default } diff --git a/src/IconTableRoundedFilled.tsx b/src/IconTableRoundedFilled.tsx new file mode 100644 index 000000000..8f26e73e6 --- /dev/null +++ b/src/IconTableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRoundedFilled as default } diff --git a/src/IconTableRowsNarrowOutlinedFilled.tsx b/src/IconTableRowsNarrowOutlinedFilled.tsx new file mode 100644 index 000000000..eaabb179a --- /dev/null +++ b/src/IconTableRowsNarrowOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsNarrowOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRowsNarrowOutlinedFilled as default } diff --git a/src/IconTableRowsNarrowRoundedFilled.tsx b/src/IconTableRowsNarrowRoundedFilled.tsx new file mode 100644 index 000000000..924b154d7 --- /dev/null +++ b/src/IconTableRowsNarrowRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsNarrowRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRowsNarrowRoundedFilled as default } diff --git a/src/IconTableRowsNarrowSharpFilled.tsx b/src/IconTableRowsNarrowSharpFilled.tsx new file mode 100644 index 000000000..a6fd073db --- /dev/null +++ b/src/IconTableRowsNarrowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsNarrowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRowsNarrowSharpFilled as default } diff --git a/src/IconTableRowsOutlinedFilled.tsx b/src/IconTableRowsOutlinedFilled.tsx new file mode 100644 index 000000000..ba316d4bb --- /dev/null +++ b/src/IconTableRowsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRowsOutlinedFilled as default } diff --git a/src/IconTableRowsRoundedFilled.tsx b/src/IconTableRowsRoundedFilled.tsx new file mode 100644 index 000000000..85ec2882c --- /dev/null +++ b/src/IconTableRowsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRowsRoundedFilled as default } diff --git a/src/IconTableRowsSharpFilled.tsx b/src/IconTableRowsSharpFilled.tsx new file mode 100644 index 000000000..da16c1ba8 --- /dev/null +++ b/src/IconTableRowsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableRowsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableRowsSharpFilled as default } diff --git a/src/IconTableSharpFilled.tsx b/src/IconTableSharpFilled.tsx new file mode 100644 index 000000000..8ae17e0f5 --- /dev/null +++ b/src/IconTableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableSharpFilled as default } diff --git a/src/IconTableViewOutlinedFilled.tsx b/src/IconTableViewOutlinedFilled.tsx new file mode 100644 index 000000000..5526cbd9d --- /dev/null +++ b/src/IconTableViewOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableViewOutlinedFilled as default } diff --git a/src/IconTableViewRoundedFilled.tsx b/src/IconTableViewRoundedFilled.tsx new file mode 100644 index 000000000..6a67fbd12 --- /dev/null +++ b/src/IconTableViewRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableViewRoundedFilled as default } diff --git a/src/IconTableViewSharpFilled.tsx b/src/IconTableViewSharpFilled.tsx new file mode 100644 index 000000000..50ef4dffe --- /dev/null +++ b/src/IconTableViewSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTableViewSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTableViewSharpFilled as default } diff --git a/src/IconTabletAndroidOutlinedFilled.tsx b/src/IconTabletAndroidOutlinedFilled.tsx new file mode 100644 index 000000000..f90a9038a --- /dev/null +++ b/src/IconTabletAndroidOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletAndroidOutlinedFilled as default } diff --git a/src/IconTabletAndroidRoundedFilled.tsx b/src/IconTabletAndroidRoundedFilled.tsx new file mode 100644 index 000000000..3aa0c5b37 --- /dev/null +++ b/src/IconTabletAndroidRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletAndroidRoundedFilled as default } diff --git a/src/IconTabletAndroidSharpFilled.tsx b/src/IconTabletAndroidSharpFilled.tsx new file mode 100644 index 000000000..bb86f959e --- /dev/null +++ b/src/IconTabletAndroidSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletAndroidSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletAndroidSharpFilled as default } diff --git a/src/IconTabletCameraOutlinedFilled.tsx b/src/IconTabletCameraOutlinedFilled.tsx new file mode 100644 index 000000000..6eaf68c7d --- /dev/null +++ b/src/IconTabletCameraOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletCameraOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletCameraOutlinedFilled as default } diff --git a/src/IconTabletCameraRoundedFilled.tsx b/src/IconTabletCameraRoundedFilled.tsx new file mode 100644 index 000000000..1ffd42e9b --- /dev/null +++ b/src/IconTabletCameraRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletCameraRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletCameraRoundedFilled as default } diff --git a/src/IconTabletCameraSharpFilled.tsx b/src/IconTabletCameraSharpFilled.tsx new file mode 100644 index 000000000..899974a89 --- /dev/null +++ b/src/IconTabletCameraSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletCameraSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletCameraSharpFilled as default } diff --git a/src/IconTabletMacOutlinedFilled.tsx b/src/IconTabletMacOutlinedFilled.tsx new file mode 100644 index 000000000..929618d21 --- /dev/null +++ b/src/IconTabletMacOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletMacOutlinedFilled as default } diff --git a/src/IconTabletMacRoundedFilled.tsx b/src/IconTabletMacRoundedFilled.tsx new file mode 100644 index 000000000..9cecc0bb5 --- /dev/null +++ b/src/IconTabletMacRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletMacRoundedFilled as default } diff --git a/src/IconTabletMacSharpFilled.tsx b/src/IconTabletMacSharpFilled.tsx new file mode 100644 index 000000000..0095f5d1c --- /dev/null +++ b/src/IconTabletMacSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletMacSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletMacSharpFilled as default } diff --git a/src/IconTabletOutlinedFilled.tsx b/src/IconTabletOutlinedFilled.tsx new file mode 100644 index 000000000..1e641b99b --- /dev/null +++ b/src/IconTabletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletOutlinedFilled as default } diff --git a/src/IconTabletRoundedFilled.tsx b/src/IconTabletRoundedFilled.tsx new file mode 100644 index 000000000..6f87aadde --- /dev/null +++ b/src/IconTabletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletRoundedFilled as default } diff --git a/src/IconTabletSharpFilled.tsx b/src/IconTabletSharpFilled.tsx new file mode 100644 index 000000000..c86286437 --- /dev/null +++ b/src/IconTabletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabletSharpFilled as default } diff --git a/src/IconTabsOutlinedFilled.tsx b/src/IconTabsOutlinedFilled.tsx new file mode 100644 index 000000000..84f0f358d --- /dev/null +++ b/src/IconTabsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabsOutlinedFilled as default } diff --git a/src/IconTabsRoundedFilled.tsx b/src/IconTabsRoundedFilled.tsx new file mode 100644 index 000000000..7e18bcb98 --- /dev/null +++ b/src/IconTabsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabsRoundedFilled as default } diff --git a/src/IconTabsSharpFilled.tsx b/src/IconTabsSharpFilled.tsx new file mode 100644 index 000000000..cbe835ad7 --- /dev/null +++ b/src/IconTabsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTabsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTabsSharpFilled as default } diff --git a/src/IconTacticOutlinedFilled.tsx b/src/IconTacticOutlinedFilled.tsx new file mode 100644 index 000000000..01cc25847 --- /dev/null +++ b/src/IconTacticOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTacticOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTacticOutlinedFilled as default } diff --git a/src/IconTacticRoundedFilled.tsx b/src/IconTacticRoundedFilled.tsx new file mode 100644 index 000000000..9ba379e6e --- /dev/null +++ b/src/IconTacticRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTacticRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTacticRoundedFilled as default } diff --git a/src/IconTacticSharpFilled.tsx b/src/IconTacticSharpFilled.tsx new file mode 100644 index 000000000..b29e98053 --- /dev/null +++ b/src/IconTacticSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTacticSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTacticSharpFilled as default } diff --git a/src/IconTagOutlinedFilled.tsx b/src/IconTagOutlinedFilled.tsx new file mode 100644 index 000000000..f75017723 --- /dev/null +++ b/src/IconTagOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTagOutlinedFilled as default } diff --git a/src/IconTagRoundedFilled.tsx b/src/IconTagRoundedFilled.tsx new file mode 100644 index 000000000..aba858f52 --- /dev/null +++ b/src/IconTagRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTagRoundedFilled as default } diff --git a/src/IconTagSharpFilled.tsx b/src/IconTagSharpFilled.tsx new file mode 100644 index 000000000..99f57976f --- /dev/null +++ b/src/IconTagSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTagSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTagSharpFilled as default } diff --git a/src/IconTakeoutDiningOutlinedFilled.tsx b/src/IconTakeoutDiningOutlinedFilled.tsx new file mode 100644 index 000000000..5d5294da5 --- /dev/null +++ b/src/IconTakeoutDiningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTakeoutDiningOutlinedFilled as default } diff --git a/src/IconTakeoutDiningRoundedFilled.tsx b/src/IconTakeoutDiningRoundedFilled.tsx new file mode 100644 index 000000000..7b859a323 --- /dev/null +++ b/src/IconTakeoutDiningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTakeoutDiningRoundedFilled as default } diff --git a/src/IconTakeoutDiningSharpFilled.tsx b/src/IconTakeoutDiningSharpFilled.tsx new file mode 100644 index 000000000..97636bdd8 --- /dev/null +++ b/src/IconTakeoutDiningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTakeoutDiningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTakeoutDiningSharpFilled as default } diff --git a/src/IconTamperDetectionOffOutlinedFilled.tsx b/src/IconTamperDetectionOffOutlinedFilled.tsx new file mode 100644 index 000000000..625dd8ae2 --- /dev/null +++ b/src/IconTamperDetectionOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTamperDetectionOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTamperDetectionOffOutlinedFilled as default } diff --git a/src/IconTamperDetectionOffRoundedFilled.tsx b/src/IconTamperDetectionOffRoundedFilled.tsx new file mode 100644 index 000000000..e76a73016 --- /dev/null +++ b/src/IconTamperDetectionOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTamperDetectionOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTamperDetectionOffRoundedFilled as default } diff --git a/src/IconTamperDetectionOffSharpFilled.tsx b/src/IconTamperDetectionOffSharpFilled.tsx new file mode 100644 index 000000000..4725f88b7 --- /dev/null +++ b/src/IconTamperDetectionOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTamperDetectionOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTamperDetectionOffSharpFilled as default } diff --git a/src/IconTamperDetectionOnOutlinedFilled.tsx b/src/IconTamperDetectionOnOutlinedFilled.tsx new file mode 100644 index 000000000..d5f59513b --- /dev/null +++ b/src/IconTamperDetectionOnOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTamperDetectionOnOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTamperDetectionOnOutlinedFilled as default } diff --git a/src/IconTamperDetectionOnRoundedFilled.tsx b/src/IconTamperDetectionOnRoundedFilled.tsx new file mode 100644 index 000000000..9a57f60fc --- /dev/null +++ b/src/IconTamperDetectionOnRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTamperDetectionOnRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTamperDetectionOnRoundedFilled as default } diff --git a/src/IconTamperDetectionOnSharpFilled.tsx b/src/IconTamperDetectionOnSharpFilled.tsx new file mode 100644 index 000000000..9817caac5 --- /dev/null +++ b/src/IconTamperDetectionOnSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTamperDetectionOnSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTamperDetectionOnSharpFilled as default } diff --git a/src/IconTapAndPlayOutlinedFilled.tsx b/src/IconTapAndPlayOutlinedFilled.tsx new file mode 100644 index 000000000..80cc59857 --- /dev/null +++ b/src/IconTapAndPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTapAndPlayOutlinedFilled as default } diff --git a/src/IconTapAndPlayRoundedFilled.tsx b/src/IconTapAndPlayRoundedFilled.tsx new file mode 100644 index 000000000..fcc1ac198 --- /dev/null +++ b/src/IconTapAndPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTapAndPlayRoundedFilled as default } diff --git a/src/IconTapAndPlaySharpFilled.tsx b/src/IconTapAndPlaySharpFilled.tsx new file mode 100644 index 000000000..c40c92914 --- /dev/null +++ b/src/IconTapAndPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapAndPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTapAndPlaySharpFilled as default } diff --git a/src/IconTapasOutlinedFilled.tsx b/src/IconTapasOutlinedFilled.tsx new file mode 100644 index 000000000..9d3bf698c --- /dev/null +++ b/src/IconTapasOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTapasOutlinedFilled as default } diff --git a/src/IconTapasRoundedFilled.tsx b/src/IconTapasRoundedFilled.tsx new file mode 100644 index 000000000..3da16a1b0 --- /dev/null +++ b/src/IconTapasRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTapasRoundedFilled as default } diff --git a/src/IconTapasSharpFilled.tsx b/src/IconTapasSharpFilled.tsx new file mode 100644 index 000000000..a9dbb7c80 --- /dev/null +++ b/src/IconTapasSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTapasSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTapasSharpFilled as default } diff --git a/src/IconTargetOutlinedFilled.tsx b/src/IconTargetOutlinedFilled.tsx new file mode 100644 index 000000000..470941914 --- /dev/null +++ b/src/IconTargetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTargetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTargetOutlinedFilled as default } diff --git a/src/IconTargetRoundedFilled.tsx b/src/IconTargetRoundedFilled.tsx new file mode 100644 index 000000000..64f0e48b4 --- /dev/null +++ b/src/IconTargetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTargetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTargetRoundedFilled as default } diff --git a/src/IconTargetSharpFilled.tsx b/src/IconTargetSharpFilled.tsx new file mode 100644 index 000000000..bb24ec15a --- /dev/null +++ b/src/IconTargetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTargetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTargetSharpFilled as default } diff --git a/src/IconTaskAltOutlinedFilled.tsx b/src/IconTaskAltOutlinedFilled.tsx new file mode 100644 index 000000000..e10cb7802 --- /dev/null +++ b/src/IconTaskAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaskAltOutlinedFilled as default } diff --git a/src/IconTaskAltRoundedFilled.tsx b/src/IconTaskAltRoundedFilled.tsx new file mode 100644 index 000000000..0a097513f --- /dev/null +++ b/src/IconTaskAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaskAltRoundedFilled as default } diff --git a/src/IconTaskAltSharpFilled.tsx b/src/IconTaskAltSharpFilled.tsx new file mode 100644 index 000000000..8db74cf64 --- /dev/null +++ b/src/IconTaskAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaskAltSharpFilled as default } diff --git a/src/IconTaskOutlinedFilled.tsx b/src/IconTaskOutlinedFilled.tsx new file mode 100644 index 000000000..40b057094 --- /dev/null +++ b/src/IconTaskOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaskOutlinedFilled as default } diff --git a/src/IconTaskRoundedFilled.tsx b/src/IconTaskRoundedFilled.tsx new file mode 100644 index 000000000..81e7abe2d --- /dev/null +++ b/src/IconTaskRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaskRoundedFilled as default } diff --git a/src/IconTaskSharpFilled.tsx b/src/IconTaskSharpFilled.tsx new file mode 100644 index 000000000..0663f6079 --- /dev/null +++ b/src/IconTaskSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaskSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaskSharpFilled as default } diff --git a/src/IconTauntOutlinedFilled.tsx b/src/IconTauntOutlinedFilled.tsx new file mode 100644 index 000000000..2cb78c782 --- /dev/null +++ b/src/IconTauntOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTauntOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTauntOutlinedFilled as default } diff --git a/src/IconTauntRoundedFilled.tsx b/src/IconTauntRoundedFilled.tsx new file mode 100644 index 000000000..4f4560898 --- /dev/null +++ b/src/IconTauntRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTauntRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTauntRoundedFilled as default } diff --git a/src/IconTauntSharpFilled.tsx b/src/IconTauntSharpFilled.tsx new file mode 100644 index 000000000..6b72c1ea2 --- /dev/null +++ b/src/IconTauntSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTauntSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTauntSharpFilled as default } diff --git a/src/IconTaxiAlertOutlinedFilled.tsx b/src/IconTaxiAlertOutlinedFilled.tsx new file mode 100644 index 000000000..d1800de7a --- /dev/null +++ b/src/IconTaxiAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaxiAlertOutlinedFilled as default } diff --git a/src/IconTaxiAlertRoundedFilled.tsx b/src/IconTaxiAlertRoundedFilled.tsx new file mode 100644 index 000000000..0b4f01b53 --- /dev/null +++ b/src/IconTaxiAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaxiAlertRoundedFilled as default } diff --git a/src/IconTaxiAlertSharpFilled.tsx b/src/IconTaxiAlertSharpFilled.tsx new file mode 100644 index 000000000..2dcb58be6 --- /dev/null +++ b/src/IconTaxiAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTaxiAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTaxiAlertSharpFilled as default } diff --git a/src/IconTeamDashboardOutlinedFilled.tsx b/src/IconTeamDashboardOutlinedFilled.tsx new file mode 100644 index 000000000..f459865eb --- /dev/null +++ b/src/IconTeamDashboardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTeamDashboardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTeamDashboardOutlinedFilled as default } diff --git a/src/IconTeamDashboardRoundedFilled.tsx b/src/IconTeamDashboardRoundedFilled.tsx new file mode 100644 index 000000000..8d0b5ba7c --- /dev/null +++ b/src/IconTeamDashboardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTeamDashboardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTeamDashboardRoundedFilled as default } diff --git a/src/IconTeamDashboardSharpFilled.tsx b/src/IconTeamDashboardSharpFilled.tsx new file mode 100644 index 000000000..6db655225 --- /dev/null +++ b/src/IconTeamDashboardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTeamDashboardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTeamDashboardSharpFilled as default } diff --git a/src/IconTempPreferencesEcoOutlinedFilled.tsx b/src/IconTempPreferencesEcoOutlinedFilled.tsx new file mode 100644 index 000000000..ae143fa44 --- /dev/null +++ b/src/IconTempPreferencesEcoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempPreferencesEcoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTempPreferencesEcoOutlinedFilled as default } diff --git a/src/IconTempPreferencesEcoRoundedFilled.tsx b/src/IconTempPreferencesEcoRoundedFilled.tsx new file mode 100644 index 000000000..34c2d7c56 --- /dev/null +++ b/src/IconTempPreferencesEcoRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempPreferencesEcoRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTempPreferencesEcoRoundedFilled as default } diff --git a/src/IconTempPreferencesEcoSharpFilled.tsx b/src/IconTempPreferencesEcoSharpFilled.tsx new file mode 100644 index 000000000..ec8e5b653 --- /dev/null +++ b/src/IconTempPreferencesEcoSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempPreferencesEcoSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTempPreferencesEcoSharpFilled as default } diff --git a/src/IconTempleBuddhistOutlinedFilled.tsx b/src/IconTempleBuddhistOutlinedFilled.tsx new file mode 100644 index 000000000..eecdd9e89 --- /dev/null +++ b/src/IconTempleBuddhistOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTempleBuddhistOutlinedFilled as default } diff --git a/src/IconTempleBuddhistRoundedFilled.tsx b/src/IconTempleBuddhistRoundedFilled.tsx new file mode 100644 index 000000000..c5b11d812 --- /dev/null +++ b/src/IconTempleBuddhistRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTempleBuddhistRoundedFilled as default } diff --git a/src/IconTempleBuddhistSharpFilled.tsx b/src/IconTempleBuddhistSharpFilled.tsx new file mode 100644 index 000000000..f36baa97b --- /dev/null +++ b/src/IconTempleBuddhistSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleBuddhistSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTempleBuddhistSharpFilled as default } diff --git a/src/IconTempleHinduOutlinedFilled.tsx b/src/IconTempleHinduOutlinedFilled.tsx new file mode 100644 index 000000000..b97224825 --- /dev/null +++ b/src/IconTempleHinduOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTempleHinduOutlinedFilled as default } diff --git a/src/IconTempleHinduRoundedFilled.tsx b/src/IconTempleHinduRoundedFilled.tsx new file mode 100644 index 000000000..afac6ce78 --- /dev/null +++ b/src/IconTempleHinduRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTempleHinduRoundedFilled as default } diff --git a/src/IconTempleHinduSharpFilled.tsx b/src/IconTempleHinduSharpFilled.tsx new file mode 100644 index 000000000..e78be35be --- /dev/null +++ b/src/IconTempleHinduSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTempleHinduSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTempleHinduSharpFilled as default } diff --git a/src/IconTenancyOutlinedFilled.tsx b/src/IconTenancyOutlinedFilled.tsx new file mode 100644 index 000000000..c8bfcbad3 --- /dev/null +++ b/src/IconTenancyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTenancyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTenancyOutlinedFilled as default } diff --git a/src/IconTenancyRoundedFilled.tsx b/src/IconTenancyRoundedFilled.tsx new file mode 100644 index 000000000..b84e8dcfa --- /dev/null +++ b/src/IconTenancyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTenancyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTenancyRoundedFilled as default } diff --git a/src/IconTenancySharpFilled.tsx b/src/IconTenancySharpFilled.tsx new file mode 100644 index 000000000..b457f66c6 --- /dev/null +++ b/src/IconTenancySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTenancySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTenancySharpFilled as default } diff --git a/src/IconTerminalOutlinedFilled.tsx b/src/IconTerminalOutlinedFilled.tsx new file mode 100644 index 000000000..30f85cf3d --- /dev/null +++ b/src/IconTerminalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTerminalOutlinedFilled as default } diff --git a/src/IconTerminalRoundedFilled.tsx b/src/IconTerminalRoundedFilled.tsx new file mode 100644 index 000000000..19bffbb07 --- /dev/null +++ b/src/IconTerminalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTerminalRoundedFilled as default } diff --git a/src/IconTerminalSharpFilled.tsx b/src/IconTerminalSharpFilled.tsx new file mode 100644 index 000000000..c1bc2c083 --- /dev/null +++ b/src/IconTerminalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTerminalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTerminalSharpFilled as default } diff --git a/src/IconTextAdOutlinedFilled.tsx b/src/IconTextAdOutlinedFilled.tsx new file mode 100644 index 000000000..8b2503931 --- /dev/null +++ b/src/IconTextAdOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextAdOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextAdOutlinedFilled as default } diff --git a/src/IconTextAdRoundedFilled.tsx b/src/IconTextAdRoundedFilled.tsx new file mode 100644 index 000000000..7d682aeba --- /dev/null +++ b/src/IconTextAdRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextAdRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextAdRoundedFilled as default } diff --git a/src/IconTextAdSharpFilled.tsx b/src/IconTextAdSharpFilled.tsx new file mode 100644 index 000000000..acc60ae74 --- /dev/null +++ b/src/IconTextAdSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextAdSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextAdSharpFilled as default } diff --git a/src/IconTextDecreaseOutlinedFilled.tsx b/src/IconTextDecreaseOutlinedFilled.tsx new file mode 100644 index 000000000..e55847fea --- /dev/null +++ b/src/IconTextDecreaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextDecreaseOutlinedFilled as default } diff --git a/src/IconTextDecreaseRoundedFilled.tsx b/src/IconTextDecreaseRoundedFilled.tsx new file mode 100644 index 000000000..d4755b4cc --- /dev/null +++ b/src/IconTextDecreaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextDecreaseRoundedFilled as default } diff --git a/src/IconTextDecreaseSharpFilled.tsx b/src/IconTextDecreaseSharpFilled.tsx new file mode 100644 index 000000000..30242bd80 --- /dev/null +++ b/src/IconTextDecreaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextDecreaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextDecreaseSharpFilled as default } diff --git a/src/IconTextFieldsAltOutlinedFilled.tsx b/src/IconTextFieldsAltOutlinedFilled.tsx new file mode 100644 index 000000000..18d18747b --- /dev/null +++ b/src/IconTextFieldsAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsAltOutlinedFilled as default } diff --git a/src/IconTextFieldsAltRoundedFilled.tsx b/src/IconTextFieldsAltRoundedFilled.tsx new file mode 100644 index 000000000..a8125fad9 --- /dev/null +++ b/src/IconTextFieldsAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsAltRoundedFilled as default } diff --git a/src/IconTextFieldsAltSharpFilled.tsx b/src/IconTextFieldsAltSharpFilled.tsx new file mode 100644 index 000000000..ccf1d74e9 --- /dev/null +++ b/src/IconTextFieldsAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsAltSharpFilled as default } diff --git a/src/IconTextFieldsOutlinedFilled.tsx b/src/IconTextFieldsOutlinedFilled.tsx new file mode 100644 index 000000000..57ee461c2 --- /dev/null +++ b/src/IconTextFieldsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsOutlinedFilled as default } diff --git a/src/IconTextFieldsRoundedFilled.tsx b/src/IconTextFieldsRoundedFilled.tsx new file mode 100644 index 000000000..7fb9875af --- /dev/null +++ b/src/IconTextFieldsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsRoundedFilled as default } diff --git a/src/IconTextFieldsSharpFilled.tsx b/src/IconTextFieldsSharpFilled.tsx new file mode 100644 index 000000000..6176cb2b9 --- /dev/null +++ b/src/IconTextFieldsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFieldsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFieldsSharpFilled as default } diff --git a/src/IconTextFormatOutlinedFilled.tsx b/src/IconTextFormatOutlinedFilled.tsx new file mode 100644 index 000000000..402b52142 --- /dev/null +++ b/src/IconTextFormatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFormatOutlinedFilled as default } diff --git a/src/IconTextFormatRoundedFilled.tsx b/src/IconTextFormatRoundedFilled.tsx new file mode 100644 index 000000000..737db9723 --- /dev/null +++ b/src/IconTextFormatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFormatRoundedFilled as default } diff --git a/src/IconTextFormatSharpFilled.tsx b/src/IconTextFormatSharpFilled.tsx new file mode 100644 index 000000000..5c223d5ac --- /dev/null +++ b/src/IconTextFormatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextFormatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextFormatSharpFilled as default } diff --git a/src/IconTextIncreaseOutlinedFilled.tsx b/src/IconTextIncreaseOutlinedFilled.tsx new file mode 100644 index 000000000..6f3b07979 --- /dev/null +++ b/src/IconTextIncreaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextIncreaseOutlinedFilled as default } diff --git a/src/IconTextIncreaseRoundedFilled.tsx b/src/IconTextIncreaseRoundedFilled.tsx new file mode 100644 index 000000000..ce29cf114 --- /dev/null +++ b/src/IconTextIncreaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextIncreaseRoundedFilled as default } diff --git a/src/IconTextIncreaseSharpFilled.tsx b/src/IconTextIncreaseSharpFilled.tsx new file mode 100644 index 000000000..23274c4b5 --- /dev/null +++ b/src/IconTextIncreaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextIncreaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextIncreaseSharpFilled as default } diff --git a/src/IconTextRotateUpOutlinedFilled.tsx b/src/IconTextRotateUpOutlinedFilled.tsx new file mode 100644 index 000000000..5ecbd02a6 --- /dev/null +++ b/src/IconTextRotateUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotateUpOutlinedFilled as default } diff --git a/src/IconTextRotateUpRoundedFilled.tsx b/src/IconTextRotateUpRoundedFilled.tsx new file mode 100644 index 000000000..42954d363 --- /dev/null +++ b/src/IconTextRotateUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotateUpRoundedFilled as default } diff --git a/src/IconTextRotateUpSharpFilled.tsx b/src/IconTextRotateUpSharpFilled.tsx new file mode 100644 index 000000000..be04877b3 --- /dev/null +++ b/src/IconTextRotateUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotateUpSharpFilled as default } diff --git a/src/IconTextRotateVerticalOutlinedFilled.tsx b/src/IconTextRotateVerticalOutlinedFilled.tsx new file mode 100644 index 000000000..309ce3b78 --- /dev/null +++ b/src/IconTextRotateVerticalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotateVerticalOutlinedFilled as default } diff --git a/src/IconTextRotateVerticalRoundedFilled.tsx b/src/IconTextRotateVerticalRoundedFilled.tsx new file mode 100644 index 000000000..ebb063d3c --- /dev/null +++ b/src/IconTextRotateVerticalRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotateVerticalRoundedFilled as default } diff --git a/src/IconTextRotateVerticalSharpFilled.tsx b/src/IconTextRotateVerticalSharpFilled.tsx new file mode 100644 index 000000000..8ed6bd49c --- /dev/null +++ b/src/IconTextRotateVerticalSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotateVerticalSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotateVerticalSharpFilled as default } diff --git a/src/IconTextRotationAngledownOutlinedFilled.tsx b/src/IconTextRotationAngledownOutlinedFilled.tsx new file mode 100644 index 000000000..f2a9d1df8 --- /dev/null +++ b/src/IconTextRotationAngledownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationAngledownOutlinedFilled as default } diff --git a/src/IconTextRotationAngledownRoundedFilled.tsx b/src/IconTextRotationAngledownRoundedFilled.tsx new file mode 100644 index 000000000..937da6539 --- /dev/null +++ b/src/IconTextRotationAngledownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationAngledownRoundedFilled as default } diff --git a/src/IconTextRotationAngledownSharpFilled.tsx b/src/IconTextRotationAngledownSharpFilled.tsx new file mode 100644 index 000000000..9e3b19e12 --- /dev/null +++ b/src/IconTextRotationAngledownSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngledownSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationAngledownSharpFilled as default } diff --git a/src/IconTextRotationAngleupOutlinedFilled.tsx b/src/IconTextRotationAngleupOutlinedFilled.tsx new file mode 100644 index 000000000..2b58e22f6 --- /dev/null +++ b/src/IconTextRotationAngleupOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationAngleupOutlinedFilled as default } diff --git a/src/IconTextRotationAngleupRoundedFilled.tsx b/src/IconTextRotationAngleupRoundedFilled.tsx new file mode 100644 index 000000000..90c0ff2cd --- /dev/null +++ b/src/IconTextRotationAngleupRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationAngleupRoundedFilled as default } diff --git a/src/IconTextRotationAngleupSharpFilled.tsx b/src/IconTextRotationAngleupSharpFilled.tsx new file mode 100644 index 000000000..7595a80e5 --- /dev/null +++ b/src/IconTextRotationAngleupSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationAngleupSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationAngleupSharpFilled as default } diff --git a/src/IconTextRotationDownOutlinedFilled.tsx b/src/IconTextRotationDownOutlinedFilled.tsx new file mode 100644 index 000000000..c893c8b36 --- /dev/null +++ b/src/IconTextRotationDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationDownOutlinedFilled as default } diff --git a/src/IconTextRotationDownRoundedFilled.tsx b/src/IconTextRotationDownRoundedFilled.tsx new file mode 100644 index 000000000..18a9bf8dd --- /dev/null +++ b/src/IconTextRotationDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationDownRoundedFilled as default } diff --git a/src/IconTextRotationDownSharpFilled.tsx b/src/IconTextRotationDownSharpFilled.tsx new file mode 100644 index 000000000..0e3d870df --- /dev/null +++ b/src/IconTextRotationDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationDownSharpFilled as default } diff --git a/src/IconTextRotationNoneOutlinedFilled.tsx b/src/IconTextRotationNoneOutlinedFilled.tsx new file mode 100644 index 000000000..d32cd14bf --- /dev/null +++ b/src/IconTextRotationNoneOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationNoneOutlinedFilled as default } diff --git a/src/IconTextRotationNoneRoundedFilled.tsx b/src/IconTextRotationNoneRoundedFilled.tsx new file mode 100644 index 000000000..981afd7b0 --- /dev/null +++ b/src/IconTextRotationNoneRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationNoneRoundedFilled as default } diff --git a/src/IconTextRotationNoneSharpFilled.tsx b/src/IconTextRotationNoneSharpFilled.tsx new file mode 100644 index 000000000..1ca6eda4e --- /dev/null +++ b/src/IconTextRotationNoneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextRotationNoneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextRotationNoneSharpFilled as default } diff --git a/src/IconTextSelectEndOutlinedFilled.tsx b/src/IconTextSelectEndOutlinedFilled.tsx new file mode 100644 index 000000000..9c01f58e5 --- /dev/null +++ b/src/IconTextSelectEndOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectEndOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectEndOutlinedFilled as default } diff --git a/src/IconTextSelectEndRoundedFilled.tsx b/src/IconTextSelectEndRoundedFilled.tsx new file mode 100644 index 000000000..95892c043 --- /dev/null +++ b/src/IconTextSelectEndRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectEndRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectEndRoundedFilled as default } diff --git a/src/IconTextSelectEndSharpFilled.tsx b/src/IconTextSelectEndSharpFilled.tsx new file mode 100644 index 000000000..b644d6ef6 --- /dev/null +++ b/src/IconTextSelectEndSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectEndSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectEndSharpFilled as default } diff --git a/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx b/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx new file mode 100644 index 000000000..668b3b6db --- /dev/null +++ b/src/IconTextSelectJumpToBeginningOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectJumpToBeginningOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectJumpToBeginningOutlinedFilled as default } diff --git a/src/IconTextSelectJumpToBeginningRoundedFilled.tsx b/src/IconTextSelectJumpToBeginningRoundedFilled.tsx new file mode 100644 index 000000000..72e19c50f --- /dev/null +++ b/src/IconTextSelectJumpToBeginningRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectJumpToBeginningRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectJumpToBeginningRoundedFilled as default } diff --git a/src/IconTextSelectJumpToBeginningSharpFilled.tsx b/src/IconTextSelectJumpToBeginningSharpFilled.tsx new file mode 100644 index 000000000..2718272c9 --- /dev/null +++ b/src/IconTextSelectJumpToBeginningSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectJumpToBeginningSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectJumpToBeginningSharpFilled as default } diff --git a/src/IconTextSelectJumpToEndOutlinedFilled.tsx b/src/IconTextSelectJumpToEndOutlinedFilled.tsx new file mode 100644 index 000000000..457e4a3aa --- /dev/null +++ b/src/IconTextSelectJumpToEndOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectJumpToEndOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectJumpToEndOutlinedFilled as default } diff --git a/src/IconTextSelectJumpToEndRoundedFilled.tsx b/src/IconTextSelectJumpToEndRoundedFilled.tsx new file mode 100644 index 000000000..d6198edc3 --- /dev/null +++ b/src/IconTextSelectJumpToEndRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectJumpToEndRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectJumpToEndRoundedFilled as default } diff --git a/src/IconTextSelectJumpToEndSharpFilled.tsx b/src/IconTextSelectJumpToEndSharpFilled.tsx new file mode 100644 index 000000000..49129d0ac --- /dev/null +++ b/src/IconTextSelectJumpToEndSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectJumpToEndSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectJumpToEndSharpFilled as default } diff --git a/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx b/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx new file mode 100644 index 000000000..95fe49157 --- /dev/null +++ b/src/IconTextSelectMoveBackCharacterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveBackCharacterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveBackCharacterOutlinedFilled as default } diff --git a/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx b/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx new file mode 100644 index 000000000..742b58905 --- /dev/null +++ b/src/IconTextSelectMoveBackCharacterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveBackCharacterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveBackCharacterRoundedFilled as default } diff --git a/src/IconTextSelectMoveBackCharacterSharpFilled.tsx b/src/IconTextSelectMoveBackCharacterSharpFilled.tsx new file mode 100644 index 000000000..dfd0173e6 --- /dev/null +++ b/src/IconTextSelectMoveBackCharacterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveBackCharacterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveBackCharacterSharpFilled as default } diff --git a/src/IconTextSelectMoveBackWordOutlinedFilled.tsx b/src/IconTextSelectMoveBackWordOutlinedFilled.tsx new file mode 100644 index 000000000..f6491fda5 --- /dev/null +++ b/src/IconTextSelectMoveBackWordOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveBackWordOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveBackWordOutlinedFilled as default } diff --git a/src/IconTextSelectMoveBackWordRoundedFilled.tsx b/src/IconTextSelectMoveBackWordRoundedFilled.tsx new file mode 100644 index 000000000..dea076f8b --- /dev/null +++ b/src/IconTextSelectMoveBackWordRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveBackWordRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveBackWordRoundedFilled as default } diff --git a/src/IconTextSelectMoveBackWordSharpFilled.tsx b/src/IconTextSelectMoveBackWordSharpFilled.tsx new file mode 100644 index 000000000..dbe597133 --- /dev/null +++ b/src/IconTextSelectMoveBackWordSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveBackWordSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveBackWordSharpFilled as default } diff --git a/src/IconTextSelectMoveDownOutlinedFilled.tsx b/src/IconTextSelectMoveDownOutlinedFilled.tsx new file mode 100644 index 000000000..2f2194640 --- /dev/null +++ b/src/IconTextSelectMoveDownOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveDownOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveDownOutlinedFilled as default } diff --git a/src/IconTextSelectMoveDownRoundedFilled.tsx b/src/IconTextSelectMoveDownRoundedFilled.tsx new file mode 100644 index 000000000..3c2c41a70 --- /dev/null +++ b/src/IconTextSelectMoveDownRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveDownRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveDownRoundedFilled as default } diff --git a/src/IconTextSelectMoveDownSharpFilled.tsx b/src/IconTextSelectMoveDownSharpFilled.tsx new file mode 100644 index 000000000..ee8ac5829 --- /dev/null +++ b/src/IconTextSelectMoveDownSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveDownSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveDownSharpFilled as default } diff --git a/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx b/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx new file mode 100644 index 000000000..82e57c18b --- /dev/null +++ b/src/IconTextSelectMoveForwardCharacterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveForwardCharacterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveForwardCharacterOutlinedFilled as default } diff --git a/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx b/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx new file mode 100644 index 000000000..6b0b73892 --- /dev/null +++ b/src/IconTextSelectMoveForwardCharacterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveForwardCharacterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveForwardCharacterRoundedFilled as default } diff --git a/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx b/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx new file mode 100644 index 000000000..4f4e238f0 --- /dev/null +++ b/src/IconTextSelectMoveForwardCharacterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveForwardCharacterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveForwardCharacterSharpFilled as default } diff --git a/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx b/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx new file mode 100644 index 000000000..beeac1070 --- /dev/null +++ b/src/IconTextSelectMoveForwardWordOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveForwardWordOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveForwardWordOutlinedFilled as default } diff --git a/src/IconTextSelectMoveForwardWordRoundedFilled.tsx b/src/IconTextSelectMoveForwardWordRoundedFilled.tsx new file mode 100644 index 000000000..001dae37f --- /dev/null +++ b/src/IconTextSelectMoveForwardWordRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveForwardWordRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveForwardWordRoundedFilled as default } diff --git a/src/IconTextSelectMoveForwardWordSharpFilled.tsx b/src/IconTextSelectMoveForwardWordSharpFilled.tsx new file mode 100644 index 000000000..7e5f80772 --- /dev/null +++ b/src/IconTextSelectMoveForwardWordSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveForwardWordSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveForwardWordSharpFilled as default } diff --git a/src/IconTextSelectMoveUpOutlinedFilled.tsx b/src/IconTextSelectMoveUpOutlinedFilled.tsx new file mode 100644 index 000000000..75f27ae1c --- /dev/null +++ b/src/IconTextSelectMoveUpOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveUpOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveUpOutlinedFilled as default } diff --git a/src/IconTextSelectMoveUpRoundedFilled.tsx b/src/IconTextSelectMoveUpRoundedFilled.tsx new file mode 100644 index 000000000..4f898c933 --- /dev/null +++ b/src/IconTextSelectMoveUpRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveUpRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveUpRoundedFilled as default } diff --git a/src/IconTextSelectMoveUpSharpFilled.tsx b/src/IconTextSelectMoveUpSharpFilled.tsx new file mode 100644 index 000000000..30994af36 --- /dev/null +++ b/src/IconTextSelectMoveUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectMoveUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectMoveUpSharpFilled as default } diff --git a/src/IconTextSelectStartOutlinedFilled.tsx b/src/IconTextSelectStartOutlinedFilled.tsx new file mode 100644 index 000000000..1d7324a6d --- /dev/null +++ b/src/IconTextSelectStartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectStartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectStartOutlinedFilled as default } diff --git a/src/IconTextSelectStartRoundedFilled.tsx b/src/IconTextSelectStartRoundedFilled.tsx new file mode 100644 index 000000000..bcc21be28 --- /dev/null +++ b/src/IconTextSelectStartRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectStartRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectStartRoundedFilled as default } diff --git a/src/IconTextSelectStartSharpFilled.tsx b/src/IconTextSelectStartSharpFilled.tsx new file mode 100644 index 000000000..cfd9ced75 --- /dev/null +++ b/src/IconTextSelectStartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSelectStartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSelectStartSharpFilled as default } diff --git a/src/IconTextSnippetOutlinedFilled.tsx b/src/IconTextSnippetOutlinedFilled.tsx new file mode 100644 index 000000000..eff51fa0d --- /dev/null +++ b/src/IconTextSnippetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSnippetOutlinedFilled as default } diff --git a/src/IconTextSnippetRoundedFilled.tsx b/src/IconTextSnippetRoundedFilled.tsx new file mode 100644 index 000000000..07efd4b72 --- /dev/null +++ b/src/IconTextSnippetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSnippetRoundedFilled as default } diff --git a/src/IconTextSnippetSharpFilled.tsx b/src/IconTextSnippetSharpFilled.tsx new file mode 100644 index 000000000..adf4e6aa8 --- /dev/null +++ b/src/IconTextSnippetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextSnippetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextSnippetSharpFilled as default } diff --git a/src/IconTextToSpeechOutlinedFilled.tsx b/src/IconTextToSpeechOutlinedFilled.tsx new file mode 100644 index 000000000..9dcab1626 --- /dev/null +++ b/src/IconTextToSpeechOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextToSpeechOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextToSpeechOutlinedFilled as default } diff --git a/src/IconTextToSpeechRoundedFilled.tsx b/src/IconTextToSpeechRoundedFilled.tsx new file mode 100644 index 000000000..3329f393b --- /dev/null +++ b/src/IconTextToSpeechRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextToSpeechRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextToSpeechRoundedFilled as default } diff --git a/src/IconTextToSpeechSharpFilled.tsx b/src/IconTextToSpeechSharpFilled.tsx new file mode 100644 index 000000000..89daa9031 --- /dev/null +++ b/src/IconTextToSpeechSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextToSpeechSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextToSpeechSharpFilled as default } diff --git a/src/IconTextUpOutlinedFilled.tsx b/src/IconTextUpOutlinedFilled.tsx new file mode 100644 index 000000000..3adc3bdd2 --- /dev/null +++ b/src/IconTextUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextUpOutlinedFilled as default } diff --git a/src/IconTextUpRoundedFilled.tsx b/src/IconTextUpRoundedFilled.tsx new file mode 100644 index 000000000..f1aece897 --- /dev/null +++ b/src/IconTextUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextUpRoundedFilled as default } diff --git a/src/IconTextUpSharpFilled.tsx b/src/IconTextUpSharpFilled.tsx new file mode 100644 index 000000000..8315cc2d4 --- /dev/null +++ b/src/IconTextUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextUpSharpFilled as default } diff --git a/src/IconTextureAddOutlinedFilled.tsx b/src/IconTextureAddOutlinedFilled.tsx new file mode 100644 index 000000000..5c089dc56 --- /dev/null +++ b/src/IconTextureAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureAddOutlinedFilled as default } diff --git a/src/IconTextureAddRoundedFilled.tsx b/src/IconTextureAddRoundedFilled.tsx new file mode 100644 index 000000000..bfd66bf7e --- /dev/null +++ b/src/IconTextureAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureAddRoundedFilled as default } diff --git a/src/IconTextureAddSharpFilled.tsx b/src/IconTextureAddSharpFilled.tsx new file mode 100644 index 000000000..18968827d --- /dev/null +++ b/src/IconTextureAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureAddSharpFilled as default } diff --git a/src/IconTextureMinusOutlinedFilled.tsx b/src/IconTextureMinusOutlinedFilled.tsx new file mode 100644 index 000000000..8830a5e33 --- /dev/null +++ b/src/IconTextureMinusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureMinusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureMinusOutlinedFilled as default } diff --git a/src/IconTextureMinusRoundedFilled.tsx b/src/IconTextureMinusRoundedFilled.tsx new file mode 100644 index 000000000..7ebca81d5 --- /dev/null +++ b/src/IconTextureMinusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureMinusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureMinusRoundedFilled as default } diff --git a/src/IconTextureMinusSharpFilled.tsx b/src/IconTextureMinusSharpFilled.tsx new file mode 100644 index 000000000..9c4377dc2 --- /dev/null +++ b/src/IconTextureMinusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureMinusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureMinusSharpFilled as default } diff --git a/src/IconTextureOutlinedFilled.tsx b/src/IconTextureOutlinedFilled.tsx new file mode 100644 index 000000000..b5bf9f36d --- /dev/null +++ b/src/IconTextureOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureOutlinedFilled as default } diff --git a/src/IconTextureRoundedFilled.tsx b/src/IconTextureRoundedFilled.tsx new file mode 100644 index 000000000..7ed93f677 --- /dev/null +++ b/src/IconTextureRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureRoundedFilled as default } diff --git a/src/IconTextureSharpFilled.tsx b/src/IconTextureSharpFilled.tsx new file mode 100644 index 000000000..9832fdd16 --- /dev/null +++ b/src/IconTextureSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTextureSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTextureSharpFilled as default } diff --git a/src/IconTheaterComedyOutlinedFilled.tsx b/src/IconTheaterComedyOutlinedFilled.tsx new file mode 100644 index 000000000..d44e2e362 --- /dev/null +++ b/src/IconTheaterComedyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTheaterComedyOutlinedFilled as default } diff --git a/src/IconTheaterComedyRoundedFilled.tsx b/src/IconTheaterComedyRoundedFilled.tsx new file mode 100644 index 000000000..256390ccd --- /dev/null +++ b/src/IconTheaterComedyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTheaterComedyRoundedFilled as default } diff --git a/src/IconTheaterComedySharpFilled.tsx b/src/IconTheaterComedySharpFilled.tsx new file mode 100644 index 000000000..b17614b9e --- /dev/null +++ b/src/IconTheaterComedySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheaterComedySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTheaterComedySharpFilled as default } diff --git a/src/IconTheatersOutlinedFilled.tsx b/src/IconTheatersOutlinedFilled.tsx new file mode 100644 index 000000000..4c4a02299 --- /dev/null +++ b/src/IconTheatersOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTheatersOutlinedFilled as default } diff --git a/src/IconTheatersRoundedFilled.tsx b/src/IconTheatersRoundedFilled.tsx new file mode 100644 index 000000000..d7ab79e72 --- /dev/null +++ b/src/IconTheatersRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTheatersRoundedFilled as default } diff --git a/src/IconTheatersSharpFilled.tsx b/src/IconTheatersSharpFilled.tsx new file mode 100644 index 000000000..82f0dc27c --- /dev/null +++ b/src/IconTheatersSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTheatersSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTheatersSharpFilled as default } diff --git a/src/IconThermometerAddOutlinedFilled.tsx b/src/IconThermometerAddOutlinedFilled.tsx new file mode 100644 index 000000000..01d5e2798 --- /dev/null +++ b/src/IconThermometerAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerAddOutlinedFilled as default } diff --git a/src/IconThermometerAddRoundedFilled.tsx b/src/IconThermometerAddRoundedFilled.tsx new file mode 100644 index 000000000..0e40577bd --- /dev/null +++ b/src/IconThermometerAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerAddRoundedFilled as default } diff --git a/src/IconThermometerAddSharpFilled.tsx b/src/IconThermometerAddSharpFilled.tsx new file mode 100644 index 000000000..0aba60410 --- /dev/null +++ b/src/IconThermometerAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerAddSharpFilled as default } diff --git a/src/IconThermometerGainOutlinedFilled.tsx b/src/IconThermometerGainOutlinedFilled.tsx new file mode 100644 index 000000000..24a89b0d7 --- /dev/null +++ b/src/IconThermometerGainOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerGainOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerGainOutlinedFilled as default } diff --git a/src/IconThermometerGainRoundedFilled.tsx b/src/IconThermometerGainRoundedFilled.tsx new file mode 100644 index 000000000..490221b59 --- /dev/null +++ b/src/IconThermometerGainRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerGainRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerGainRoundedFilled as default } diff --git a/src/IconThermometerGainSharpFilled.tsx b/src/IconThermometerGainSharpFilled.tsx new file mode 100644 index 000000000..182559647 --- /dev/null +++ b/src/IconThermometerGainSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerGainSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerGainSharpFilled as default } diff --git a/src/IconThermometerLossOutlinedFilled.tsx b/src/IconThermometerLossOutlinedFilled.tsx new file mode 100644 index 000000000..6ed554192 --- /dev/null +++ b/src/IconThermometerLossOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerLossOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerLossOutlinedFilled as default } diff --git a/src/IconThermometerLossRoundedFilled.tsx b/src/IconThermometerLossRoundedFilled.tsx new file mode 100644 index 000000000..fe99fbb81 --- /dev/null +++ b/src/IconThermometerLossRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerLossRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerLossRoundedFilled as default } diff --git a/src/IconThermometerLossSharpFilled.tsx b/src/IconThermometerLossSharpFilled.tsx new file mode 100644 index 000000000..d2c8daea0 --- /dev/null +++ b/src/IconThermometerLossSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerLossSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerLossSharpFilled as default } diff --git a/src/IconThermometerMinusOutlinedFilled.tsx b/src/IconThermometerMinusOutlinedFilled.tsx new file mode 100644 index 000000000..813f2e3a4 --- /dev/null +++ b/src/IconThermometerMinusOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerMinusOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerMinusOutlinedFilled as default } diff --git a/src/IconThermometerMinusRoundedFilled.tsx b/src/IconThermometerMinusRoundedFilled.tsx new file mode 100644 index 000000000..110756537 --- /dev/null +++ b/src/IconThermometerMinusRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerMinusRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerMinusRoundedFilled as default } diff --git a/src/IconThermometerMinusSharpFilled.tsx b/src/IconThermometerMinusSharpFilled.tsx new file mode 100644 index 000000000..531cfb1aa --- /dev/null +++ b/src/IconThermometerMinusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerMinusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerMinusSharpFilled as default } diff --git a/src/IconThermometerOutlinedFilled.tsx b/src/IconThermometerOutlinedFilled.tsx new file mode 100644 index 000000000..e9bb66640 --- /dev/null +++ b/src/IconThermometerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerOutlinedFilled as default } diff --git a/src/IconThermometerRoundedFilled.tsx b/src/IconThermometerRoundedFilled.tsx new file mode 100644 index 000000000..1b2597bc1 --- /dev/null +++ b/src/IconThermometerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerRoundedFilled as default } diff --git a/src/IconThermometerSharpFilled.tsx b/src/IconThermometerSharpFilled.tsx new file mode 100644 index 000000000..3f52032d0 --- /dev/null +++ b/src/IconThermometerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermometerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermometerSharpFilled as default } diff --git a/src/IconThermostatAutoOutlinedFilled.tsx b/src/IconThermostatAutoOutlinedFilled.tsx new file mode 100644 index 000000000..75a82a858 --- /dev/null +++ b/src/IconThermostatAutoOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatAutoOutlinedFilled as default } diff --git a/src/IconThermostatAutoRoundedFilled.tsx b/src/IconThermostatAutoRoundedFilled.tsx new file mode 100644 index 000000000..50d3dbafd --- /dev/null +++ b/src/IconThermostatAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatAutoRoundedFilled as default } diff --git a/src/IconThermostatAutoSharpFilled.tsx b/src/IconThermostatAutoSharpFilled.tsx new file mode 100644 index 000000000..2d733b046 --- /dev/null +++ b/src/IconThermostatAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatAutoSharpFilled as default } diff --git a/src/IconThermostatCarbonOutlinedFilled.tsx b/src/IconThermostatCarbonOutlinedFilled.tsx new file mode 100644 index 000000000..1d0f0c793 --- /dev/null +++ b/src/IconThermostatCarbonOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatCarbonOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatCarbonOutlinedFilled as default } diff --git a/src/IconThermostatCarbonRoundedFilled.tsx b/src/IconThermostatCarbonRoundedFilled.tsx new file mode 100644 index 000000000..107181c5c --- /dev/null +++ b/src/IconThermostatCarbonRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatCarbonRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatCarbonRoundedFilled as default } diff --git a/src/IconThermostatCarbonSharpFilled.tsx b/src/IconThermostatCarbonSharpFilled.tsx new file mode 100644 index 000000000..011a074e0 --- /dev/null +++ b/src/IconThermostatCarbonSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatCarbonSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatCarbonSharpFilled as default } diff --git a/src/IconThermostatOutlinedFilled.tsx b/src/IconThermostatOutlinedFilled.tsx new file mode 100644 index 000000000..c8ee6a871 --- /dev/null +++ b/src/IconThermostatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatOutlinedFilled as default } diff --git a/src/IconThermostatRoundedFilled.tsx b/src/IconThermostatRoundedFilled.tsx new file mode 100644 index 000000000..5fc93f3a0 --- /dev/null +++ b/src/IconThermostatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatRoundedFilled as default } diff --git a/src/IconThermostatSharpFilled.tsx b/src/IconThermostatSharpFilled.tsx new file mode 100644 index 000000000..065243102 --- /dev/null +++ b/src/IconThermostatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThermostatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThermostatSharpFilled as default } diff --git a/src/IconThingsToDoOutlinedFilled.tsx b/src/IconThingsToDoOutlinedFilled.tsx new file mode 100644 index 000000000..88f473ae6 --- /dev/null +++ b/src/IconThingsToDoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThingsToDoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThingsToDoOutlinedFilled as default } diff --git a/src/IconThingsToDoRoundedFilled.tsx b/src/IconThingsToDoRoundedFilled.tsx new file mode 100644 index 000000000..e0276bbd4 --- /dev/null +++ b/src/IconThingsToDoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThingsToDoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThingsToDoRoundedFilled as default } diff --git a/src/IconThingsToDoSharpFilled.tsx b/src/IconThingsToDoSharpFilled.tsx new file mode 100644 index 000000000..67e888efe --- /dev/null +++ b/src/IconThingsToDoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThingsToDoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThingsToDoSharpFilled as default } diff --git a/src/IconThreadUnreadOutlinedFilled.tsx b/src/IconThreadUnreadOutlinedFilled.tsx new file mode 100644 index 000000000..e8bee2b03 --- /dev/null +++ b/src/IconThreadUnreadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThreadUnreadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThreadUnreadOutlinedFilled as default } diff --git a/src/IconThreadUnreadRoundedFilled.tsx b/src/IconThreadUnreadRoundedFilled.tsx new file mode 100644 index 000000000..8a1334a25 --- /dev/null +++ b/src/IconThreadUnreadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThreadUnreadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThreadUnreadRoundedFilled as default } diff --git a/src/IconThreadUnreadSharpFilled.tsx b/src/IconThreadUnreadSharpFilled.tsx new file mode 100644 index 000000000..e2acf27dc --- /dev/null +++ b/src/IconThreadUnreadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThreadUnreadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThreadUnreadSharpFilled as default } diff --git a/src/IconThumbDownOutlinedFilled.tsx b/src/IconThumbDownOutlinedFilled.tsx new file mode 100644 index 000000000..0be135752 --- /dev/null +++ b/src/IconThumbDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbDownOutlinedFilled as default } diff --git a/src/IconThumbDownRoundedFilled.tsx b/src/IconThumbDownRoundedFilled.tsx new file mode 100644 index 000000000..1daebced6 --- /dev/null +++ b/src/IconThumbDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbDownRoundedFilled as default } diff --git a/src/IconThumbDownSharpFilled.tsx b/src/IconThumbDownSharpFilled.tsx new file mode 100644 index 000000000..0bced2bad --- /dev/null +++ b/src/IconThumbDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbDownSharpFilled as default } diff --git a/src/IconThumbUpOutlinedFilled.tsx b/src/IconThumbUpOutlinedFilled.tsx new file mode 100644 index 000000000..9f95943db --- /dev/null +++ b/src/IconThumbUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbUpOutlinedFilled as default } diff --git a/src/IconThumbUpRoundedFilled.tsx b/src/IconThumbUpRoundedFilled.tsx new file mode 100644 index 000000000..bd218c059 --- /dev/null +++ b/src/IconThumbUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbUpRoundedFilled as default } diff --git a/src/IconThumbUpSharpFilled.tsx b/src/IconThumbUpSharpFilled.tsx new file mode 100644 index 000000000..2359d858f --- /dev/null +++ b/src/IconThumbUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbUpSharpFilled as default } diff --git a/src/IconThumbnailBarOutlinedFilled.tsx b/src/IconThumbnailBarOutlinedFilled.tsx new file mode 100644 index 000000000..afaa40a81 --- /dev/null +++ b/src/IconThumbnailBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbnailBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbnailBarOutlinedFilled as default } diff --git a/src/IconThumbnailBarRoundedFilled.tsx b/src/IconThumbnailBarRoundedFilled.tsx new file mode 100644 index 000000000..18c3d534d --- /dev/null +++ b/src/IconThumbnailBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbnailBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbnailBarRoundedFilled as default } diff --git a/src/IconThumbnailBarSharpFilled.tsx b/src/IconThumbnailBarSharpFilled.tsx new file mode 100644 index 000000000..7b7eebcc5 --- /dev/null +++ b/src/IconThumbnailBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbnailBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbnailBarSharpFilled as default } diff --git a/src/IconThumbsUpDownOutlinedFilled.tsx b/src/IconThumbsUpDownOutlinedFilled.tsx new file mode 100644 index 000000000..712aca3b5 --- /dev/null +++ b/src/IconThumbsUpDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbsUpDownOutlinedFilled as default } diff --git a/src/IconThumbsUpDownRoundedFilled.tsx b/src/IconThumbsUpDownRoundedFilled.tsx new file mode 100644 index 000000000..785de2629 --- /dev/null +++ b/src/IconThumbsUpDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbsUpDownRoundedFilled as default } diff --git a/src/IconThumbsUpDownSharpFilled.tsx b/src/IconThumbsUpDownSharpFilled.tsx new file mode 100644 index 000000000..f7864b973 --- /dev/null +++ b/src/IconThumbsUpDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThumbsUpDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThumbsUpDownSharpFilled as default } diff --git a/src/IconThunderstormOutlinedFilled.tsx b/src/IconThunderstormOutlinedFilled.tsx new file mode 100644 index 000000000..28d9e4363 --- /dev/null +++ b/src/IconThunderstormOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThunderstormOutlinedFilled as default } diff --git a/src/IconThunderstormRoundedFilled.tsx b/src/IconThunderstormRoundedFilled.tsx new file mode 100644 index 000000000..98399887d --- /dev/null +++ b/src/IconThunderstormRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThunderstormRoundedFilled as default } diff --git a/src/IconThunderstormSharpFilled.tsx b/src/IconThunderstormSharpFilled.tsx new file mode 100644 index 000000000..5e1e4988b --- /dev/null +++ b/src/IconThunderstormSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconThunderstormSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconThunderstormSharpFilled as default } diff --git a/src/IconTibiaAltOutlinedFilled.tsx b/src/IconTibiaAltOutlinedFilled.tsx new file mode 100644 index 000000000..9ca9cd6cd --- /dev/null +++ b/src/IconTibiaAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTibiaAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTibiaAltOutlinedFilled as default } diff --git a/src/IconTibiaAltRoundedFilled.tsx b/src/IconTibiaAltRoundedFilled.tsx new file mode 100644 index 000000000..65da9abe3 --- /dev/null +++ b/src/IconTibiaAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTibiaAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTibiaAltRoundedFilled as default } diff --git a/src/IconTibiaAltSharpFilled.tsx b/src/IconTibiaAltSharpFilled.tsx new file mode 100644 index 000000000..0975984a1 --- /dev/null +++ b/src/IconTibiaAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTibiaAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTibiaAltSharpFilled as default } diff --git a/src/IconTibiaOutlinedFilled.tsx b/src/IconTibiaOutlinedFilled.tsx new file mode 100644 index 000000000..ede1c62e5 --- /dev/null +++ b/src/IconTibiaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTibiaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTibiaOutlinedFilled as default } diff --git a/src/IconTibiaRoundedFilled.tsx b/src/IconTibiaRoundedFilled.tsx new file mode 100644 index 000000000..9688f04ba --- /dev/null +++ b/src/IconTibiaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTibiaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTibiaRoundedFilled as default } diff --git a/src/IconTibiaSharpFilled.tsx b/src/IconTibiaSharpFilled.tsx new file mode 100644 index 000000000..93a02bd0c --- /dev/null +++ b/src/IconTibiaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTibiaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTibiaSharpFilled as default } diff --git a/src/IconTimeAutoOutlinedFilled.tsx b/src/IconTimeAutoOutlinedFilled.tsx new file mode 100644 index 000000000..06ce48790 --- /dev/null +++ b/src/IconTimeAutoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeAutoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimeAutoOutlinedFilled as default } diff --git a/src/IconTimeAutoRoundedFilled.tsx b/src/IconTimeAutoRoundedFilled.tsx new file mode 100644 index 000000000..d963bccfd --- /dev/null +++ b/src/IconTimeAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimeAutoRoundedFilled as default } diff --git a/src/IconTimeAutoSharpFilled.tsx b/src/IconTimeAutoSharpFilled.tsx new file mode 100644 index 000000000..6d7422440 --- /dev/null +++ b/src/IconTimeAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimeAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimeAutoSharpFilled as default } diff --git a/src/IconTimelapseOutlinedFilled.tsx b/src/IconTimelapseOutlinedFilled.tsx new file mode 100644 index 000000000..9a1a2d6f3 --- /dev/null +++ b/src/IconTimelapseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimelapseOutlinedFilled as default } diff --git a/src/IconTimelapseRoundedFilled.tsx b/src/IconTimelapseRoundedFilled.tsx new file mode 100644 index 000000000..8f9b54b2f --- /dev/null +++ b/src/IconTimelapseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimelapseRoundedFilled as default } diff --git a/src/IconTimelapseSharpFilled.tsx b/src/IconTimelapseSharpFilled.tsx new file mode 100644 index 000000000..58bbf76cc --- /dev/null +++ b/src/IconTimelapseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelapseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimelapseSharpFilled as default } diff --git a/src/IconTimelineOutlinedFilled.tsx b/src/IconTimelineOutlinedFilled.tsx new file mode 100644 index 000000000..b383dbc8a --- /dev/null +++ b/src/IconTimelineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimelineOutlinedFilled as default } diff --git a/src/IconTimelineRoundedFilled.tsx b/src/IconTimelineRoundedFilled.tsx new file mode 100644 index 000000000..f061b5270 --- /dev/null +++ b/src/IconTimelineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimelineRoundedFilled as default } diff --git a/src/IconTimelineSharpFilled.tsx b/src/IconTimelineSharpFilled.tsx new file mode 100644 index 000000000..014c15f18 --- /dev/null +++ b/src/IconTimelineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimelineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimelineSharpFilled as default } diff --git a/src/IconTimer10Alt1OutlinedFilled.tsx b/src/IconTimer10Alt1OutlinedFilled.tsx new file mode 100644 index 000000000..520e516c8 --- /dev/null +++ b/src/IconTimer10Alt1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10Alt1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10Alt1OutlinedFilled as default } diff --git a/src/IconTimer10Alt1RoundedFilled.tsx b/src/IconTimer10Alt1RoundedFilled.tsx new file mode 100644 index 000000000..9c67d6178 --- /dev/null +++ b/src/IconTimer10Alt1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10Alt1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10Alt1RoundedFilled as default } diff --git a/src/IconTimer10Alt1SharpFilled.tsx b/src/IconTimer10Alt1SharpFilled.tsx new file mode 100644 index 000000000..761f5023e --- /dev/null +++ b/src/IconTimer10Alt1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10Alt1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10Alt1SharpFilled as default } diff --git a/src/IconTimer10OutlinedFilled.tsx b/src/IconTimer10OutlinedFilled.tsx new file mode 100644 index 000000000..139d9f846 --- /dev/null +++ b/src/IconTimer10OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10OutlinedFilled as default } diff --git a/src/IconTimer10RoundedFilled.tsx b/src/IconTimer10RoundedFilled.tsx new file mode 100644 index 000000000..dbffb1662 --- /dev/null +++ b/src/IconTimer10RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10RoundedFilled as default } diff --git a/src/IconTimer10SelectOutlinedFilled.tsx b/src/IconTimer10SelectOutlinedFilled.tsx new file mode 100644 index 000000000..d77935da4 --- /dev/null +++ b/src/IconTimer10SelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10SelectOutlinedFilled as default } diff --git a/src/IconTimer10SelectRoundedFilled.tsx b/src/IconTimer10SelectRoundedFilled.tsx new file mode 100644 index 000000000..2964ffdbb --- /dev/null +++ b/src/IconTimer10SelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10SelectRoundedFilled as default } diff --git a/src/IconTimer10SelectSharpFilled.tsx b/src/IconTimer10SelectSharpFilled.tsx new file mode 100644 index 000000000..7040df672 --- /dev/null +++ b/src/IconTimer10SelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10SelectSharpFilled as default } diff --git a/src/IconTimer10SharpFilled.tsx b/src/IconTimer10SharpFilled.tsx new file mode 100644 index 000000000..a4e0a1845 --- /dev/null +++ b/src/IconTimer10SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer10SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer10SharpFilled as default } diff --git a/src/IconTimer3Alt1OutlinedFilled.tsx b/src/IconTimer3Alt1OutlinedFilled.tsx new file mode 100644 index 000000000..934346fc1 --- /dev/null +++ b/src/IconTimer3Alt1OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3Alt1OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3Alt1OutlinedFilled as default } diff --git a/src/IconTimer3Alt1RoundedFilled.tsx b/src/IconTimer3Alt1RoundedFilled.tsx new file mode 100644 index 000000000..18a3d357e --- /dev/null +++ b/src/IconTimer3Alt1RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3Alt1RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3Alt1RoundedFilled as default } diff --git a/src/IconTimer3Alt1SharpFilled.tsx b/src/IconTimer3Alt1SharpFilled.tsx new file mode 100644 index 000000000..1eec1acf4 --- /dev/null +++ b/src/IconTimer3Alt1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3Alt1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3Alt1SharpFilled as default } diff --git a/src/IconTimer3OutlinedFilled.tsx b/src/IconTimer3OutlinedFilled.tsx new file mode 100644 index 000000000..5785f32b0 --- /dev/null +++ b/src/IconTimer3OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3OutlinedFilled as default } diff --git a/src/IconTimer3RoundedFilled.tsx b/src/IconTimer3RoundedFilled.tsx new file mode 100644 index 000000000..ac95b9a92 --- /dev/null +++ b/src/IconTimer3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3RoundedFilled as default } diff --git a/src/IconTimer3SelectOutlinedFilled.tsx b/src/IconTimer3SelectOutlinedFilled.tsx new file mode 100644 index 000000000..399d213e4 --- /dev/null +++ b/src/IconTimer3SelectOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3SelectOutlinedFilled as default } diff --git a/src/IconTimer3SelectRoundedFilled.tsx b/src/IconTimer3SelectRoundedFilled.tsx new file mode 100644 index 000000000..786585ae5 --- /dev/null +++ b/src/IconTimer3SelectRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3SelectRoundedFilled as default } diff --git a/src/IconTimer3SelectSharpFilled.tsx b/src/IconTimer3SelectSharpFilled.tsx new file mode 100644 index 000000000..555cd1e9e --- /dev/null +++ b/src/IconTimer3SelectSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SelectSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3SelectSharpFilled as default } diff --git a/src/IconTimer3SharpFilled.tsx b/src/IconTimer3SharpFilled.tsx new file mode 100644 index 000000000..535f5a503 --- /dev/null +++ b/src/IconTimer3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer3SharpFilled as default } diff --git a/src/IconTimer5OutlinedFilled.tsx b/src/IconTimer5OutlinedFilled.tsx new file mode 100644 index 000000000..47f5cbd0c --- /dev/null +++ b/src/IconTimer5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer5OutlinedFilled as default } diff --git a/src/IconTimer5RoundedFilled.tsx b/src/IconTimer5RoundedFilled.tsx new file mode 100644 index 000000000..d394e8921 --- /dev/null +++ b/src/IconTimer5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer5RoundedFilled as default } diff --git a/src/IconTimer5SharpFilled.tsx b/src/IconTimer5SharpFilled.tsx new file mode 100644 index 000000000..11681054f --- /dev/null +++ b/src/IconTimer5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer5SharpFilled as default } diff --git a/src/IconTimer5ShutterOutlinedFilled.tsx b/src/IconTimer5ShutterOutlinedFilled.tsx new file mode 100644 index 000000000..d0147cfd6 --- /dev/null +++ b/src/IconTimer5ShutterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer5ShutterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer5ShutterOutlinedFilled as default } diff --git a/src/IconTimer5ShutterRoundedFilled.tsx b/src/IconTimer5ShutterRoundedFilled.tsx new file mode 100644 index 000000000..53d6be570 --- /dev/null +++ b/src/IconTimer5ShutterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer5ShutterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer5ShutterRoundedFilled as default } diff --git a/src/IconTimer5ShutterSharpFilled.tsx b/src/IconTimer5ShutterSharpFilled.tsx new file mode 100644 index 000000000..c45f6a9cf --- /dev/null +++ b/src/IconTimer5ShutterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimer5ShutterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimer5ShutterSharpFilled as default } diff --git a/src/IconTimerOffOutlinedFilled.tsx b/src/IconTimerOffOutlinedFilled.tsx new file mode 100644 index 000000000..d6bd972e5 --- /dev/null +++ b/src/IconTimerOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerOffOutlinedFilled as default } diff --git a/src/IconTimerOffRoundedFilled.tsx b/src/IconTimerOffRoundedFilled.tsx new file mode 100644 index 000000000..74d96af5b --- /dev/null +++ b/src/IconTimerOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerOffRoundedFilled as default } diff --git a/src/IconTimerOffSharpFilled.tsx b/src/IconTimerOffSharpFilled.tsx new file mode 100644 index 000000000..d4453e954 --- /dev/null +++ b/src/IconTimerOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerOffSharpFilled as default } diff --git a/src/IconTimerOutlinedFilled.tsx b/src/IconTimerOutlinedFilled.tsx new file mode 100644 index 000000000..b895fa1bd --- /dev/null +++ b/src/IconTimerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerOutlinedFilled as default } diff --git a/src/IconTimerPauseOutlinedFilled.tsx b/src/IconTimerPauseOutlinedFilled.tsx new file mode 100644 index 000000000..bf6bad39f --- /dev/null +++ b/src/IconTimerPauseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerPauseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerPauseOutlinedFilled as default } diff --git a/src/IconTimerPauseRoundedFilled.tsx b/src/IconTimerPauseRoundedFilled.tsx new file mode 100644 index 000000000..023d7375e --- /dev/null +++ b/src/IconTimerPauseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerPauseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerPauseRoundedFilled as default } diff --git a/src/IconTimerPauseSharpFilled.tsx b/src/IconTimerPauseSharpFilled.tsx new file mode 100644 index 000000000..67a5c1751 --- /dev/null +++ b/src/IconTimerPauseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerPauseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerPauseSharpFilled as default } diff --git a/src/IconTimerPlayOutlinedFilled.tsx b/src/IconTimerPlayOutlinedFilled.tsx new file mode 100644 index 000000000..d42953c02 --- /dev/null +++ b/src/IconTimerPlayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerPlayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerPlayOutlinedFilled as default } diff --git a/src/IconTimerPlayRoundedFilled.tsx b/src/IconTimerPlayRoundedFilled.tsx new file mode 100644 index 000000000..941864d2c --- /dev/null +++ b/src/IconTimerPlayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerPlayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerPlayRoundedFilled as default } diff --git a/src/IconTimerPlaySharpFilled.tsx b/src/IconTimerPlaySharpFilled.tsx new file mode 100644 index 000000000..5c0ab3391 --- /dev/null +++ b/src/IconTimerPlaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerPlaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerPlaySharpFilled as default } diff --git a/src/IconTimerRoundedFilled.tsx b/src/IconTimerRoundedFilled.tsx new file mode 100644 index 000000000..e63736630 --- /dev/null +++ b/src/IconTimerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerRoundedFilled as default } diff --git a/src/IconTimerSharpFilled.tsx b/src/IconTimerSharpFilled.tsx new file mode 100644 index 000000000..1eca6afa4 --- /dev/null +++ b/src/IconTimerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTimerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTimerSharpFilled as default } diff --git a/src/IconTireRepairOutlinedFilled.tsx b/src/IconTireRepairOutlinedFilled.tsx new file mode 100644 index 000000000..96ae0893c --- /dev/null +++ b/src/IconTireRepairOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTireRepairOutlinedFilled as default } diff --git a/src/IconTireRepairRoundedFilled.tsx b/src/IconTireRepairRoundedFilled.tsx new file mode 100644 index 000000000..b3f9722b8 --- /dev/null +++ b/src/IconTireRepairRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTireRepairRoundedFilled as default } diff --git a/src/IconTireRepairSharpFilled.tsx b/src/IconTireRepairSharpFilled.tsx new file mode 100644 index 000000000..68f0e5f58 --- /dev/null +++ b/src/IconTireRepairSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTireRepairSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTireRepairSharpFilled as default } diff --git a/src/IconTitleOutlinedFilled.tsx b/src/IconTitleOutlinedFilled.tsx new file mode 100644 index 000000000..5d496985b --- /dev/null +++ b/src/IconTitleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitleOutlinedFilled as default } diff --git a/src/IconTitleRoundedFilled.tsx b/src/IconTitleRoundedFilled.tsx new file mode 100644 index 000000000..651a5f9a5 --- /dev/null +++ b/src/IconTitleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitleRoundedFilled as default } diff --git a/src/IconTitleSharpFilled.tsx b/src/IconTitleSharpFilled.tsx new file mode 100644 index 000000000..4962adfdf --- /dev/null +++ b/src/IconTitleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitleSharpFilled as default } diff --git a/src/IconTitlecaseOutlinedFilled.tsx b/src/IconTitlecaseOutlinedFilled.tsx new file mode 100644 index 000000000..a734ca9a4 --- /dev/null +++ b/src/IconTitlecaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitlecaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitlecaseOutlinedFilled as default } diff --git a/src/IconTitlecaseRoundedFilled.tsx b/src/IconTitlecaseRoundedFilled.tsx new file mode 100644 index 000000000..e0bc83321 --- /dev/null +++ b/src/IconTitlecaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitlecaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitlecaseRoundedFilled as default } diff --git a/src/IconTitlecaseSharpFilled.tsx b/src/IconTitlecaseSharpFilled.tsx new file mode 100644 index 000000000..7e29e4797 --- /dev/null +++ b/src/IconTitlecaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTitlecaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTitlecaseSharpFilled as default } diff --git a/src/IconToastOutlinedFilled.tsx b/src/IconToastOutlinedFilled.tsx new file mode 100644 index 000000000..2e635d9e2 --- /dev/null +++ b/src/IconToastOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToastOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToastOutlinedFilled as default } diff --git a/src/IconToastRoundedFilled.tsx b/src/IconToastRoundedFilled.tsx new file mode 100644 index 000000000..911b20dcd --- /dev/null +++ b/src/IconToastRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToastRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToastRoundedFilled as default } diff --git a/src/IconToastSharpFilled.tsx b/src/IconToastSharpFilled.tsx new file mode 100644 index 000000000..e4267313a --- /dev/null +++ b/src/IconToastSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToastSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToastSharpFilled as default } diff --git a/src/IconTocOutlinedFilled.tsx b/src/IconTocOutlinedFilled.tsx new file mode 100644 index 000000000..5c7b0bcd3 --- /dev/null +++ b/src/IconTocOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTocOutlinedFilled as default } diff --git a/src/IconTocRoundedFilled.tsx b/src/IconTocRoundedFilled.tsx new file mode 100644 index 000000000..b6fadc954 --- /dev/null +++ b/src/IconTocRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTocRoundedFilled as default } diff --git a/src/IconTocSharpFilled.tsx b/src/IconTocSharpFilled.tsx new file mode 100644 index 000000000..893a2c9c8 --- /dev/null +++ b/src/IconTocSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTocSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTocSharpFilled as default } diff --git a/src/IconTodayOutlinedFilled.tsx b/src/IconTodayOutlinedFilled.tsx new file mode 100644 index 000000000..cd9989997 --- /dev/null +++ b/src/IconTodayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTodayOutlinedFilled as default } diff --git a/src/IconTodayRoundedFilled.tsx b/src/IconTodayRoundedFilled.tsx new file mode 100644 index 000000000..b18dbf3c7 --- /dev/null +++ b/src/IconTodayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTodayRoundedFilled as default } diff --git a/src/IconTodaySharpFilled.tsx b/src/IconTodaySharpFilled.tsx new file mode 100644 index 000000000..8eb05e9fc --- /dev/null +++ b/src/IconTodaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTodaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTodaySharpFilled as default } diff --git a/src/IconToggleOffOutlinedFilled.tsx b/src/IconToggleOffOutlinedFilled.tsx new file mode 100644 index 000000000..109994efb --- /dev/null +++ b/src/IconToggleOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToggleOffOutlinedFilled as default } diff --git a/src/IconToggleOffRoundedFilled.tsx b/src/IconToggleOffRoundedFilled.tsx new file mode 100644 index 000000000..59c5adfec --- /dev/null +++ b/src/IconToggleOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToggleOffRoundedFilled as default } diff --git a/src/IconToggleOffSharpFilled.tsx b/src/IconToggleOffSharpFilled.tsx new file mode 100644 index 000000000..d7bebb775 --- /dev/null +++ b/src/IconToggleOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToggleOffSharpFilled as default } diff --git a/src/IconToggleOnOutlinedFilled.tsx b/src/IconToggleOnOutlinedFilled.tsx new file mode 100644 index 000000000..7f5731a18 --- /dev/null +++ b/src/IconToggleOnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToggleOnOutlinedFilled as default } diff --git a/src/IconToggleOnRoundedFilled.tsx b/src/IconToggleOnRoundedFilled.tsx new file mode 100644 index 000000000..0c561f99f --- /dev/null +++ b/src/IconToggleOnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToggleOnRoundedFilled as default } diff --git a/src/IconToggleOnSharpFilled.tsx b/src/IconToggleOnSharpFilled.tsx new file mode 100644 index 000000000..b764c5caf --- /dev/null +++ b/src/IconToggleOnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToggleOnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToggleOnSharpFilled as default } diff --git a/src/IconTokenOutlinedFilled.tsx b/src/IconTokenOutlinedFilled.tsx new file mode 100644 index 000000000..64d1505b7 --- /dev/null +++ b/src/IconTokenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTokenOutlinedFilled as default } diff --git a/src/IconTokenRoundedFilled.tsx b/src/IconTokenRoundedFilled.tsx new file mode 100644 index 000000000..0ffb15886 --- /dev/null +++ b/src/IconTokenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTokenRoundedFilled as default } diff --git a/src/IconTokenSharpFilled.tsx b/src/IconTokenSharpFilled.tsx new file mode 100644 index 000000000..78bf976a4 --- /dev/null +++ b/src/IconTokenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTokenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTokenSharpFilled as default } diff --git a/src/IconTollOutlinedFilled.tsx b/src/IconTollOutlinedFilled.tsx new file mode 100644 index 000000000..3264a35b4 --- /dev/null +++ b/src/IconTollOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTollOutlinedFilled as default } diff --git a/src/IconTollRoundedFilled.tsx b/src/IconTollRoundedFilled.tsx new file mode 100644 index 000000000..93e133be1 --- /dev/null +++ b/src/IconTollRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTollRoundedFilled as default } diff --git a/src/IconTollSharpFilled.tsx b/src/IconTollSharpFilled.tsx new file mode 100644 index 000000000..ab60a7f50 --- /dev/null +++ b/src/IconTollSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTollSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTollSharpFilled as default } diff --git a/src/IconTonalityOutlinedFilled.tsx b/src/IconTonalityOutlinedFilled.tsx new file mode 100644 index 000000000..9b6f30e47 --- /dev/null +++ b/src/IconTonalityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTonalityOutlinedFilled as default } diff --git a/src/IconTonalityRoundedFilled.tsx b/src/IconTonalityRoundedFilled.tsx new file mode 100644 index 000000000..7795ce223 --- /dev/null +++ b/src/IconTonalityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTonalityRoundedFilled as default } diff --git a/src/IconTonalitySharpFilled.tsx b/src/IconTonalitySharpFilled.tsx new file mode 100644 index 000000000..ee14a866c --- /dev/null +++ b/src/IconTonalitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTonalitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTonalitySharpFilled as default } diff --git a/src/IconToolbarOutlinedFilled.tsx b/src/IconToolbarOutlinedFilled.tsx new file mode 100644 index 000000000..45e2e191d --- /dev/null +++ b/src/IconToolbarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolbarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolbarOutlinedFilled as default } diff --git a/src/IconToolbarRoundedFilled.tsx b/src/IconToolbarRoundedFilled.tsx new file mode 100644 index 000000000..8307b992b --- /dev/null +++ b/src/IconToolbarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolbarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolbarRoundedFilled as default } diff --git a/src/IconToolbarSharpFilled.tsx b/src/IconToolbarSharpFilled.tsx new file mode 100644 index 000000000..33a609930 --- /dev/null +++ b/src/IconToolbarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolbarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolbarSharpFilled as default } diff --git a/src/IconToolsFlatHeadOutlinedFilled.tsx b/src/IconToolsFlatHeadOutlinedFilled.tsx new file mode 100644 index 000000000..6620666ac --- /dev/null +++ b/src/IconToolsFlatHeadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsFlatHeadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsFlatHeadOutlinedFilled as default } diff --git a/src/IconToolsFlatHeadRoundedFilled.tsx b/src/IconToolsFlatHeadRoundedFilled.tsx new file mode 100644 index 000000000..88f5d5fce --- /dev/null +++ b/src/IconToolsFlatHeadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsFlatHeadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsFlatHeadRoundedFilled as default } diff --git a/src/IconToolsFlatHeadSharpFilled.tsx b/src/IconToolsFlatHeadSharpFilled.tsx new file mode 100644 index 000000000..9d2cd41a5 --- /dev/null +++ b/src/IconToolsFlatHeadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsFlatHeadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsFlatHeadSharpFilled as default } diff --git a/src/IconToolsInstallationKitOutlinedFilled.tsx b/src/IconToolsInstallationKitOutlinedFilled.tsx new file mode 100644 index 000000000..9b6e2f935 --- /dev/null +++ b/src/IconToolsInstallationKitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsInstallationKitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsInstallationKitOutlinedFilled as default } diff --git a/src/IconToolsInstallationKitRoundedFilled.tsx b/src/IconToolsInstallationKitRoundedFilled.tsx new file mode 100644 index 000000000..7afcb02ae --- /dev/null +++ b/src/IconToolsInstallationKitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsInstallationKitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsInstallationKitRoundedFilled as default } diff --git a/src/IconToolsInstallationKitSharpFilled.tsx b/src/IconToolsInstallationKitSharpFilled.tsx new file mode 100644 index 000000000..eff1ebbd3 --- /dev/null +++ b/src/IconToolsInstallationKitSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsInstallationKitSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsInstallationKitSharpFilled as default } diff --git a/src/IconToolsLadderOutlinedFilled.tsx b/src/IconToolsLadderOutlinedFilled.tsx new file mode 100644 index 000000000..d3560d0b3 --- /dev/null +++ b/src/IconToolsLadderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsLadderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsLadderOutlinedFilled as default } diff --git a/src/IconToolsLadderRoundedFilled.tsx b/src/IconToolsLadderRoundedFilled.tsx new file mode 100644 index 000000000..795ba213f --- /dev/null +++ b/src/IconToolsLadderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsLadderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsLadderRoundedFilled as default } diff --git a/src/IconToolsLadderSharpFilled.tsx b/src/IconToolsLadderSharpFilled.tsx new file mode 100644 index 000000000..e1151931e --- /dev/null +++ b/src/IconToolsLadderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsLadderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsLadderSharpFilled as default } diff --git a/src/IconToolsLevelOutlinedFilled.tsx b/src/IconToolsLevelOutlinedFilled.tsx new file mode 100644 index 000000000..304fe1398 --- /dev/null +++ b/src/IconToolsLevelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsLevelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsLevelOutlinedFilled as default } diff --git a/src/IconToolsLevelRoundedFilled.tsx b/src/IconToolsLevelRoundedFilled.tsx new file mode 100644 index 000000000..4435d276f --- /dev/null +++ b/src/IconToolsLevelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsLevelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsLevelRoundedFilled as default } diff --git a/src/IconToolsLevelSharpFilled.tsx b/src/IconToolsLevelSharpFilled.tsx new file mode 100644 index 000000000..7ef7b33f5 --- /dev/null +++ b/src/IconToolsLevelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsLevelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsLevelSharpFilled as default } diff --git a/src/IconToolsPhillipsOutlinedFilled.tsx b/src/IconToolsPhillipsOutlinedFilled.tsx new file mode 100644 index 000000000..c789d2e50 --- /dev/null +++ b/src/IconToolsPhillipsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPhillipsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPhillipsOutlinedFilled as default } diff --git a/src/IconToolsPhillipsRoundedFilled.tsx b/src/IconToolsPhillipsRoundedFilled.tsx new file mode 100644 index 000000000..23096713a --- /dev/null +++ b/src/IconToolsPhillipsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPhillipsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPhillipsRoundedFilled as default } diff --git a/src/IconToolsPhillipsSharpFilled.tsx b/src/IconToolsPhillipsSharpFilled.tsx new file mode 100644 index 000000000..576711cf3 --- /dev/null +++ b/src/IconToolsPhillipsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPhillipsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPhillipsSharpFilled as default } diff --git a/src/IconToolsPliersWireStripperOutlinedFilled.tsx b/src/IconToolsPliersWireStripperOutlinedFilled.tsx new file mode 100644 index 000000000..2c04ad1fa --- /dev/null +++ b/src/IconToolsPliersWireStripperOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPliersWireStripperOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPliersWireStripperOutlinedFilled as default } diff --git a/src/IconToolsPliersWireStripperRoundedFilled.tsx b/src/IconToolsPliersWireStripperRoundedFilled.tsx new file mode 100644 index 000000000..0c117c686 --- /dev/null +++ b/src/IconToolsPliersWireStripperRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPliersWireStripperRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPliersWireStripperRoundedFilled as default } diff --git a/src/IconToolsPliersWireStripperSharpFilled.tsx b/src/IconToolsPliersWireStripperSharpFilled.tsx new file mode 100644 index 000000000..8ee395f8a --- /dev/null +++ b/src/IconToolsPliersWireStripperSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPliersWireStripperSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPliersWireStripperSharpFilled as default } diff --git a/src/IconToolsPowerDrillOutlinedFilled.tsx b/src/IconToolsPowerDrillOutlinedFilled.tsx new file mode 100644 index 000000000..7ab0743a7 --- /dev/null +++ b/src/IconToolsPowerDrillOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPowerDrillOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPowerDrillOutlinedFilled as default } diff --git a/src/IconToolsPowerDrillRoundedFilled.tsx b/src/IconToolsPowerDrillRoundedFilled.tsx new file mode 100644 index 000000000..d1a84c633 --- /dev/null +++ b/src/IconToolsPowerDrillRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPowerDrillRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPowerDrillRoundedFilled as default } diff --git a/src/IconToolsPowerDrillSharpFilled.tsx b/src/IconToolsPowerDrillSharpFilled.tsx new file mode 100644 index 000000000..5ef8e483f --- /dev/null +++ b/src/IconToolsPowerDrillSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToolsPowerDrillSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToolsPowerDrillSharpFilled as default } diff --git a/src/IconTooltipOutlinedFilled.tsx b/src/IconTooltipOutlinedFilled.tsx new file mode 100644 index 000000000..9caf7aa5a --- /dev/null +++ b/src/IconTooltipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTooltipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTooltipOutlinedFilled as default } diff --git a/src/IconTooltipRoundedFilled.tsx b/src/IconTooltipRoundedFilled.tsx new file mode 100644 index 000000000..276a080b3 --- /dev/null +++ b/src/IconTooltipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTooltipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTooltipRoundedFilled as default } diff --git a/src/IconTooltipSharpFilled.tsx b/src/IconTooltipSharpFilled.tsx new file mode 100644 index 000000000..1514a27cb --- /dev/null +++ b/src/IconTooltipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTooltipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTooltipSharpFilled as default } diff --git a/src/IconTopPanelCloseOutlinedFilled.tsx b/src/IconTopPanelCloseOutlinedFilled.tsx new file mode 100644 index 000000000..81c8316f7 --- /dev/null +++ b/src/IconTopPanelCloseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopPanelCloseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopPanelCloseOutlinedFilled as default } diff --git a/src/IconTopPanelCloseRoundedFilled.tsx b/src/IconTopPanelCloseRoundedFilled.tsx new file mode 100644 index 000000000..ea5675dad --- /dev/null +++ b/src/IconTopPanelCloseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopPanelCloseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopPanelCloseRoundedFilled as default } diff --git a/src/IconTopPanelCloseSharpFilled.tsx b/src/IconTopPanelCloseSharpFilled.tsx new file mode 100644 index 000000000..a368c8242 --- /dev/null +++ b/src/IconTopPanelCloseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopPanelCloseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopPanelCloseSharpFilled as default } diff --git a/src/IconTopPanelOpenOutlinedFilled.tsx b/src/IconTopPanelOpenOutlinedFilled.tsx new file mode 100644 index 000000000..25cfdcc1a --- /dev/null +++ b/src/IconTopPanelOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopPanelOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopPanelOpenOutlinedFilled as default } diff --git a/src/IconTopPanelOpenRoundedFilled.tsx b/src/IconTopPanelOpenRoundedFilled.tsx new file mode 100644 index 000000000..ce589d7e6 --- /dev/null +++ b/src/IconTopPanelOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopPanelOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopPanelOpenRoundedFilled as default } diff --git a/src/IconTopPanelOpenSharpFilled.tsx b/src/IconTopPanelOpenSharpFilled.tsx new file mode 100644 index 000000000..dffdaf873 --- /dev/null +++ b/src/IconTopPanelOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopPanelOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopPanelOpenSharpFilled as default } diff --git a/src/IconTopicOutlinedFilled.tsx b/src/IconTopicOutlinedFilled.tsx new file mode 100644 index 000000000..e3de218e3 --- /dev/null +++ b/src/IconTopicOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopicOutlinedFilled as default } diff --git a/src/IconTopicRoundedFilled.tsx b/src/IconTopicRoundedFilled.tsx new file mode 100644 index 000000000..6b1c7cfbc --- /dev/null +++ b/src/IconTopicRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopicRoundedFilled as default } diff --git a/src/IconTopicSharpFilled.tsx b/src/IconTopicSharpFilled.tsx new file mode 100644 index 000000000..1f86edd2d --- /dev/null +++ b/src/IconTopicSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTopicSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTopicSharpFilled as default } diff --git a/src/IconTornadoOutlinedFilled.tsx b/src/IconTornadoOutlinedFilled.tsx new file mode 100644 index 000000000..6c9cf5ec3 --- /dev/null +++ b/src/IconTornadoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTornadoOutlinedFilled as default } diff --git a/src/IconTornadoRoundedFilled.tsx b/src/IconTornadoRoundedFilled.tsx new file mode 100644 index 000000000..6fd459ea4 --- /dev/null +++ b/src/IconTornadoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTornadoRoundedFilled as default } diff --git a/src/IconTornadoSharpFilled.tsx b/src/IconTornadoSharpFilled.tsx new file mode 100644 index 000000000..27ae7de86 --- /dev/null +++ b/src/IconTornadoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTornadoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTornadoSharpFilled as default } diff --git a/src/IconTotalDissolvedSolidsOutlinedFilled.tsx b/src/IconTotalDissolvedSolidsOutlinedFilled.tsx new file mode 100644 index 000000000..2693c9f5a --- /dev/null +++ b/src/IconTotalDissolvedSolidsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTotalDissolvedSolidsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTotalDissolvedSolidsOutlinedFilled as default } diff --git a/src/IconTotalDissolvedSolidsRoundedFilled.tsx b/src/IconTotalDissolvedSolidsRoundedFilled.tsx new file mode 100644 index 000000000..553a96890 --- /dev/null +++ b/src/IconTotalDissolvedSolidsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTotalDissolvedSolidsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTotalDissolvedSolidsRoundedFilled as default } diff --git a/src/IconTotalDissolvedSolidsSharpFilled.tsx b/src/IconTotalDissolvedSolidsSharpFilled.tsx new file mode 100644 index 000000000..df78394a7 --- /dev/null +++ b/src/IconTotalDissolvedSolidsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTotalDissolvedSolidsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTotalDissolvedSolidsSharpFilled as default } diff --git a/src/IconTouchAppOutlinedFilled.tsx b/src/IconTouchAppOutlinedFilled.tsx new file mode 100644 index 000000000..58d8009ab --- /dev/null +++ b/src/IconTouchAppOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchAppOutlinedFilled as default } diff --git a/src/IconTouchAppRoundedFilled.tsx b/src/IconTouchAppRoundedFilled.tsx new file mode 100644 index 000000000..9ff729611 --- /dev/null +++ b/src/IconTouchAppRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchAppRoundedFilled as default } diff --git a/src/IconTouchAppSharpFilled.tsx b/src/IconTouchAppSharpFilled.tsx new file mode 100644 index 000000000..52d757d80 --- /dev/null +++ b/src/IconTouchAppSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchAppSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchAppSharpFilled as default } diff --git a/src/IconTouchpadMouseOffOutlinedFilled.tsx b/src/IconTouchpadMouseOffOutlinedFilled.tsx new file mode 100644 index 000000000..133fe2010 --- /dev/null +++ b/src/IconTouchpadMouseOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchpadMouseOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchpadMouseOffOutlinedFilled as default } diff --git a/src/IconTouchpadMouseOffRoundedFilled.tsx b/src/IconTouchpadMouseOffRoundedFilled.tsx new file mode 100644 index 000000000..87752b915 --- /dev/null +++ b/src/IconTouchpadMouseOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchpadMouseOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchpadMouseOffRoundedFilled as default } diff --git a/src/IconTouchpadMouseOffSharpFilled.tsx b/src/IconTouchpadMouseOffSharpFilled.tsx new file mode 100644 index 000000000..500b7ef95 --- /dev/null +++ b/src/IconTouchpadMouseOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchpadMouseOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchpadMouseOffSharpFilled as default } diff --git a/src/IconTouchpadMouseOutlinedFilled.tsx b/src/IconTouchpadMouseOutlinedFilled.tsx new file mode 100644 index 000000000..4525e84fa --- /dev/null +++ b/src/IconTouchpadMouseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchpadMouseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchpadMouseOutlinedFilled as default } diff --git a/src/IconTouchpadMouseRoundedFilled.tsx b/src/IconTouchpadMouseRoundedFilled.tsx new file mode 100644 index 000000000..cbc107b46 --- /dev/null +++ b/src/IconTouchpadMouseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchpadMouseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchpadMouseRoundedFilled as default } diff --git a/src/IconTouchpadMouseSharpFilled.tsx b/src/IconTouchpadMouseSharpFilled.tsx new file mode 100644 index 000000000..17be1a8f9 --- /dev/null +++ b/src/IconTouchpadMouseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTouchpadMouseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTouchpadMouseSharpFilled as default } diff --git a/src/IconTourOutlinedFilled.tsx b/src/IconTourOutlinedFilled.tsx new file mode 100644 index 000000000..4542a2188 --- /dev/null +++ b/src/IconTourOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTourOutlinedFilled as default } diff --git a/src/IconTourRoundedFilled.tsx b/src/IconTourRoundedFilled.tsx new file mode 100644 index 000000000..f377041d4 --- /dev/null +++ b/src/IconTourRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTourRoundedFilled as default } diff --git a/src/IconTourSharpFilled.tsx b/src/IconTourSharpFilled.tsx new file mode 100644 index 000000000..4e64da97a --- /dev/null +++ b/src/IconTourSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTourSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTourSharpFilled as default } diff --git a/src/IconToysAndGamesOutlinedFilled.tsx b/src/IconToysAndGamesOutlinedFilled.tsx new file mode 100644 index 000000000..337cf55c0 --- /dev/null +++ b/src/IconToysAndGamesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysAndGamesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysAndGamesOutlinedFilled as default } diff --git a/src/IconToysAndGamesRoundedFilled.tsx b/src/IconToysAndGamesRoundedFilled.tsx new file mode 100644 index 000000000..fc8b6edcb --- /dev/null +++ b/src/IconToysAndGamesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysAndGamesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysAndGamesRoundedFilled as default } diff --git a/src/IconToysAndGamesSharpFilled.tsx b/src/IconToysAndGamesSharpFilled.tsx new file mode 100644 index 000000000..5a12698e2 --- /dev/null +++ b/src/IconToysAndGamesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysAndGamesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysAndGamesSharpFilled as default } diff --git a/src/IconToysFanOutlinedFilled.tsx b/src/IconToysFanOutlinedFilled.tsx new file mode 100644 index 000000000..6e768e408 --- /dev/null +++ b/src/IconToysFanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysFanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysFanOutlinedFilled as default } diff --git a/src/IconToysFanRoundedFilled.tsx b/src/IconToysFanRoundedFilled.tsx new file mode 100644 index 000000000..4f412611c --- /dev/null +++ b/src/IconToysFanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysFanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysFanRoundedFilled as default } diff --git a/src/IconToysFanSharpFilled.tsx b/src/IconToysFanSharpFilled.tsx new file mode 100644 index 000000000..67936641f --- /dev/null +++ b/src/IconToysFanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysFanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysFanSharpFilled as default } diff --git a/src/IconToysOutlinedFilled.tsx b/src/IconToysOutlinedFilled.tsx new file mode 100644 index 000000000..3d0fe7a80 --- /dev/null +++ b/src/IconToysOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysOutlinedFilled as default } diff --git a/src/IconToysRoundedFilled.tsx b/src/IconToysRoundedFilled.tsx new file mode 100644 index 000000000..85f28cc21 --- /dev/null +++ b/src/IconToysRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysRoundedFilled as default } diff --git a/src/IconToysSharpFilled.tsx b/src/IconToysSharpFilled.tsx new file mode 100644 index 000000000..0cca016b5 --- /dev/null +++ b/src/IconToysSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconToysSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconToysSharpFilled as default } diff --git a/src/IconTrackChangesOutlinedFilled.tsx b/src/IconTrackChangesOutlinedFilled.tsx new file mode 100644 index 000000000..3058b1d9d --- /dev/null +++ b/src/IconTrackChangesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackChangesOutlinedFilled as default } diff --git a/src/IconTrackChangesRoundedFilled.tsx b/src/IconTrackChangesRoundedFilled.tsx new file mode 100644 index 000000000..ee7f4b956 --- /dev/null +++ b/src/IconTrackChangesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackChangesRoundedFilled as default } diff --git a/src/IconTrackChangesSharpFilled.tsx b/src/IconTrackChangesSharpFilled.tsx new file mode 100644 index 000000000..d8ee13157 --- /dev/null +++ b/src/IconTrackChangesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackChangesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackChangesSharpFilled as default } diff --git a/src/IconTrackpadInput2OutlinedFilled.tsx b/src/IconTrackpadInput2OutlinedFilled.tsx new file mode 100644 index 000000000..855c0ca05 --- /dev/null +++ b/src/IconTrackpadInput2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInput2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInput2OutlinedFilled as default } diff --git a/src/IconTrackpadInput2RoundedFilled.tsx b/src/IconTrackpadInput2RoundedFilled.tsx new file mode 100644 index 000000000..585ec61de --- /dev/null +++ b/src/IconTrackpadInput2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInput2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInput2RoundedFilled as default } diff --git a/src/IconTrackpadInput2SharpFilled.tsx b/src/IconTrackpadInput2SharpFilled.tsx new file mode 100644 index 000000000..da5c316ad --- /dev/null +++ b/src/IconTrackpadInput2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInput2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInput2SharpFilled as default } diff --git a/src/IconTrackpadInput3OutlinedFilled.tsx b/src/IconTrackpadInput3OutlinedFilled.tsx new file mode 100644 index 000000000..cd334db5e --- /dev/null +++ b/src/IconTrackpadInput3OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInput3OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInput3OutlinedFilled as default } diff --git a/src/IconTrackpadInput3RoundedFilled.tsx b/src/IconTrackpadInput3RoundedFilled.tsx new file mode 100644 index 000000000..642d98cc8 --- /dev/null +++ b/src/IconTrackpadInput3RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInput3RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInput3RoundedFilled as default } diff --git a/src/IconTrackpadInput3SharpFilled.tsx b/src/IconTrackpadInput3SharpFilled.tsx new file mode 100644 index 000000000..b789442aa --- /dev/null +++ b/src/IconTrackpadInput3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInput3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInput3SharpFilled as default } diff --git a/src/IconTrackpadInputOutlinedFilled.tsx b/src/IconTrackpadInputOutlinedFilled.tsx new file mode 100644 index 000000000..e10fb3a49 --- /dev/null +++ b/src/IconTrackpadInputOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInputOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInputOutlinedFilled as default } diff --git a/src/IconTrackpadInputRoundedFilled.tsx b/src/IconTrackpadInputRoundedFilled.tsx new file mode 100644 index 000000000..fe1e10a84 --- /dev/null +++ b/src/IconTrackpadInputRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInputRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInputRoundedFilled as default } diff --git a/src/IconTrackpadInputSharpFilled.tsx b/src/IconTrackpadInputSharpFilled.tsx new file mode 100644 index 000000000..99202a5f7 --- /dev/null +++ b/src/IconTrackpadInputSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrackpadInputSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrackpadInputSharpFilled as default } diff --git a/src/IconTrafficJamOutlinedFilled.tsx b/src/IconTrafficJamOutlinedFilled.tsx new file mode 100644 index 000000000..f2cedac9d --- /dev/null +++ b/src/IconTrafficJamOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficJamOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrafficJamOutlinedFilled as default } diff --git a/src/IconTrafficJamRoundedFilled.tsx b/src/IconTrafficJamRoundedFilled.tsx new file mode 100644 index 000000000..557933f5d --- /dev/null +++ b/src/IconTrafficJamRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficJamRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrafficJamRoundedFilled as default } diff --git a/src/IconTrafficJamSharpFilled.tsx b/src/IconTrafficJamSharpFilled.tsx new file mode 100644 index 000000000..90b9b7fdc --- /dev/null +++ b/src/IconTrafficJamSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficJamSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrafficJamSharpFilled as default } diff --git a/src/IconTrafficOutlinedFilled.tsx b/src/IconTrafficOutlinedFilled.tsx new file mode 100644 index 000000000..c05d2759e --- /dev/null +++ b/src/IconTrafficOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrafficOutlinedFilled as default } diff --git a/src/IconTrafficRoundedFilled.tsx b/src/IconTrafficRoundedFilled.tsx new file mode 100644 index 000000000..b061b600d --- /dev/null +++ b/src/IconTrafficRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrafficRoundedFilled as default } diff --git a/src/IconTrafficSharpFilled.tsx b/src/IconTrafficSharpFilled.tsx new file mode 100644 index 000000000..256c50d93 --- /dev/null +++ b/src/IconTrafficSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrafficSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrafficSharpFilled as default } diff --git a/src/IconTrailLengthMediumOutlinedFilled.tsx b/src/IconTrailLengthMediumOutlinedFilled.tsx new file mode 100644 index 000000000..4e0cdbacd --- /dev/null +++ b/src/IconTrailLengthMediumOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthMediumOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthMediumOutlinedFilled as default } diff --git a/src/IconTrailLengthMediumRoundedFilled.tsx b/src/IconTrailLengthMediumRoundedFilled.tsx new file mode 100644 index 000000000..630ea75aa --- /dev/null +++ b/src/IconTrailLengthMediumRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthMediumRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthMediumRoundedFilled as default } diff --git a/src/IconTrailLengthMediumSharpFilled.tsx b/src/IconTrailLengthMediumSharpFilled.tsx new file mode 100644 index 000000000..bcc2e9439 --- /dev/null +++ b/src/IconTrailLengthMediumSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthMediumSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthMediumSharpFilled as default } diff --git a/src/IconTrailLengthOutlinedFilled.tsx b/src/IconTrailLengthOutlinedFilled.tsx new file mode 100644 index 000000000..fb42bed53 --- /dev/null +++ b/src/IconTrailLengthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthOutlinedFilled as default } diff --git a/src/IconTrailLengthRoundedFilled.tsx b/src/IconTrailLengthRoundedFilled.tsx new file mode 100644 index 000000000..0fb610e1b --- /dev/null +++ b/src/IconTrailLengthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthRoundedFilled as default } diff --git a/src/IconTrailLengthSharpFilled.tsx b/src/IconTrailLengthSharpFilled.tsx new file mode 100644 index 000000000..b445023a0 --- /dev/null +++ b/src/IconTrailLengthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthSharpFilled as default } diff --git a/src/IconTrailLengthShortOutlinedFilled.tsx b/src/IconTrailLengthShortOutlinedFilled.tsx new file mode 100644 index 000000000..5e9f17bc8 --- /dev/null +++ b/src/IconTrailLengthShortOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthShortOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthShortOutlinedFilled as default } diff --git a/src/IconTrailLengthShortRoundedFilled.tsx b/src/IconTrailLengthShortRoundedFilled.tsx new file mode 100644 index 000000000..b14499eb5 --- /dev/null +++ b/src/IconTrailLengthShortRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthShortRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthShortRoundedFilled as default } diff --git a/src/IconTrailLengthShortSharpFilled.tsx b/src/IconTrailLengthShortSharpFilled.tsx new file mode 100644 index 000000000..46262fc30 --- /dev/null +++ b/src/IconTrailLengthShortSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrailLengthShortSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrailLengthShortSharpFilled as default } diff --git a/src/IconTrainOutlinedFilled.tsx b/src/IconTrainOutlinedFilled.tsx new file mode 100644 index 000000000..3f0ed5599 --- /dev/null +++ b/src/IconTrainOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrainOutlinedFilled as default } diff --git a/src/IconTrainRoundedFilled.tsx b/src/IconTrainRoundedFilled.tsx new file mode 100644 index 000000000..6a3fdb18e --- /dev/null +++ b/src/IconTrainRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrainRoundedFilled as default } diff --git a/src/IconTrainSharpFilled.tsx b/src/IconTrainSharpFilled.tsx new file mode 100644 index 000000000..4d6f817d1 --- /dev/null +++ b/src/IconTrainSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrainSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrainSharpFilled as default } diff --git a/src/IconTramOutlinedFilled.tsx b/src/IconTramOutlinedFilled.tsx new file mode 100644 index 000000000..0f90c1c71 --- /dev/null +++ b/src/IconTramOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTramOutlinedFilled as default } diff --git a/src/IconTramRoundedFilled.tsx b/src/IconTramRoundedFilled.tsx new file mode 100644 index 000000000..2cb7cc76e --- /dev/null +++ b/src/IconTramRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTramRoundedFilled as default } diff --git a/src/IconTramSharpFilled.tsx b/src/IconTramSharpFilled.tsx new file mode 100644 index 000000000..9c28a0f93 --- /dev/null +++ b/src/IconTramSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTramSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTramSharpFilled as default } diff --git a/src/IconTranscribeOutlinedFilled.tsx b/src/IconTranscribeOutlinedFilled.tsx new file mode 100644 index 000000000..64c8b1596 --- /dev/null +++ b/src/IconTranscribeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTranscribeOutlinedFilled as default } diff --git a/src/IconTranscribeRoundedFilled.tsx b/src/IconTranscribeRoundedFilled.tsx new file mode 100644 index 000000000..e8a1bb757 --- /dev/null +++ b/src/IconTranscribeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTranscribeRoundedFilled as default } diff --git a/src/IconTranscribeSharpFilled.tsx b/src/IconTranscribeSharpFilled.tsx new file mode 100644 index 000000000..12b3f01ce --- /dev/null +++ b/src/IconTranscribeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranscribeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTranscribeSharpFilled as default } diff --git a/src/IconTransferWithinAStationOutlinedFilled.tsx b/src/IconTransferWithinAStationOutlinedFilled.tsx new file mode 100644 index 000000000..dcf62ce73 --- /dev/null +++ b/src/IconTransferWithinAStationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransferWithinAStationOutlinedFilled as default } diff --git a/src/IconTransferWithinAStationRoundedFilled.tsx b/src/IconTransferWithinAStationRoundedFilled.tsx new file mode 100644 index 000000000..4795cb638 --- /dev/null +++ b/src/IconTransferWithinAStationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransferWithinAStationRoundedFilled as default } diff --git a/src/IconTransferWithinAStationSharpFilled.tsx b/src/IconTransferWithinAStationSharpFilled.tsx new file mode 100644 index 000000000..c2a822a75 --- /dev/null +++ b/src/IconTransferWithinAStationSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransferWithinAStationSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransferWithinAStationSharpFilled as default } diff --git a/src/IconTransformOutlinedFilled.tsx b/src/IconTransformOutlinedFilled.tsx new file mode 100644 index 000000000..14a63634a --- /dev/null +++ b/src/IconTransformOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransformOutlinedFilled as default } diff --git a/src/IconTransformRoundedFilled.tsx b/src/IconTransformRoundedFilled.tsx new file mode 100644 index 000000000..147262583 --- /dev/null +++ b/src/IconTransformRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransformRoundedFilled as default } diff --git a/src/IconTransformSharpFilled.tsx b/src/IconTransformSharpFilled.tsx new file mode 100644 index 000000000..0375f28a4 --- /dev/null +++ b/src/IconTransformSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransformSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransformSharpFilled as default } diff --git a/src/IconTransgenderOutlinedFilled.tsx b/src/IconTransgenderOutlinedFilled.tsx new file mode 100644 index 000000000..73672ae92 --- /dev/null +++ b/src/IconTransgenderOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransgenderOutlinedFilled as default } diff --git a/src/IconTransgenderRoundedFilled.tsx b/src/IconTransgenderRoundedFilled.tsx new file mode 100644 index 000000000..38f2eaa48 --- /dev/null +++ b/src/IconTransgenderRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransgenderRoundedFilled as default } diff --git a/src/IconTransgenderSharpFilled.tsx b/src/IconTransgenderSharpFilled.tsx new file mode 100644 index 000000000..9f85e3fea --- /dev/null +++ b/src/IconTransgenderSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransgenderSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransgenderSharpFilled as default } diff --git a/src/IconTransitEnterexitOutlinedFilled.tsx b/src/IconTransitEnterexitOutlinedFilled.tsx new file mode 100644 index 000000000..fef00f051 --- /dev/null +++ b/src/IconTransitEnterexitOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitEnterexitOutlinedFilled as default } diff --git a/src/IconTransitEnterexitRoundedFilled.tsx b/src/IconTransitEnterexitRoundedFilled.tsx new file mode 100644 index 000000000..51a8915ed --- /dev/null +++ b/src/IconTransitEnterexitRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitEnterexitRoundedFilled as default } diff --git a/src/IconTransitEnterexitSharpFilled.tsx b/src/IconTransitEnterexitSharpFilled.tsx new file mode 100644 index 000000000..f1969c27c --- /dev/null +++ b/src/IconTransitEnterexitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitEnterexitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitEnterexitSharpFilled as default } diff --git a/src/IconTransitTicketOutlinedFilled.tsx b/src/IconTransitTicketOutlinedFilled.tsx new file mode 100644 index 000000000..d16dfc165 --- /dev/null +++ b/src/IconTransitTicketOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitTicketOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitTicketOutlinedFilled as default } diff --git a/src/IconTransitTicketRoundedFilled.tsx b/src/IconTransitTicketRoundedFilled.tsx new file mode 100644 index 000000000..ca5620f18 --- /dev/null +++ b/src/IconTransitTicketRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitTicketRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitTicketRoundedFilled as default } diff --git a/src/IconTransitTicketSharpFilled.tsx b/src/IconTransitTicketSharpFilled.tsx new file mode 100644 index 000000000..b99a395a6 --- /dev/null +++ b/src/IconTransitTicketSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitTicketSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitTicketSharpFilled as default } diff --git a/src/IconTransitionChopOutlinedFilled.tsx b/src/IconTransitionChopOutlinedFilled.tsx new file mode 100644 index 000000000..0f58fb3f8 --- /dev/null +++ b/src/IconTransitionChopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionChopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionChopOutlinedFilled as default } diff --git a/src/IconTransitionChopRoundedFilled.tsx b/src/IconTransitionChopRoundedFilled.tsx new file mode 100644 index 000000000..14b090269 --- /dev/null +++ b/src/IconTransitionChopRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionChopRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionChopRoundedFilled as default } diff --git a/src/IconTransitionChopSharpFilled.tsx b/src/IconTransitionChopSharpFilled.tsx new file mode 100644 index 000000000..4ceaeb323 --- /dev/null +++ b/src/IconTransitionChopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionChopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionChopSharpFilled as default } diff --git a/src/IconTransitionDissolveOutlinedFilled.tsx b/src/IconTransitionDissolveOutlinedFilled.tsx new file mode 100644 index 000000000..49aebbad9 --- /dev/null +++ b/src/IconTransitionDissolveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionDissolveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionDissolveOutlinedFilled as default } diff --git a/src/IconTransitionDissolveRoundedFilled.tsx b/src/IconTransitionDissolveRoundedFilled.tsx new file mode 100644 index 000000000..af0d7eddc --- /dev/null +++ b/src/IconTransitionDissolveRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionDissolveRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionDissolveRoundedFilled as default } diff --git a/src/IconTransitionDissolveSharpFilled.tsx b/src/IconTransitionDissolveSharpFilled.tsx new file mode 100644 index 000000000..b08f3fdf6 --- /dev/null +++ b/src/IconTransitionDissolveSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionDissolveSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionDissolveSharpFilled as default } diff --git a/src/IconTransitionFadeOutlinedFilled.tsx b/src/IconTransitionFadeOutlinedFilled.tsx new file mode 100644 index 000000000..56ebbd31e --- /dev/null +++ b/src/IconTransitionFadeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionFadeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionFadeOutlinedFilled as default } diff --git a/src/IconTransitionFadeRoundedFilled.tsx b/src/IconTransitionFadeRoundedFilled.tsx new file mode 100644 index 000000000..4668fa036 --- /dev/null +++ b/src/IconTransitionFadeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionFadeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionFadeRoundedFilled as default } diff --git a/src/IconTransitionFadeSharpFilled.tsx b/src/IconTransitionFadeSharpFilled.tsx new file mode 100644 index 000000000..471b53bc5 --- /dev/null +++ b/src/IconTransitionFadeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionFadeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionFadeSharpFilled as default } diff --git a/src/IconTransitionPushOutlinedFilled.tsx b/src/IconTransitionPushOutlinedFilled.tsx new file mode 100644 index 000000000..be416b983 --- /dev/null +++ b/src/IconTransitionPushOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionPushOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionPushOutlinedFilled as default } diff --git a/src/IconTransitionPushRoundedFilled.tsx b/src/IconTransitionPushRoundedFilled.tsx new file mode 100644 index 000000000..c6d5dfc9c --- /dev/null +++ b/src/IconTransitionPushRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionPushRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionPushRoundedFilled as default } diff --git a/src/IconTransitionPushSharpFilled.tsx b/src/IconTransitionPushSharpFilled.tsx new file mode 100644 index 000000000..d3b341adb --- /dev/null +++ b/src/IconTransitionPushSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionPushSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionPushSharpFilled as default } diff --git a/src/IconTransitionSlideOutlinedFilled.tsx b/src/IconTransitionSlideOutlinedFilled.tsx new file mode 100644 index 000000000..515587138 --- /dev/null +++ b/src/IconTransitionSlideOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionSlideOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionSlideOutlinedFilled as default } diff --git a/src/IconTransitionSlideRoundedFilled.tsx b/src/IconTransitionSlideRoundedFilled.tsx new file mode 100644 index 000000000..70f158f24 --- /dev/null +++ b/src/IconTransitionSlideRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionSlideRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionSlideRoundedFilled as default } diff --git a/src/IconTransitionSlideSharpFilled.tsx b/src/IconTransitionSlideSharpFilled.tsx new file mode 100644 index 000000000..4222bf624 --- /dev/null +++ b/src/IconTransitionSlideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransitionSlideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransitionSlideSharpFilled as default } diff --git a/src/IconTranslateOutlinedFilled.tsx b/src/IconTranslateOutlinedFilled.tsx new file mode 100644 index 000000000..a1eaa5839 --- /dev/null +++ b/src/IconTranslateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTranslateOutlinedFilled as default } diff --git a/src/IconTranslateRoundedFilled.tsx b/src/IconTranslateRoundedFilled.tsx new file mode 100644 index 000000000..dc1eaea5d --- /dev/null +++ b/src/IconTranslateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTranslateRoundedFilled as default } diff --git a/src/IconTranslateSharpFilled.tsx b/src/IconTranslateSharpFilled.tsx new file mode 100644 index 000000000..9bc8d31ed --- /dev/null +++ b/src/IconTranslateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTranslateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTranslateSharpFilled as default } diff --git a/src/IconTransportationOutlinedFilled.tsx b/src/IconTransportationOutlinedFilled.tsx new file mode 100644 index 000000000..f84fff71d --- /dev/null +++ b/src/IconTransportationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransportationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTransportationOutlinedFilled as default } diff --git a/src/IconTransportationRoundedFilled.tsx b/src/IconTransportationRoundedFilled.tsx new file mode 100644 index 000000000..7d472700f --- /dev/null +++ b/src/IconTransportationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransportationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransportationRoundedFilled as default } diff --git a/src/IconTransportationSharpFilled.tsx b/src/IconTransportationSharpFilled.tsx new file mode 100644 index 000000000..54a2d418e --- /dev/null +++ b/src/IconTransportationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTransportationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTransportationSharpFilled as default } diff --git a/src/IconTravelExploreOutlinedFilled.tsx b/src/IconTravelExploreOutlinedFilled.tsx new file mode 100644 index 000000000..941e82128 --- /dev/null +++ b/src/IconTravelExploreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelExploreOutlinedFilled as default } diff --git a/src/IconTravelExploreRoundedFilled.tsx b/src/IconTravelExploreRoundedFilled.tsx new file mode 100644 index 000000000..923a66ad5 --- /dev/null +++ b/src/IconTravelExploreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelExploreRoundedFilled as default } diff --git a/src/IconTravelExploreSharpFilled.tsx b/src/IconTravelExploreSharpFilled.tsx new file mode 100644 index 000000000..8fbf566f8 --- /dev/null +++ b/src/IconTravelExploreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelExploreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelExploreSharpFilled as default } diff --git a/src/IconTravelLuggageAndBagsOutlinedFilled.tsx b/src/IconTravelLuggageAndBagsOutlinedFilled.tsx new file mode 100644 index 000000000..f9b75abe4 --- /dev/null +++ b/src/IconTravelLuggageAndBagsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelLuggageAndBagsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelLuggageAndBagsOutlinedFilled as default } diff --git a/src/IconTravelLuggageAndBagsRoundedFilled.tsx b/src/IconTravelLuggageAndBagsRoundedFilled.tsx new file mode 100644 index 000000000..2a49daea4 --- /dev/null +++ b/src/IconTravelLuggageAndBagsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelLuggageAndBagsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelLuggageAndBagsRoundedFilled as default } diff --git a/src/IconTravelLuggageAndBagsSharpFilled.tsx b/src/IconTravelLuggageAndBagsSharpFilled.tsx new file mode 100644 index 000000000..e234dfe37 --- /dev/null +++ b/src/IconTravelLuggageAndBagsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelLuggageAndBagsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelLuggageAndBagsSharpFilled as default } diff --git a/src/IconTravelOutlinedFilled.tsx b/src/IconTravelOutlinedFilled.tsx new file mode 100644 index 000000000..26f8f3498 --- /dev/null +++ b/src/IconTravelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelOutlinedFilled as default } diff --git a/src/IconTravelRoundedFilled.tsx b/src/IconTravelRoundedFilled.tsx new file mode 100644 index 000000000..816054c1a --- /dev/null +++ b/src/IconTravelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelRoundedFilled as default } diff --git a/src/IconTravelSharpFilled.tsx b/src/IconTravelSharpFilled.tsx new file mode 100644 index 000000000..b9ee7631e --- /dev/null +++ b/src/IconTravelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTravelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTravelSharpFilled as default } diff --git a/src/IconTrendingDownOutlinedFilled.tsx b/src/IconTrendingDownOutlinedFilled.tsx new file mode 100644 index 000000000..9b75fea5b --- /dev/null +++ b/src/IconTrendingDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingDownOutlinedFilled as default } diff --git a/src/IconTrendingDownRoundedFilled.tsx b/src/IconTrendingDownRoundedFilled.tsx new file mode 100644 index 000000000..db90c7a41 --- /dev/null +++ b/src/IconTrendingDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingDownRoundedFilled as default } diff --git a/src/IconTrendingDownSharpFilled.tsx b/src/IconTrendingDownSharpFilled.tsx new file mode 100644 index 000000000..1ccb48e07 --- /dev/null +++ b/src/IconTrendingDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingDownSharpFilled as default } diff --git a/src/IconTrendingFlatOutlinedFilled.tsx b/src/IconTrendingFlatOutlinedFilled.tsx new file mode 100644 index 000000000..0f46b5176 --- /dev/null +++ b/src/IconTrendingFlatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingFlatOutlinedFilled as default } diff --git a/src/IconTrendingFlatRoundedFilled.tsx b/src/IconTrendingFlatRoundedFilled.tsx new file mode 100644 index 000000000..96be4d87d --- /dev/null +++ b/src/IconTrendingFlatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingFlatRoundedFilled as default } diff --git a/src/IconTrendingFlatSharpFilled.tsx b/src/IconTrendingFlatSharpFilled.tsx new file mode 100644 index 000000000..6460532f8 --- /dev/null +++ b/src/IconTrendingFlatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingFlatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingFlatSharpFilled as default } diff --git a/src/IconTrendingUpOutlinedFilled.tsx b/src/IconTrendingUpOutlinedFilled.tsx new file mode 100644 index 000000000..4a7d4bb74 --- /dev/null +++ b/src/IconTrendingUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingUpOutlinedFilled as default } diff --git a/src/IconTrendingUpRoundedFilled.tsx b/src/IconTrendingUpRoundedFilled.tsx new file mode 100644 index 000000000..1a8868612 --- /dev/null +++ b/src/IconTrendingUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingUpRoundedFilled as default } diff --git a/src/IconTrendingUpSharpFilled.tsx b/src/IconTrendingUpSharpFilled.tsx new file mode 100644 index 000000000..1dbb36dc2 --- /dev/null +++ b/src/IconTrendingUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrendingUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrendingUpSharpFilled as default } diff --git a/src/IconTripOriginOutlinedFilled.tsx b/src/IconTripOriginOutlinedFilled.tsx new file mode 100644 index 000000000..1413c6554 --- /dev/null +++ b/src/IconTripOriginOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTripOriginOutlinedFilled as default } diff --git a/src/IconTripOriginRoundedFilled.tsx b/src/IconTripOriginRoundedFilled.tsx new file mode 100644 index 000000000..af7b2de82 --- /dev/null +++ b/src/IconTripOriginRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTripOriginRoundedFilled as default } diff --git a/src/IconTripOriginSharpFilled.tsx b/src/IconTripOriginSharpFilled.tsx new file mode 100644 index 000000000..6047350f6 --- /dev/null +++ b/src/IconTripOriginSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOriginSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTripOriginSharpFilled as default } diff --git a/src/IconTripOutlinedFilled.tsx b/src/IconTripOutlinedFilled.tsx new file mode 100644 index 000000000..aa025b768 --- /dev/null +++ b/src/IconTripOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTripOutlinedFilled as default } diff --git a/src/IconTripRoundedFilled.tsx b/src/IconTripRoundedFilled.tsx new file mode 100644 index 000000000..d76cd4732 --- /dev/null +++ b/src/IconTripRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTripRoundedFilled as default } diff --git a/src/IconTripSharpFilled.tsx b/src/IconTripSharpFilled.tsx new file mode 100644 index 000000000..1241d1d5d --- /dev/null +++ b/src/IconTripSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTripSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTripSharpFilled as default } diff --git a/src/IconTrolleyCableCarOutlinedFilled.tsx b/src/IconTrolleyCableCarOutlinedFilled.tsx new file mode 100644 index 000000000..6b1d93cde --- /dev/null +++ b/src/IconTrolleyCableCarOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrolleyCableCarOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrolleyCableCarOutlinedFilled as default } diff --git a/src/IconTrolleyCableCarRoundedFilled.tsx b/src/IconTrolleyCableCarRoundedFilled.tsx new file mode 100644 index 000000000..067165b61 --- /dev/null +++ b/src/IconTrolleyCableCarRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrolleyCableCarRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTrolleyCableCarRoundedFilled as default } diff --git a/src/IconTrolleyCableCarSharpFilled.tsx b/src/IconTrolleyCableCarSharpFilled.tsx new file mode 100644 index 000000000..39aa33bdd --- /dev/null +++ b/src/IconTrolleyCableCarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrolleyCableCarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrolleyCableCarSharpFilled as default } diff --git a/src/IconTrolleyOutlinedFilled.tsx b/src/IconTrolleyOutlinedFilled.tsx new file mode 100644 index 000000000..3dd7bb198 --- /dev/null +++ b/src/IconTrolleyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrolleyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrolleyOutlinedFilled as default } diff --git a/src/IconTrolleyRoundedFilled.tsx b/src/IconTrolleyRoundedFilled.tsx new file mode 100644 index 000000000..5c7e67246 --- /dev/null +++ b/src/IconTrolleyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrolleyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrolleyRoundedFilled as default } diff --git a/src/IconTrolleySharpFilled.tsx b/src/IconTrolleySharpFilled.tsx new file mode 100644 index 000000000..e821a5c34 --- /dev/null +++ b/src/IconTrolleySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrolleySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrolleySharpFilled as default } diff --git a/src/IconTrophyOutlinedFilled.tsx b/src/IconTrophyOutlinedFilled.tsx new file mode 100644 index 000000000..55d097333 --- /dev/null +++ b/src/IconTrophyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrophyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrophyOutlinedFilled as default } diff --git a/src/IconTrophyRoundedFilled.tsx b/src/IconTrophyRoundedFilled.tsx new file mode 100644 index 000000000..47ae4b21c --- /dev/null +++ b/src/IconTrophyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrophyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrophyRoundedFilled as default } diff --git a/src/IconTrophySharpFilled.tsx b/src/IconTrophySharpFilled.tsx new file mode 100644 index 000000000..554cb0982 --- /dev/null +++ b/src/IconTrophySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTrophySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTrophySharpFilled as default } diff --git a/src/IconTroubleshootOutlinedFilled.tsx b/src/IconTroubleshootOutlinedFilled.tsx new file mode 100644 index 000000000..088913865 --- /dev/null +++ b/src/IconTroubleshootOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTroubleshootOutlinedFilled as default } diff --git a/src/IconTroubleshootRoundedFilled.tsx b/src/IconTroubleshootRoundedFilled.tsx new file mode 100644 index 000000000..b2d3bd25f --- /dev/null +++ b/src/IconTroubleshootRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTroubleshootRoundedFilled as default } diff --git a/src/IconTroubleshootSharpFilled.tsx b/src/IconTroubleshootSharpFilled.tsx new file mode 100644 index 000000000..91254f615 --- /dev/null +++ b/src/IconTroubleshootSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTroubleshootSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTroubleshootSharpFilled as default } diff --git a/src/IconTsunamiOutlinedFilled.tsx b/src/IconTsunamiOutlinedFilled.tsx new file mode 100644 index 000000000..406827200 --- /dev/null +++ b/src/IconTsunamiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTsunamiOutlinedFilled as default } diff --git a/src/IconTsunamiRoundedFilled.tsx b/src/IconTsunamiRoundedFilled.tsx new file mode 100644 index 000000000..7c9b3963e --- /dev/null +++ b/src/IconTsunamiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTsunamiRoundedFilled as default } diff --git a/src/IconTsunamiSharpFilled.tsx b/src/IconTsunamiSharpFilled.tsx new file mode 100644 index 000000000..e3bc6b8f3 --- /dev/null +++ b/src/IconTsunamiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsunamiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTsunamiSharpFilled as default } diff --git a/src/IconTsvOutlinedFilled.tsx b/src/IconTsvOutlinedFilled.tsx new file mode 100644 index 000000000..c9603e6b8 --- /dev/null +++ b/src/IconTsvOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsvOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTsvOutlinedFilled as default } diff --git a/src/IconTsvRoundedFilled.tsx b/src/IconTsvRoundedFilled.tsx new file mode 100644 index 000000000..5788278ed --- /dev/null +++ b/src/IconTsvRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsvRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTsvRoundedFilled as default } diff --git a/src/IconTsvSharpFilled.tsx b/src/IconTsvSharpFilled.tsx new file mode 100644 index 000000000..a2559800b --- /dev/null +++ b/src/IconTsvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTsvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTsvSharpFilled as default } diff --git a/src/IconTtyOutlinedFilled.tsx b/src/IconTtyOutlinedFilled.tsx new file mode 100644 index 000000000..c4e627fc1 --- /dev/null +++ b/src/IconTtyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTtyOutlinedFilled as default } diff --git a/src/IconTtyRoundedFilled.tsx b/src/IconTtyRoundedFilled.tsx new file mode 100644 index 000000000..52c879dd3 --- /dev/null +++ b/src/IconTtyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTtyRoundedFilled as default } diff --git a/src/IconTtySharpFilled.tsx b/src/IconTtySharpFilled.tsx new file mode 100644 index 000000000..8c325e512 --- /dev/null +++ b/src/IconTtySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTtySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTtySharpFilled as default } diff --git a/src/IconTuneOutlinedFilled.tsx b/src/IconTuneOutlinedFilled.tsx new file mode 100644 index 000000000..49d4e945b --- /dev/null +++ b/src/IconTuneOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTuneOutlinedFilled as default } diff --git a/src/IconTuneRoundedFilled.tsx b/src/IconTuneRoundedFilled.tsx new file mode 100644 index 000000000..ec7ea1cc9 --- /dev/null +++ b/src/IconTuneRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTuneRoundedFilled as default } diff --git a/src/IconTuneSharpFilled.tsx b/src/IconTuneSharpFilled.tsx new file mode 100644 index 000000000..49d337bf3 --- /dev/null +++ b/src/IconTuneSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTuneSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTuneSharpFilled as default } diff --git a/src/IconTurnLeftOutlinedFilled.tsx b/src/IconTurnLeftOutlinedFilled.tsx new file mode 100644 index 000000000..8854dc8b8 --- /dev/null +++ b/src/IconTurnLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnLeftOutlinedFilled as default } diff --git a/src/IconTurnLeftRoundedFilled.tsx b/src/IconTurnLeftRoundedFilled.tsx new file mode 100644 index 000000000..a4b9ae2e2 --- /dev/null +++ b/src/IconTurnLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnLeftRoundedFilled as default } diff --git a/src/IconTurnLeftSharpFilled.tsx b/src/IconTurnLeftSharpFilled.tsx new file mode 100644 index 000000000..87f690130 --- /dev/null +++ b/src/IconTurnLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnLeftSharpFilled as default } diff --git a/src/IconTurnRightOutlinedFilled.tsx b/src/IconTurnRightOutlinedFilled.tsx new file mode 100644 index 000000000..510accc88 --- /dev/null +++ b/src/IconTurnRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnRightOutlinedFilled as default } diff --git a/src/IconTurnRightRoundedFilled.tsx b/src/IconTurnRightRoundedFilled.tsx new file mode 100644 index 000000000..93b804f47 --- /dev/null +++ b/src/IconTurnRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnRightRoundedFilled as default } diff --git a/src/IconTurnRightSharpFilled.tsx b/src/IconTurnRightSharpFilled.tsx new file mode 100644 index 000000000..0f4810b45 --- /dev/null +++ b/src/IconTurnRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnRightSharpFilled as default } diff --git a/src/IconTurnSharpLeftOutlinedFilled.tsx b/src/IconTurnSharpLeftOutlinedFilled.tsx new file mode 100644 index 000000000..f9fd2270d --- /dev/null +++ b/src/IconTurnSharpLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSharpLeftOutlinedFilled as default } diff --git a/src/IconTurnSharpLeftRoundedFilled.tsx b/src/IconTurnSharpLeftRoundedFilled.tsx new file mode 100644 index 000000000..d50cd5433 --- /dev/null +++ b/src/IconTurnSharpLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSharpLeftRoundedFilled as default } diff --git a/src/IconTurnSharpLeftSharpFilled.tsx b/src/IconTurnSharpLeftSharpFilled.tsx new file mode 100644 index 000000000..1210122e1 --- /dev/null +++ b/src/IconTurnSharpLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSharpLeftSharpFilled as default } diff --git a/src/IconTurnSharpRightOutlinedFilled.tsx b/src/IconTurnSharpRightOutlinedFilled.tsx new file mode 100644 index 000000000..19bf7946f --- /dev/null +++ b/src/IconTurnSharpRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSharpRightOutlinedFilled as default } diff --git a/src/IconTurnSharpRightRoundedFilled.tsx b/src/IconTurnSharpRightRoundedFilled.tsx new file mode 100644 index 000000000..8d5b8bd8b --- /dev/null +++ b/src/IconTurnSharpRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSharpRightRoundedFilled as default } diff --git a/src/IconTurnSharpRightSharpFilled.tsx b/src/IconTurnSharpRightSharpFilled.tsx new file mode 100644 index 000000000..8e79b9b5e --- /dev/null +++ b/src/IconTurnSharpRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSharpRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSharpRightSharpFilled as default } diff --git a/src/IconTurnSlightLeftOutlinedFilled.tsx b/src/IconTurnSlightLeftOutlinedFilled.tsx new file mode 100644 index 000000000..d779e7298 --- /dev/null +++ b/src/IconTurnSlightLeftOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSlightLeftOutlinedFilled as default } diff --git a/src/IconTurnSlightLeftRoundedFilled.tsx b/src/IconTurnSlightLeftRoundedFilled.tsx new file mode 100644 index 000000000..602f00951 --- /dev/null +++ b/src/IconTurnSlightLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSlightLeftRoundedFilled as default } diff --git a/src/IconTurnSlightLeftSharpFilled.tsx b/src/IconTurnSlightLeftSharpFilled.tsx new file mode 100644 index 000000000..7ae286799 --- /dev/null +++ b/src/IconTurnSlightLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSlightLeftSharpFilled as default } diff --git a/src/IconTurnSlightRightOutlinedFilled.tsx b/src/IconTurnSlightRightOutlinedFilled.tsx new file mode 100644 index 000000000..fe872d078 --- /dev/null +++ b/src/IconTurnSlightRightOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSlightRightOutlinedFilled as default } diff --git a/src/IconTurnSlightRightRoundedFilled.tsx b/src/IconTurnSlightRightRoundedFilled.tsx new file mode 100644 index 000000000..c1a07c02b --- /dev/null +++ b/src/IconTurnSlightRightRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSlightRightRoundedFilled as default } diff --git a/src/IconTurnSlightRightSharpFilled.tsx b/src/IconTurnSlightRightSharpFilled.tsx new file mode 100644 index 000000000..18487f312 --- /dev/null +++ b/src/IconTurnSlightRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTurnSlightRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTurnSlightRightSharpFilled as default } diff --git a/src/IconTvGenOutlinedFilled.tsx b/src/IconTvGenOutlinedFilled.tsx new file mode 100644 index 000000000..8119a1795 --- /dev/null +++ b/src/IconTvGenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvGenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvGenOutlinedFilled as default } diff --git a/src/IconTvGenRoundedFilled.tsx b/src/IconTvGenRoundedFilled.tsx new file mode 100644 index 000000000..4cffa42e1 --- /dev/null +++ b/src/IconTvGenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvGenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvGenRoundedFilled as default } diff --git a/src/IconTvGenSharpFilled.tsx b/src/IconTvGenSharpFilled.tsx new file mode 100644 index 000000000..81a96d58c --- /dev/null +++ b/src/IconTvGenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvGenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvGenSharpFilled as default } diff --git a/src/IconTvGuideOutlinedFilled.tsx b/src/IconTvGuideOutlinedFilled.tsx new file mode 100644 index 000000000..a346299ce --- /dev/null +++ b/src/IconTvGuideOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvGuideOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvGuideOutlinedFilled as default } diff --git a/src/IconTvGuideRoundedFilled.tsx b/src/IconTvGuideRoundedFilled.tsx new file mode 100644 index 000000000..3c49d122c --- /dev/null +++ b/src/IconTvGuideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvGuideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvGuideRoundedFilled as default } diff --git a/src/IconTvGuideSharpFilled.tsx b/src/IconTvGuideSharpFilled.tsx new file mode 100644 index 000000000..efd7db6df --- /dev/null +++ b/src/IconTvGuideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvGuideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvGuideSharpFilled as default } diff --git a/src/IconTvOffOutlinedFilled.tsx b/src/IconTvOffOutlinedFilled.tsx new file mode 100644 index 000000000..bbe10c5da --- /dev/null +++ b/src/IconTvOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOffOutlinedFilled as default } diff --git a/src/IconTvOffRoundedFilled.tsx b/src/IconTvOffRoundedFilled.tsx new file mode 100644 index 000000000..55029d201 --- /dev/null +++ b/src/IconTvOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOffRoundedFilled as default } diff --git a/src/IconTvOffSharpFilled.tsx b/src/IconTvOffSharpFilled.tsx new file mode 100644 index 000000000..f631d1d1e --- /dev/null +++ b/src/IconTvOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOffSharpFilled as default } diff --git a/src/IconTvOptionsEditChannelsOutlinedFilled.tsx b/src/IconTvOptionsEditChannelsOutlinedFilled.tsx new file mode 100644 index 000000000..bd5c4b36d --- /dev/null +++ b/src/IconTvOptionsEditChannelsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOptionsEditChannelsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOptionsEditChannelsOutlinedFilled as default } diff --git a/src/IconTvOptionsEditChannelsRoundedFilled.tsx b/src/IconTvOptionsEditChannelsRoundedFilled.tsx new file mode 100644 index 000000000..b3af93fdd --- /dev/null +++ b/src/IconTvOptionsEditChannelsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOptionsEditChannelsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOptionsEditChannelsRoundedFilled as default } diff --git a/src/IconTvOptionsEditChannelsSharpFilled.tsx b/src/IconTvOptionsEditChannelsSharpFilled.tsx new file mode 100644 index 000000000..00eff0d50 --- /dev/null +++ b/src/IconTvOptionsEditChannelsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOptionsEditChannelsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOptionsEditChannelsSharpFilled as default } diff --git a/src/IconTvOptionsInputSettingsOutlinedFilled.tsx b/src/IconTvOptionsInputSettingsOutlinedFilled.tsx new file mode 100644 index 000000000..06bee4d43 --- /dev/null +++ b/src/IconTvOptionsInputSettingsOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOptionsInputSettingsOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOptionsInputSettingsOutlinedFilled as default } diff --git a/src/IconTvOptionsInputSettingsRoundedFilled.tsx b/src/IconTvOptionsInputSettingsRoundedFilled.tsx new file mode 100644 index 000000000..6bc4dfc42 --- /dev/null +++ b/src/IconTvOptionsInputSettingsRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOptionsInputSettingsRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOptionsInputSettingsRoundedFilled as default } diff --git a/src/IconTvOptionsInputSettingsSharpFilled.tsx b/src/IconTvOptionsInputSettingsSharpFilled.tsx new file mode 100644 index 000000000..41474b113 --- /dev/null +++ b/src/IconTvOptionsInputSettingsSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOptionsInputSettingsSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOptionsInputSettingsSharpFilled as default } diff --git a/src/IconTvOutlinedFilled.tsx b/src/IconTvOutlinedFilled.tsx new file mode 100644 index 000000000..052e6773f --- /dev/null +++ b/src/IconTvOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvOutlinedFilled as default } diff --git a/src/IconTvRemoteOutlinedFilled.tsx b/src/IconTvRemoteOutlinedFilled.tsx new file mode 100644 index 000000000..ddaeb0a40 --- /dev/null +++ b/src/IconTvRemoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvRemoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvRemoteOutlinedFilled as default } diff --git a/src/IconTvRemoteRoundedFilled.tsx b/src/IconTvRemoteRoundedFilled.tsx new file mode 100644 index 000000000..5cc3d5ec6 --- /dev/null +++ b/src/IconTvRemoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvRemoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvRemoteRoundedFilled as default } diff --git a/src/IconTvRemoteSharpFilled.tsx b/src/IconTvRemoteSharpFilled.tsx new file mode 100644 index 000000000..3a05bd191 --- /dev/null +++ b/src/IconTvRemoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvRemoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvRemoteSharpFilled as default } diff --git a/src/IconTvRoundedFilled.tsx b/src/IconTvRoundedFilled.tsx new file mode 100644 index 000000000..5b41a801e --- /dev/null +++ b/src/IconTvRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvRoundedFilled as default } diff --git a/src/IconTvSharpFilled.tsx b/src/IconTvSharpFilled.tsx new file mode 100644 index 000000000..962f8a088 --- /dev/null +++ b/src/IconTvSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvSharpFilled as default } diff --git a/src/IconTvSigninOutlinedFilled.tsx b/src/IconTvSigninOutlinedFilled.tsx new file mode 100644 index 000000000..09c1abf1c --- /dev/null +++ b/src/IconTvSigninOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvSigninOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvSigninOutlinedFilled as default } diff --git a/src/IconTvSigninRoundedFilled.tsx b/src/IconTvSigninRoundedFilled.tsx new file mode 100644 index 000000000..ca3276d7e --- /dev/null +++ b/src/IconTvSigninRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvSigninRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvSigninRoundedFilled as default } diff --git a/src/IconTvSigninSharpFilled.tsx b/src/IconTvSigninSharpFilled.tsx new file mode 100644 index 000000000..14c99bf54 --- /dev/null +++ b/src/IconTvSigninSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvSigninSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvSigninSharpFilled as default } diff --git a/src/IconTvWithAssistantOutlinedFilled.tsx b/src/IconTvWithAssistantOutlinedFilled.tsx new file mode 100644 index 000000000..80290de7c --- /dev/null +++ b/src/IconTvWithAssistantOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvWithAssistantOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvWithAssistantOutlinedFilled as default } diff --git a/src/IconTvWithAssistantRoundedFilled.tsx b/src/IconTvWithAssistantRoundedFilled.tsx new file mode 100644 index 000000000..a95aeec83 --- /dev/null +++ b/src/IconTvWithAssistantRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvWithAssistantRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconTvWithAssistantRoundedFilled as default } diff --git a/src/IconTvWithAssistantSharpFilled.tsx b/src/IconTvWithAssistantSharpFilled.tsx new file mode 100644 index 000000000..919a397ae --- /dev/null +++ b/src/IconTvWithAssistantSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTvWithAssistantSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTvWithAssistantSharpFilled as default } diff --git a/src/IconTwoPagerOutlinedFilled.tsx b/src/IconTwoPagerOutlinedFilled.tsx new file mode 100644 index 000000000..bca6feef5 --- /dev/null +++ b/src/IconTwoPagerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoPagerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTwoPagerOutlinedFilled as default } diff --git a/src/IconTwoPagerRoundedFilled.tsx b/src/IconTwoPagerRoundedFilled.tsx new file mode 100644 index 000000000..d8921e9c7 --- /dev/null +++ b/src/IconTwoPagerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoPagerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTwoPagerRoundedFilled as default } diff --git a/src/IconTwoPagerSharpFilled.tsx b/src/IconTwoPagerSharpFilled.tsx new file mode 100644 index 000000000..72b3e5a9b --- /dev/null +++ b/src/IconTwoPagerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoPagerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTwoPagerSharpFilled as default } diff --git a/src/IconTwoWheelerOutlinedFilled.tsx b/src/IconTwoWheelerOutlinedFilled.tsx new file mode 100644 index 000000000..dcabde890 --- /dev/null +++ b/src/IconTwoWheelerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTwoWheelerOutlinedFilled as default } diff --git a/src/IconTwoWheelerRoundedFilled.tsx b/src/IconTwoWheelerRoundedFilled.tsx new file mode 100644 index 000000000..eb4910f3a --- /dev/null +++ b/src/IconTwoWheelerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTwoWheelerRoundedFilled as default } diff --git a/src/IconTwoWheelerSharpFilled.tsx b/src/IconTwoWheelerSharpFilled.tsx new file mode 100644 index 000000000..bfb102511 --- /dev/null +++ b/src/IconTwoWheelerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTwoWheelerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTwoWheelerSharpFilled as default } diff --git a/src/IconTypeSpecimenOutlinedFilled.tsx b/src/IconTypeSpecimenOutlinedFilled.tsx new file mode 100644 index 000000000..d7e0e48bb --- /dev/null +++ b/src/IconTypeSpecimenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTypeSpecimenOutlinedFilled as default } diff --git a/src/IconTypeSpecimenRoundedFilled.tsx b/src/IconTypeSpecimenRoundedFilled.tsx new file mode 100644 index 000000000..9e48086d3 --- /dev/null +++ b/src/IconTypeSpecimenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTypeSpecimenRoundedFilled as default } diff --git a/src/IconTypeSpecimenSharpFilled.tsx b/src/IconTypeSpecimenSharpFilled.tsx new file mode 100644 index 000000000..09d33ed76 --- /dev/null +++ b/src/IconTypeSpecimenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconTypeSpecimenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconTypeSpecimenSharpFilled as default } diff --git a/src/IconUTurnLeftOutlinedFilled.tsx b/src/IconUTurnLeftOutlinedFilled.tsx new file mode 100644 index 000000000..502abe699 --- /dev/null +++ b/src/IconUTurnLeftOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUTurnLeftOutlinedFilled as default } diff --git a/src/IconUTurnLeftRoundedFilled.tsx b/src/IconUTurnLeftRoundedFilled.tsx new file mode 100644 index 000000000..7698321c2 --- /dev/null +++ b/src/IconUTurnLeftRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUTurnLeftRoundedFilled as default } diff --git a/src/IconUTurnLeftSharpFilled.tsx b/src/IconUTurnLeftSharpFilled.tsx new file mode 100644 index 000000000..9dff7be3a --- /dev/null +++ b/src/IconUTurnLeftSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnLeftSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUTurnLeftSharpFilled as default } diff --git a/src/IconUTurnRightOutlinedFilled.tsx b/src/IconUTurnRightOutlinedFilled.tsx new file mode 100644 index 000000000..7ce0d8b72 --- /dev/null +++ b/src/IconUTurnRightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUTurnRightOutlinedFilled as default } diff --git a/src/IconUTurnRightRoundedFilled.tsx b/src/IconUTurnRightRoundedFilled.tsx new file mode 100644 index 000000000..20c809182 --- /dev/null +++ b/src/IconUTurnRightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUTurnRightRoundedFilled as default } diff --git a/src/IconUTurnRightSharpFilled.tsx b/src/IconUTurnRightSharpFilled.tsx new file mode 100644 index 000000000..10b11f5f0 --- /dev/null +++ b/src/IconUTurnRightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUTurnRightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUTurnRightSharpFilled as default } diff --git a/src/IconUlnaRadiusAltOutlinedFilled.tsx b/src/IconUlnaRadiusAltOutlinedFilled.tsx new file mode 100644 index 000000000..c606982d4 --- /dev/null +++ b/src/IconUlnaRadiusAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUlnaRadiusAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUlnaRadiusAltOutlinedFilled as default } diff --git a/src/IconUlnaRadiusAltRoundedFilled.tsx b/src/IconUlnaRadiusAltRoundedFilled.tsx new file mode 100644 index 000000000..636de3c00 --- /dev/null +++ b/src/IconUlnaRadiusAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUlnaRadiusAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUlnaRadiusAltRoundedFilled as default } diff --git a/src/IconUlnaRadiusAltSharpFilled.tsx b/src/IconUlnaRadiusAltSharpFilled.tsx new file mode 100644 index 000000000..dd1523196 --- /dev/null +++ b/src/IconUlnaRadiusAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUlnaRadiusAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUlnaRadiusAltSharpFilled as default } diff --git a/src/IconUlnaRadiusOutlinedFilled.tsx b/src/IconUlnaRadiusOutlinedFilled.tsx new file mode 100644 index 000000000..56d86ed94 --- /dev/null +++ b/src/IconUlnaRadiusOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUlnaRadiusOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUlnaRadiusOutlinedFilled as default } diff --git a/src/IconUlnaRadiusRoundedFilled.tsx b/src/IconUlnaRadiusRoundedFilled.tsx new file mode 100644 index 000000000..b4f1f0c5b --- /dev/null +++ b/src/IconUlnaRadiusRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUlnaRadiusRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUlnaRadiusRoundedFilled as default } diff --git a/src/IconUlnaRadiusSharpFilled.tsx b/src/IconUlnaRadiusSharpFilled.tsx new file mode 100644 index 000000000..a3edda95b --- /dev/null +++ b/src/IconUlnaRadiusSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUlnaRadiusSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUlnaRadiusSharpFilled as default } diff --git a/src/IconUmbrellaOutlinedFilled.tsx b/src/IconUmbrellaOutlinedFilled.tsx new file mode 100644 index 000000000..f21085841 --- /dev/null +++ b/src/IconUmbrellaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUmbrellaOutlinedFilled as default } diff --git a/src/IconUmbrellaRoundedFilled.tsx b/src/IconUmbrellaRoundedFilled.tsx new file mode 100644 index 000000000..cdb59967a --- /dev/null +++ b/src/IconUmbrellaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUmbrellaRoundedFilled as default } diff --git a/src/IconUmbrellaSharpFilled.tsx b/src/IconUmbrellaSharpFilled.tsx new file mode 100644 index 000000000..834a4f7e9 --- /dev/null +++ b/src/IconUmbrellaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUmbrellaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUmbrellaSharpFilled as default } diff --git a/src/IconUnarchiveOutlinedFilled.tsx b/src/IconUnarchiveOutlinedFilled.tsx new file mode 100644 index 000000000..6617585d1 --- /dev/null +++ b/src/IconUnarchiveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnarchiveOutlinedFilled as default } diff --git a/src/IconUnarchiveRoundedFilled.tsx b/src/IconUnarchiveRoundedFilled.tsx new file mode 100644 index 000000000..f126471eb --- /dev/null +++ b/src/IconUnarchiveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnarchiveRoundedFilled as default } diff --git a/src/IconUnarchiveSharpFilled.tsx b/src/IconUnarchiveSharpFilled.tsx new file mode 100644 index 000000000..8f95cb78e --- /dev/null +++ b/src/IconUnarchiveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnarchiveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnarchiveSharpFilled as default } diff --git a/src/IconUndoOutlinedFilled.tsx b/src/IconUndoOutlinedFilled.tsx new file mode 100644 index 000000000..a0722ba61 --- /dev/null +++ b/src/IconUndoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUndoOutlinedFilled as default } diff --git a/src/IconUndoRoundedFilled.tsx b/src/IconUndoRoundedFilled.tsx new file mode 100644 index 000000000..48eb24fe2 --- /dev/null +++ b/src/IconUndoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUndoRoundedFilled as default } diff --git a/src/IconUndoSharpFilled.tsx b/src/IconUndoSharpFilled.tsx new file mode 100644 index 000000000..35c2494ba --- /dev/null +++ b/src/IconUndoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUndoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUndoSharpFilled as default } diff --git a/src/IconUnfoldLessDoubleOutlinedFilled.tsx b/src/IconUnfoldLessDoubleOutlinedFilled.tsx new file mode 100644 index 000000000..2ad955783 --- /dev/null +++ b/src/IconUnfoldLessDoubleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldLessDoubleOutlinedFilled as default } diff --git a/src/IconUnfoldLessDoubleRoundedFilled.tsx b/src/IconUnfoldLessDoubleRoundedFilled.tsx new file mode 100644 index 000000000..a0b9675ca --- /dev/null +++ b/src/IconUnfoldLessDoubleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldLessDoubleRoundedFilled as default } diff --git a/src/IconUnfoldLessDoubleSharpFilled.tsx b/src/IconUnfoldLessDoubleSharpFilled.tsx new file mode 100644 index 000000000..9631c5310 --- /dev/null +++ b/src/IconUnfoldLessDoubleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessDoubleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldLessDoubleSharpFilled as default } diff --git a/src/IconUnfoldLessOutlinedFilled.tsx b/src/IconUnfoldLessOutlinedFilled.tsx new file mode 100644 index 000000000..0fe5fa7d4 --- /dev/null +++ b/src/IconUnfoldLessOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldLessOutlinedFilled as default } diff --git a/src/IconUnfoldLessRoundedFilled.tsx b/src/IconUnfoldLessRoundedFilled.tsx new file mode 100644 index 000000000..717f676b0 --- /dev/null +++ b/src/IconUnfoldLessRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldLessRoundedFilled as default } diff --git a/src/IconUnfoldLessSharpFilled.tsx b/src/IconUnfoldLessSharpFilled.tsx new file mode 100644 index 000000000..ce736eb63 --- /dev/null +++ b/src/IconUnfoldLessSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldLessSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldLessSharpFilled as default } diff --git a/src/IconUnfoldMoreDoubleOutlinedFilled.tsx b/src/IconUnfoldMoreDoubleOutlinedFilled.tsx new file mode 100644 index 000000000..9af0f9ba5 --- /dev/null +++ b/src/IconUnfoldMoreDoubleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldMoreDoubleOutlinedFilled as default } diff --git a/src/IconUnfoldMoreDoubleRoundedFilled.tsx b/src/IconUnfoldMoreDoubleRoundedFilled.tsx new file mode 100644 index 000000000..9bd0d4c87 --- /dev/null +++ b/src/IconUnfoldMoreDoubleRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldMoreDoubleRoundedFilled as default } diff --git a/src/IconUnfoldMoreDoubleSharpFilled.tsx b/src/IconUnfoldMoreDoubleSharpFilled.tsx new file mode 100644 index 000000000..951818c6d --- /dev/null +++ b/src/IconUnfoldMoreDoubleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreDoubleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldMoreDoubleSharpFilled as default } diff --git a/src/IconUnfoldMoreOutlinedFilled.tsx b/src/IconUnfoldMoreOutlinedFilled.tsx new file mode 100644 index 000000000..44a2d6ef4 --- /dev/null +++ b/src/IconUnfoldMoreOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldMoreOutlinedFilled as default } diff --git a/src/IconUnfoldMoreRoundedFilled.tsx b/src/IconUnfoldMoreRoundedFilled.tsx new file mode 100644 index 000000000..4aad2244a --- /dev/null +++ b/src/IconUnfoldMoreRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldMoreRoundedFilled as default } diff --git a/src/IconUnfoldMoreSharpFilled.tsx b/src/IconUnfoldMoreSharpFilled.tsx new file mode 100644 index 000000000..2a96d6ee3 --- /dev/null +++ b/src/IconUnfoldMoreSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnfoldMoreSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnfoldMoreSharpFilled as default } diff --git a/src/IconUngroupOutlinedFilled.tsx b/src/IconUngroupOutlinedFilled.tsx new file mode 100644 index 000000000..3020373c3 --- /dev/null +++ b/src/IconUngroupOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUngroupOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUngroupOutlinedFilled as default } diff --git a/src/IconUngroupRoundedFilled.tsx b/src/IconUngroupRoundedFilled.tsx new file mode 100644 index 000000000..359fae40a --- /dev/null +++ b/src/IconUngroupRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUngroupRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUngroupRoundedFilled as default } diff --git a/src/IconUngroupSharpFilled.tsx b/src/IconUngroupSharpFilled.tsx new file mode 100644 index 000000000..8dccda722 --- /dev/null +++ b/src/IconUngroupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUngroupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUngroupSharpFilled as default } diff --git a/src/IconUniversalCurrencyAltOutlinedFilled.tsx b/src/IconUniversalCurrencyAltOutlinedFilled.tsx new file mode 100644 index 000000000..de61db979 --- /dev/null +++ b/src/IconUniversalCurrencyAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalCurrencyAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalCurrencyAltOutlinedFilled as default } diff --git a/src/IconUniversalCurrencyAltRoundedFilled.tsx b/src/IconUniversalCurrencyAltRoundedFilled.tsx new file mode 100644 index 000000000..a40442df7 --- /dev/null +++ b/src/IconUniversalCurrencyAltRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalCurrencyAltRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalCurrencyAltRoundedFilled as default } diff --git a/src/IconUniversalCurrencyAltSharpFilled.tsx b/src/IconUniversalCurrencyAltSharpFilled.tsx new file mode 100644 index 000000000..fa92388a4 --- /dev/null +++ b/src/IconUniversalCurrencyAltSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalCurrencyAltSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalCurrencyAltSharpFilled as default } diff --git a/src/IconUniversalCurrencyOutlinedFilled.tsx b/src/IconUniversalCurrencyOutlinedFilled.tsx new file mode 100644 index 000000000..76be5d2a4 --- /dev/null +++ b/src/IconUniversalCurrencyOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalCurrencyOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalCurrencyOutlinedFilled as default } diff --git a/src/IconUniversalCurrencyRoundedFilled.tsx b/src/IconUniversalCurrencyRoundedFilled.tsx new file mode 100644 index 000000000..cbc506387 --- /dev/null +++ b/src/IconUniversalCurrencyRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalCurrencyRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalCurrencyRoundedFilled as default } diff --git a/src/IconUniversalCurrencySharpFilled.tsx b/src/IconUniversalCurrencySharpFilled.tsx new file mode 100644 index 000000000..9ee98cb1c --- /dev/null +++ b/src/IconUniversalCurrencySharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalCurrencySharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalCurrencySharpFilled as default } diff --git a/src/IconUniversalLocalOutlinedFilled.tsx b/src/IconUniversalLocalOutlinedFilled.tsx new file mode 100644 index 000000000..ef4eff7e0 --- /dev/null +++ b/src/IconUniversalLocalOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalLocalOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalLocalOutlinedFilled as default } diff --git a/src/IconUniversalLocalRoundedFilled.tsx b/src/IconUniversalLocalRoundedFilled.tsx new file mode 100644 index 000000000..850d7b08a --- /dev/null +++ b/src/IconUniversalLocalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalLocalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalLocalRoundedFilled as default } diff --git a/src/IconUniversalLocalSharpFilled.tsx b/src/IconUniversalLocalSharpFilled.tsx new file mode 100644 index 000000000..ee72b1b07 --- /dev/null +++ b/src/IconUniversalLocalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUniversalLocalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUniversalLocalSharpFilled as default } diff --git a/src/IconUnknown2OutlinedFilled.tsx b/src/IconUnknown2OutlinedFilled.tsx new file mode 100644 index 000000000..619862fe7 --- /dev/null +++ b/src/IconUnknown2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown2OutlinedFilled as default } diff --git a/src/IconUnknown2RoundedFilled.tsx b/src/IconUnknown2RoundedFilled.tsx new file mode 100644 index 000000000..a64e3994f --- /dev/null +++ b/src/IconUnknown2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown2RoundedFilled as default } diff --git a/src/IconUnknown2SharpFilled.tsx b/src/IconUnknown2SharpFilled.tsx new file mode 100644 index 000000000..563bc8c3b --- /dev/null +++ b/src/IconUnknown2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown2SharpFilled as default } diff --git a/src/IconUnknown5OutlinedFilled.tsx b/src/IconUnknown5OutlinedFilled.tsx new file mode 100644 index 000000000..e347e1681 --- /dev/null +++ b/src/IconUnknown5OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown5OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown5OutlinedFilled as default } diff --git a/src/IconUnknown5RoundedFilled.tsx b/src/IconUnknown5RoundedFilled.tsx new file mode 100644 index 000000000..7ec2d6345 --- /dev/null +++ b/src/IconUnknown5RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown5RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown5RoundedFilled as default } diff --git a/src/IconUnknown5SharpFilled.tsx b/src/IconUnknown5SharpFilled.tsx new file mode 100644 index 000000000..362c7e919 --- /dev/null +++ b/src/IconUnknown5SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown5SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown5SharpFilled as default } diff --git a/src/IconUnknown7OutlinedFilled.tsx b/src/IconUnknown7OutlinedFilled.tsx new file mode 100644 index 000000000..d77bea229 --- /dev/null +++ b/src/IconUnknown7OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown7OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown7OutlinedFilled as default } diff --git a/src/IconUnknown7RoundedFilled.tsx b/src/IconUnknown7RoundedFilled.tsx new file mode 100644 index 000000000..e09c64a00 --- /dev/null +++ b/src/IconUnknown7RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown7RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown7RoundedFilled as default } diff --git a/src/IconUnknown7SharpFilled.tsx b/src/IconUnknown7SharpFilled.tsx new file mode 100644 index 000000000..f644f1c2d --- /dev/null +++ b/src/IconUnknown7SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknown7SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknown7SharpFilled as default } diff --git a/src/IconUnknownDocumentOutlinedFilled.tsx b/src/IconUnknownDocumentOutlinedFilled.tsx new file mode 100644 index 000000000..a68773153 --- /dev/null +++ b/src/IconUnknownDocumentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknownDocumentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknownDocumentOutlinedFilled as default } diff --git a/src/IconUnknownDocumentRoundedFilled.tsx b/src/IconUnknownDocumentRoundedFilled.tsx new file mode 100644 index 000000000..dd47247ca --- /dev/null +++ b/src/IconUnknownDocumentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknownDocumentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknownDocumentRoundedFilled as default } diff --git a/src/IconUnknownDocumentSharpFilled.tsx b/src/IconUnknownDocumentSharpFilled.tsx new file mode 100644 index 000000000..09d5c5e5d --- /dev/null +++ b/src/IconUnknownDocumentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknownDocumentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknownDocumentSharpFilled as default } diff --git a/src/IconUnknownMedOutlinedFilled.tsx b/src/IconUnknownMedOutlinedFilled.tsx new file mode 100644 index 000000000..2eee24393 --- /dev/null +++ b/src/IconUnknownMedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknownMedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknownMedOutlinedFilled as default } diff --git a/src/IconUnknownMedRoundedFilled.tsx b/src/IconUnknownMedRoundedFilled.tsx new file mode 100644 index 000000000..204bb3e1e --- /dev/null +++ b/src/IconUnknownMedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknownMedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknownMedRoundedFilled as default } diff --git a/src/IconUnknownMedSharpFilled.tsx b/src/IconUnknownMedSharpFilled.tsx new file mode 100644 index 000000000..5eea492af --- /dev/null +++ b/src/IconUnknownMedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnknownMedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnknownMedSharpFilled as default } diff --git a/src/IconUnlicenseOutlinedFilled.tsx b/src/IconUnlicenseOutlinedFilled.tsx new file mode 100644 index 000000000..66dfdbd03 --- /dev/null +++ b/src/IconUnlicenseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnlicenseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnlicenseOutlinedFilled as default } diff --git a/src/IconUnlicenseRoundedFilled.tsx b/src/IconUnlicenseRoundedFilled.tsx new file mode 100644 index 000000000..e2331470c --- /dev/null +++ b/src/IconUnlicenseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnlicenseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnlicenseRoundedFilled as default } diff --git a/src/IconUnlicenseSharpFilled.tsx b/src/IconUnlicenseSharpFilled.tsx new file mode 100644 index 000000000..df68918db --- /dev/null +++ b/src/IconUnlicenseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnlicenseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnlicenseSharpFilled as default } diff --git a/src/IconUnpavedRoadOutlinedFilled.tsx b/src/IconUnpavedRoadOutlinedFilled.tsx new file mode 100644 index 000000000..59d01ab67 --- /dev/null +++ b/src/IconUnpavedRoadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpavedRoadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnpavedRoadOutlinedFilled as default } diff --git a/src/IconUnpavedRoadRoundedFilled.tsx b/src/IconUnpavedRoadRoundedFilled.tsx new file mode 100644 index 000000000..47f695776 --- /dev/null +++ b/src/IconUnpavedRoadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpavedRoadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnpavedRoadRoundedFilled as default } diff --git a/src/IconUnpavedRoadSharpFilled.tsx b/src/IconUnpavedRoadSharpFilled.tsx new file mode 100644 index 000000000..57d30476e --- /dev/null +++ b/src/IconUnpavedRoadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpavedRoadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnpavedRoadSharpFilled as default } diff --git a/src/IconUnpublishedOutlinedFilled.tsx b/src/IconUnpublishedOutlinedFilled.tsx new file mode 100644 index 000000000..d08f427e6 --- /dev/null +++ b/src/IconUnpublishedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnpublishedOutlinedFilled as default } diff --git a/src/IconUnpublishedRoundedFilled.tsx b/src/IconUnpublishedRoundedFilled.tsx new file mode 100644 index 000000000..920ba0ddc --- /dev/null +++ b/src/IconUnpublishedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnpublishedRoundedFilled as default } diff --git a/src/IconUnpublishedSharpFilled.tsx b/src/IconUnpublishedSharpFilled.tsx new file mode 100644 index 000000000..a2878a4fc --- /dev/null +++ b/src/IconUnpublishedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnpublishedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnpublishedSharpFilled as default } diff --git a/src/IconUnsubscribeOutlinedFilled.tsx b/src/IconUnsubscribeOutlinedFilled.tsx new file mode 100644 index 000000000..0fa298106 --- /dev/null +++ b/src/IconUnsubscribeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnsubscribeOutlinedFilled as default } diff --git a/src/IconUnsubscribeRoundedFilled.tsx b/src/IconUnsubscribeRoundedFilled.tsx new file mode 100644 index 000000000..060b703e4 --- /dev/null +++ b/src/IconUnsubscribeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnsubscribeRoundedFilled as default } diff --git a/src/IconUnsubscribeSharpFilled.tsx b/src/IconUnsubscribeSharpFilled.tsx new file mode 100644 index 000000000..23145dd62 --- /dev/null +++ b/src/IconUnsubscribeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUnsubscribeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUnsubscribeSharpFilled as default } diff --git a/src/IconUpcomingOutlinedFilled.tsx b/src/IconUpcomingOutlinedFilled.tsx new file mode 100644 index 000000000..3e506ecf1 --- /dev/null +++ b/src/IconUpcomingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpcomingOutlinedFilled as default } diff --git a/src/IconUpcomingRoundedFilled.tsx b/src/IconUpcomingRoundedFilled.tsx new file mode 100644 index 000000000..816c0e825 --- /dev/null +++ b/src/IconUpcomingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpcomingRoundedFilled as default } diff --git a/src/IconUpcomingSharpFilled.tsx b/src/IconUpcomingSharpFilled.tsx new file mode 100644 index 000000000..af0055dca --- /dev/null +++ b/src/IconUpcomingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpcomingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpcomingSharpFilled as default } diff --git a/src/IconUpdateDisabledOutlinedFilled.tsx b/src/IconUpdateDisabledOutlinedFilled.tsx new file mode 100644 index 000000000..4abb198f3 --- /dev/null +++ b/src/IconUpdateDisabledOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUpdateDisabledOutlinedFilled as default } diff --git a/src/IconUpdateDisabledRoundedFilled.tsx b/src/IconUpdateDisabledRoundedFilled.tsx new file mode 100644 index 000000000..1f557581c --- /dev/null +++ b/src/IconUpdateDisabledRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpdateDisabledRoundedFilled as default } diff --git a/src/IconUpdateDisabledSharpFilled.tsx b/src/IconUpdateDisabledSharpFilled.tsx new file mode 100644 index 000000000..24b5294c5 --- /dev/null +++ b/src/IconUpdateDisabledSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateDisabledSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpdateDisabledSharpFilled as default } diff --git a/src/IconUpdateOutlinedFilled.tsx b/src/IconUpdateOutlinedFilled.tsx new file mode 100644 index 000000000..3fde84ffe --- /dev/null +++ b/src/IconUpdateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpdateOutlinedFilled as default } diff --git a/src/IconUpdateRoundedFilled.tsx b/src/IconUpdateRoundedFilled.tsx new file mode 100644 index 000000000..6b46474e4 --- /dev/null +++ b/src/IconUpdateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpdateRoundedFilled as default } diff --git a/src/IconUpdateSharpFilled.tsx b/src/IconUpdateSharpFilled.tsx new file mode 100644 index 000000000..2d32a23a4 --- /dev/null +++ b/src/IconUpdateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpdateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpdateSharpFilled as default } diff --git a/src/IconUpgradeOutlinedFilled.tsx b/src/IconUpgradeOutlinedFilled.tsx new file mode 100644 index 000000000..420dd5696 --- /dev/null +++ b/src/IconUpgradeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpgradeOutlinedFilled as default } diff --git a/src/IconUpgradeRoundedFilled.tsx b/src/IconUpgradeRoundedFilled.tsx new file mode 100644 index 000000000..96a492f8c --- /dev/null +++ b/src/IconUpgradeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpgradeRoundedFilled as default } diff --git a/src/IconUpgradeSharpFilled.tsx b/src/IconUpgradeSharpFilled.tsx new file mode 100644 index 000000000..a90af1d63 --- /dev/null +++ b/src/IconUpgradeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpgradeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpgradeSharpFilled as default } diff --git a/src/IconUpload2OutlinedFilled.tsx b/src/IconUpload2OutlinedFilled.tsx new file mode 100644 index 000000000..8da2d84d1 --- /dev/null +++ b/src/IconUpload2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpload2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpload2OutlinedFilled as default } diff --git a/src/IconUpload2RoundedFilled.tsx b/src/IconUpload2RoundedFilled.tsx new file mode 100644 index 000000000..5f3cb0406 --- /dev/null +++ b/src/IconUpload2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpload2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpload2RoundedFilled as default } diff --git a/src/IconUpload2SharpFilled.tsx b/src/IconUpload2SharpFilled.tsx new file mode 100644 index 000000000..0fa893bee --- /dev/null +++ b/src/IconUpload2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUpload2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUpload2SharpFilled as default } diff --git a/src/IconUploadFileOutlinedFilled.tsx b/src/IconUploadFileOutlinedFilled.tsx new file mode 100644 index 000000000..8ba8615bd --- /dev/null +++ b/src/IconUploadFileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUploadFileOutlinedFilled as default } diff --git a/src/IconUploadFileRoundedFilled.tsx b/src/IconUploadFileRoundedFilled.tsx new file mode 100644 index 000000000..4233e2bc3 --- /dev/null +++ b/src/IconUploadFileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUploadFileRoundedFilled as default } diff --git a/src/IconUploadFileSharpFilled.tsx b/src/IconUploadFileSharpFilled.tsx new file mode 100644 index 000000000..5edf15c9c --- /dev/null +++ b/src/IconUploadFileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadFileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUploadFileSharpFilled as default } diff --git a/src/IconUploadOutlinedFilled.tsx b/src/IconUploadOutlinedFilled.tsx new file mode 100644 index 000000000..3ffd89d90 --- /dev/null +++ b/src/IconUploadOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUploadOutlinedFilled as default } diff --git a/src/IconUploadRoundedFilled.tsx b/src/IconUploadRoundedFilled.tsx new file mode 100644 index 000000000..de26d955c --- /dev/null +++ b/src/IconUploadRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUploadRoundedFilled as default } diff --git a/src/IconUploadSharpFilled.tsx b/src/IconUploadSharpFilled.tsx new file mode 100644 index 000000000..a53b19d6e --- /dev/null +++ b/src/IconUploadSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUploadSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUploadSharpFilled as default } diff --git a/src/IconUppercaseOutlinedFilled.tsx b/src/IconUppercaseOutlinedFilled.tsx new file mode 100644 index 000000000..019381561 --- /dev/null +++ b/src/IconUppercaseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUppercaseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUppercaseOutlinedFilled as default } diff --git a/src/IconUppercaseRoundedFilled.tsx b/src/IconUppercaseRoundedFilled.tsx new file mode 100644 index 000000000..8a12e29ca --- /dev/null +++ b/src/IconUppercaseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUppercaseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUppercaseRoundedFilled as default } diff --git a/src/IconUppercaseSharpFilled.tsx b/src/IconUppercaseSharpFilled.tsx new file mode 100644 index 000000000..d05a76ab0 --- /dev/null +++ b/src/IconUppercaseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUppercaseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUppercaseSharpFilled as default } diff --git a/src/IconUrologyOutlinedFilled.tsx b/src/IconUrologyOutlinedFilled.tsx new file mode 100644 index 000000000..3c842aea3 --- /dev/null +++ b/src/IconUrologyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUrologyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUrologyOutlinedFilled as default } diff --git a/src/IconUrologyRoundedFilled.tsx b/src/IconUrologyRoundedFilled.tsx new file mode 100644 index 000000000..85cfaadb5 --- /dev/null +++ b/src/IconUrologyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUrologyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUrologyRoundedFilled as default } diff --git a/src/IconUrologySharpFilled.tsx b/src/IconUrologySharpFilled.tsx new file mode 100644 index 000000000..aa5a7f9cd --- /dev/null +++ b/src/IconUrologySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUrologySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUrologySharpFilled as default } diff --git a/src/IconUsbOffOutlinedFilled.tsx b/src/IconUsbOffOutlinedFilled.tsx new file mode 100644 index 000000000..9c265212b --- /dev/null +++ b/src/IconUsbOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUsbOffOutlinedFilled as default } diff --git a/src/IconUsbOffRoundedFilled.tsx b/src/IconUsbOffRoundedFilled.tsx new file mode 100644 index 000000000..8baa784f8 --- /dev/null +++ b/src/IconUsbOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUsbOffRoundedFilled as default } diff --git a/src/IconUsbOffSharpFilled.tsx b/src/IconUsbOffSharpFilled.tsx new file mode 100644 index 000000000..3e8ed661f --- /dev/null +++ b/src/IconUsbOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUsbOffSharpFilled as default } diff --git a/src/IconUsbOutlinedFilled.tsx b/src/IconUsbOutlinedFilled.tsx new file mode 100644 index 000000000..2725e416c --- /dev/null +++ b/src/IconUsbOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUsbOutlinedFilled as default } diff --git a/src/IconUsbRoundedFilled.tsx b/src/IconUsbRoundedFilled.tsx new file mode 100644 index 000000000..fca38380e --- /dev/null +++ b/src/IconUsbRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUsbRoundedFilled as default } diff --git a/src/IconUsbSharpFilled.tsx b/src/IconUsbSharpFilled.tsx new file mode 100644 index 000000000..5acfac169 --- /dev/null +++ b/src/IconUsbSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUsbSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUsbSharpFilled as default } diff --git a/src/IconUserAttributesOutlinedFilled.tsx b/src/IconUserAttributesOutlinedFilled.tsx new file mode 100644 index 000000000..fd05a7bb9 --- /dev/null +++ b/src/IconUserAttributesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUserAttributesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconUserAttributesOutlinedFilled as default } diff --git a/src/IconUserAttributesRoundedFilled.tsx b/src/IconUserAttributesRoundedFilled.tsx new file mode 100644 index 000000000..3524fa783 --- /dev/null +++ b/src/IconUserAttributesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUserAttributesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUserAttributesRoundedFilled as default } diff --git a/src/IconUserAttributesSharpFilled.tsx b/src/IconUserAttributesSharpFilled.tsx new file mode 100644 index 000000000..40dcc4b83 --- /dev/null +++ b/src/IconUserAttributesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconUserAttributesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconUserAttributesSharpFilled as default } diff --git a/src/IconVaccinesOutlinedFilled.tsx b/src/IconVaccinesOutlinedFilled.tsx new file mode 100644 index 000000000..4ceebc3ac --- /dev/null +++ b/src/IconVaccinesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccinesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVaccinesOutlinedFilled as default } diff --git a/src/IconVaccinesRounded.tsx b/src/IconVaccinesRoundedFilled.tsx similarity index 81% rename from src/IconVaccinesRounded.tsx rename to src/IconVaccinesRoundedFilled.tsx index d4c1737db..aa7914ecf 100644 --- a/src/IconVaccinesRounded.tsx +++ b/src/IconVaccinesRoundedFilled.tsx @@ -1,11 +1,11 @@ import React from 'react' import { IconProps } from './types' -const IconVaccinesRounded: React.FC = ({ ...props }) => ( +const IconVaccinesRoundedFilled: React.FC = ({ ...props }) => ( {props.title && {props.title}} - + ) -export { IconVaccinesRounded as default } +export { IconVaccinesRoundedFilled as default } diff --git a/src/IconVaccinesSharpFilled.tsx b/src/IconVaccinesSharpFilled.tsx new file mode 100644 index 000000000..33acedb70 --- /dev/null +++ b/src/IconVaccinesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVaccinesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVaccinesSharpFilled as default } diff --git a/src/IconVacuumOutlinedFilled.tsx b/src/IconVacuumOutlinedFilled.tsx new file mode 100644 index 000000000..6e080e9a2 --- /dev/null +++ b/src/IconVacuumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVacuumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVacuumOutlinedFilled as default } diff --git a/src/IconVacuumRoundedFilled.tsx b/src/IconVacuumRoundedFilled.tsx new file mode 100644 index 000000000..a02816e76 --- /dev/null +++ b/src/IconVacuumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVacuumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVacuumRoundedFilled as default } diff --git a/src/IconVacuumSharpFilled.tsx b/src/IconVacuumSharpFilled.tsx new file mode 100644 index 000000000..810f61100 --- /dev/null +++ b/src/IconVacuumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVacuumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVacuumSharpFilled as default } diff --git a/src/IconValveOutlinedFilled.tsx b/src/IconValveOutlinedFilled.tsx new file mode 100644 index 000000000..0f9bdab13 --- /dev/null +++ b/src/IconValveOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconValveOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconValveOutlinedFilled as default } diff --git a/src/IconValveRoundedFilled.tsx b/src/IconValveRoundedFilled.tsx new file mode 100644 index 000000000..9bc334e53 --- /dev/null +++ b/src/IconValveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconValveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconValveRoundedFilled as default } diff --git a/src/IconValveSharpFilled.tsx b/src/IconValveSharpFilled.tsx new file mode 100644 index 000000000..6e2e82eb5 --- /dev/null +++ b/src/IconValveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconValveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconValveSharpFilled as default } diff --git a/src/IconVapeFreeOutlinedFilled.tsx b/src/IconVapeFreeOutlinedFilled.tsx new file mode 100644 index 000000000..69105d5bf --- /dev/null +++ b/src/IconVapeFreeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVapeFreeOutlinedFilled as default } diff --git a/src/IconVapeFreeRoundedFilled.tsx b/src/IconVapeFreeRoundedFilled.tsx new file mode 100644 index 000000000..8e0ee54e2 --- /dev/null +++ b/src/IconVapeFreeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVapeFreeRoundedFilled as default } diff --git a/src/IconVapeFreeSharpFilled.tsx b/src/IconVapeFreeSharpFilled.tsx new file mode 100644 index 000000000..4c05bbc80 --- /dev/null +++ b/src/IconVapeFreeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapeFreeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVapeFreeSharpFilled as default } diff --git a/src/IconVapingRoomsOutlinedFilled.tsx b/src/IconVapingRoomsOutlinedFilled.tsx new file mode 100644 index 000000000..6a7c866c5 --- /dev/null +++ b/src/IconVapingRoomsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVapingRoomsOutlinedFilled as default } diff --git a/src/IconVapingRoomsRoundedFilled.tsx b/src/IconVapingRoomsRoundedFilled.tsx new file mode 100644 index 000000000..b2670a333 --- /dev/null +++ b/src/IconVapingRoomsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVapingRoomsRoundedFilled as default } diff --git a/src/IconVapingRoomsSharpFilled.tsx b/src/IconVapingRoomsSharpFilled.tsx new file mode 100644 index 000000000..5070a56be --- /dev/null +++ b/src/IconVapingRoomsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVapingRoomsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVapingRoomsSharpFilled as default } diff --git a/src/IconVariableAddOutlinedFilled.tsx b/src/IconVariableAddOutlinedFilled.tsx new file mode 100644 index 000000000..64a10925c --- /dev/null +++ b/src/IconVariableAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableAddOutlinedFilled as default } diff --git a/src/IconVariableAddRoundedFilled.tsx b/src/IconVariableAddRoundedFilled.tsx new file mode 100644 index 000000000..eb9ce8a89 --- /dev/null +++ b/src/IconVariableAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableAddRoundedFilled as default } diff --git a/src/IconVariableAddSharpFilled.tsx b/src/IconVariableAddSharpFilled.tsx new file mode 100644 index 000000000..0914994ef --- /dev/null +++ b/src/IconVariableAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableAddSharpFilled as default } diff --git a/src/IconVariableInsertOutlinedFilled.tsx b/src/IconVariableInsertOutlinedFilled.tsx new file mode 100644 index 000000000..553c11323 --- /dev/null +++ b/src/IconVariableInsertOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableInsertOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableInsertOutlinedFilled as default } diff --git a/src/IconVariableInsertRoundedFilled.tsx b/src/IconVariableInsertRoundedFilled.tsx new file mode 100644 index 000000000..45f7ad8a6 --- /dev/null +++ b/src/IconVariableInsertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableInsertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableInsertRoundedFilled as default } diff --git a/src/IconVariableInsertSharpFilled.tsx b/src/IconVariableInsertSharpFilled.tsx new file mode 100644 index 000000000..fea16d52c --- /dev/null +++ b/src/IconVariableInsertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableInsertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableInsertSharpFilled as default } diff --git a/src/IconVariableRemoveOutlinedFilled.tsx b/src/IconVariableRemoveOutlinedFilled.tsx new file mode 100644 index 000000000..7de20dd8e --- /dev/null +++ b/src/IconVariableRemoveOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableRemoveOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableRemoveOutlinedFilled as default } diff --git a/src/IconVariableRemoveRoundedFilled.tsx b/src/IconVariableRemoveRoundedFilled.tsx new file mode 100644 index 000000000..d68892b59 --- /dev/null +++ b/src/IconVariableRemoveRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableRemoveRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableRemoveRoundedFilled as default } diff --git a/src/IconVariableRemoveSharpFilled.tsx b/src/IconVariableRemoveSharpFilled.tsx new file mode 100644 index 000000000..510120501 --- /dev/null +++ b/src/IconVariableRemoveSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariableRemoveSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariableRemoveSharpFilled as default } diff --git a/src/IconVariablesOutlinedFilled.tsx b/src/IconVariablesOutlinedFilled.tsx new file mode 100644 index 000000000..8a5e7f186 --- /dev/null +++ b/src/IconVariablesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariablesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariablesOutlinedFilled as default } diff --git a/src/IconVariablesRoundedFilled.tsx b/src/IconVariablesRoundedFilled.tsx new file mode 100644 index 000000000..f1f5124cf --- /dev/null +++ b/src/IconVariablesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariablesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariablesRoundedFilled as default } diff --git a/src/IconVariablesSharpFilled.tsx b/src/IconVariablesSharpFilled.tsx new file mode 100644 index 000000000..5e263f8e6 --- /dev/null +++ b/src/IconVariablesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVariablesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVariablesSharpFilled as default } diff --git a/src/IconVentilatorOutlinedFilled.tsx b/src/IconVentilatorOutlinedFilled.tsx new file mode 100644 index 000000000..bc394baf2 --- /dev/null +++ b/src/IconVentilatorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVentilatorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVentilatorOutlinedFilled as default } diff --git a/src/IconVentilatorRoundedFilled.tsx b/src/IconVentilatorRoundedFilled.tsx new file mode 100644 index 000000000..69439afa3 --- /dev/null +++ b/src/IconVentilatorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVentilatorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVentilatorRoundedFilled as default } diff --git a/src/IconVentilatorSharpFilled.tsx b/src/IconVentilatorSharpFilled.tsx new file mode 100644 index 000000000..312bcd407 --- /dev/null +++ b/src/IconVentilatorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVentilatorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVentilatorSharpFilled as default } diff --git a/src/IconVerifiedOutlinedFilled.tsx b/src/IconVerifiedOutlinedFilled.tsx new file mode 100644 index 000000000..470475e8a --- /dev/null +++ b/src/IconVerifiedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerifiedOutlinedFilled as default } diff --git a/src/IconVerifiedRoundedFilled.tsx b/src/IconVerifiedRoundedFilled.tsx new file mode 100644 index 000000000..1594108d3 --- /dev/null +++ b/src/IconVerifiedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerifiedRoundedFilled as default } diff --git a/src/IconVerifiedSharpFilled.tsx b/src/IconVerifiedSharpFilled.tsx new file mode 100644 index 000000000..90dc2b9eb --- /dev/null +++ b/src/IconVerifiedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerifiedSharpFilled as default } diff --git a/src/IconVerifiedUserOutlinedFilled.tsx b/src/IconVerifiedUserOutlinedFilled.tsx new file mode 100644 index 000000000..aef7769f9 --- /dev/null +++ b/src/IconVerifiedUserOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerifiedUserOutlinedFilled as default } diff --git a/src/IconVerifiedUserRoundedFilled.tsx b/src/IconVerifiedUserRoundedFilled.tsx new file mode 100644 index 000000000..b2863607a --- /dev/null +++ b/src/IconVerifiedUserRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerifiedUserRoundedFilled as default } diff --git a/src/IconVerifiedUserSharpFilled.tsx b/src/IconVerifiedUserSharpFilled.tsx new file mode 100644 index 000000000..741d5b3f9 --- /dev/null +++ b/src/IconVerifiedUserSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerifiedUserSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerifiedUserSharpFilled as default } diff --git a/src/IconVerticalAlignBottomOutlinedFilled.tsx b/src/IconVerticalAlignBottomOutlinedFilled.tsx new file mode 100644 index 000000000..85e7bfedb --- /dev/null +++ b/src/IconVerticalAlignBottomOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignBottomOutlinedFilled as default } diff --git a/src/IconVerticalAlignBottomRoundedFilled.tsx b/src/IconVerticalAlignBottomRoundedFilled.tsx new file mode 100644 index 000000000..0bfb7f4f0 --- /dev/null +++ b/src/IconVerticalAlignBottomRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignBottomRoundedFilled as default } diff --git a/src/IconVerticalAlignBottomSharpFilled.tsx b/src/IconVerticalAlignBottomSharpFilled.tsx new file mode 100644 index 000000000..3db4aa88a --- /dev/null +++ b/src/IconVerticalAlignBottomSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignBottomSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignBottomSharpFilled as default } diff --git a/src/IconVerticalAlignCenterOutlinedFilled.tsx b/src/IconVerticalAlignCenterOutlinedFilled.tsx new file mode 100644 index 000000000..a0a7e58ae --- /dev/null +++ b/src/IconVerticalAlignCenterOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignCenterOutlinedFilled as default } diff --git a/src/IconVerticalAlignCenterRoundedFilled.tsx b/src/IconVerticalAlignCenterRoundedFilled.tsx new file mode 100644 index 000000000..4a9c45e5e --- /dev/null +++ b/src/IconVerticalAlignCenterRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignCenterRoundedFilled as default } diff --git a/src/IconVerticalAlignCenterSharpFilled.tsx b/src/IconVerticalAlignCenterSharpFilled.tsx new file mode 100644 index 000000000..a8e1ef437 --- /dev/null +++ b/src/IconVerticalAlignCenterSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignCenterSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignCenterSharpFilled as default } diff --git a/src/IconVerticalAlignTopOutlinedFilled.tsx b/src/IconVerticalAlignTopOutlinedFilled.tsx new file mode 100644 index 000000000..0ccaad117 --- /dev/null +++ b/src/IconVerticalAlignTopOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignTopOutlinedFilled as default } diff --git a/src/IconVerticalAlignTopRoundedFilled.tsx b/src/IconVerticalAlignTopRoundedFilled.tsx new file mode 100644 index 000000000..19dfa35d4 --- /dev/null +++ b/src/IconVerticalAlignTopRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignTopRoundedFilled as default } diff --git a/src/IconVerticalAlignTopSharpFilled.tsx b/src/IconVerticalAlignTopSharpFilled.tsx new file mode 100644 index 000000000..510d2ab4b --- /dev/null +++ b/src/IconVerticalAlignTopSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalAlignTopSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalAlignTopSharpFilled as default } diff --git a/src/IconVerticalDistributeOutlinedFilled.tsx b/src/IconVerticalDistributeOutlinedFilled.tsx new file mode 100644 index 000000000..64ab88058 --- /dev/null +++ b/src/IconVerticalDistributeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalDistributeOutlinedFilled as default } diff --git a/src/IconVerticalDistributeRoundedFilled.tsx b/src/IconVerticalDistributeRoundedFilled.tsx new file mode 100644 index 000000000..09b07fe89 --- /dev/null +++ b/src/IconVerticalDistributeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalDistributeRoundedFilled as default } diff --git a/src/IconVerticalDistributeSharpFilled.tsx b/src/IconVerticalDistributeSharpFilled.tsx new file mode 100644 index 000000000..710b5c87d --- /dev/null +++ b/src/IconVerticalDistributeSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalDistributeSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalDistributeSharpFilled as default } diff --git a/src/IconVerticalShadesClosedOutlinedFilled.tsx b/src/IconVerticalShadesClosedOutlinedFilled.tsx new file mode 100644 index 000000000..a72b5b37f --- /dev/null +++ b/src/IconVerticalShadesClosedOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalShadesClosedOutlinedFilled as default } diff --git a/src/IconVerticalShadesClosedRoundedFilled.tsx b/src/IconVerticalShadesClosedRoundedFilled.tsx new file mode 100644 index 000000000..a0b46e999 --- /dev/null +++ b/src/IconVerticalShadesClosedRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalShadesClosedRoundedFilled as default } diff --git a/src/IconVerticalShadesClosedSharpFilled.tsx b/src/IconVerticalShadesClosedSharpFilled.tsx new file mode 100644 index 000000000..5ff7862ca --- /dev/null +++ b/src/IconVerticalShadesClosedSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesClosedSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalShadesClosedSharpFilled as default } diff --git a/src/IconVerticalShadesOutlinedFilled.tsx b/src/IconVerticalShadesOutlinedFilled.tsx new file mode 100644 index 000000000..641f3cfa5 --- /dev/null +++ b/src/IconVerticalShadesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalShadesOutlinedFilled as default } diff --git a/src/IconVerticalShadesRoundedFilled.tsx b/src/IconVerticalShadesRoundedFilled.tsx new file mode 100644 index 000000000..d4ad42c41 --- /dev/null +++ b/src/IconVerticalShadesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalShadesRoundedFilled as default } diff --git a/src/IconVerticalShadesSharpFilled.tsx b/src/IconVerticalShadesSharpFilled.tsx new file mode 100644 index 000000000..9336af505 --- /dev/null +++ b/src/IconVerticalShadesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalShadesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalShadesSharpFilled as default } diff --git a/src/IconVerticalSplitOutlinedFilled.tsx b/src/IconVerticalSplitOutlinedFilled.tsx new file mode 100644 index 000000000..76e46d43b --- /dev/null +++ b/src/IconVerticalSplitOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalSplitOutlinedFilled as default } diff --git a/src/IconVerticalSplitRoundedFilled.tsx b/src/IconVerticalSplitRoundedFilled.tsx new file mode 100644 index 000000000..780ed3060 --- /dev/null +++ b/src/IconVerticalSplitRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalSplitRoundedFilled as default } diff --git a/src/IconVerticalSplitSharpFilled.tsx b/src/IconVerticalSplitSharpFilled.tsx new file mode 100644 index 000000000..94a7585a0 --- /dev/null +++ b/src/IconVerticalSplitSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVerticalSplitSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVerticalSplitSharpFilled as default } diff --git a/src/IconVibrationOutlinedFilled.tsx b/src/IconVibrationOutlinedFilled.tsx new file mode 100644 index 000000000..50abd2e3e --- /dev/null +++ b/src/IconVibrationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVibrationOutlinedFilled as default } diff --git a/src/IconVibrationRoundedFilled.tsx b/src/IconVibrationRoundedFilled.tsx new file mode 100644 index 000000000..a23d387b1 --- /dev/null +++ b/src/IconVibrationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVibrationRoundedFilled as default } diff --git a/src/IconVibrationSharpFilled.tsx b/src/IconVibrationSharpFilled.tsx new file mode 100644 index 000000000..6fb543e02 --- /dev/null +++ b/src/IconVibrationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVibrationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVibrationSharpFilled as default } diff --git a/src/IconVideoCallOutlinedFilled.tsx b/src/IconVideoCallOutlinedFilled.tsx new file mode 100644 index 000000000..90e1fc571 --- /dev/null +++ b/src/IconVideoCallOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCallOutlinedFilled as default } diff --git a/src/IconVideoCallRoundedFilled.tsx b/src/IconVideoCallRoundedFilled.tsx new file mode 100644 index 000000000..c44137037 --- /dev/null +++ b/src/IconVideoCallRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCallRoundedFilled as default } diff --git a/src/IconVideoCallSharpFilled.tsx b/src/IconVideoCallSharpFilled.tsx new file mode 100644 index 000000000..440c35357 --- /dev/null +++ b/src/IconVideoCallSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCallSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCallSharpFilled as default } diff --git a/src/IconVideoCameraBackAddOutlinedFilled.tsx b/src/IconVideoCameraBackAddOutlinedFilled.tsx new file mode 100644 index 000000000..839ab0af5 --- /dev/null +++ b/src/IconVideoCameraBackAddOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackAddOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraBackAddOutlinedFilled as default } diff --git a/src/IconVideoCameraBackAddRoundedFilled.tsx b/src/IconVideoCameraBackAddRoundedFilled.tsx new file mode 100644 index 000000000..b6be0e890 --- /dev/null +++ b/src/IconVideoCameraBackAddRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackAddRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraBackAddRoundedFilled as default } diff --git a/src/IconVideoCameraBackAddSharpFilled.tsx b/src/IconVideoCameraBackAddSharpFilled.tsx new file mode 100644 index 000000000..6ff7dc9fa --- /dev/null +++ b/src/IconVideoCameraBackAddSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackAddSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraBackAddSharpFilled as default } diff --git a/src/IconVideoCameraBackOutlinedFilled.tsx b/src/IconVideoCameraBackOutlinedFilled.tsx new file mode 100644 index 000000000..e405c8c27 --- /dev/null +++ b/src/IconVideoCameraBackOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraBackOutlinedFilled as default } diff --git a/src/IconVideoCameraBackRoundedFilled.tsx b/src/IconVideoCameraBackRoundedFilled.tsx new file mode 100644 index 000000000..8af58c046 --- /dev/null +++ b/src/IconVideoCameraBackRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraBackRoundedFilled as default } diff --git a/src/IconVideoCameraBackSharpFilled.tsx b/src/IconVideoCameraBackSharpFilled.tsx new file mode 100644 index 000000000..e2c346adc --- /dev/null +++ b/src/IconVideoCameraBackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraBackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraBackSharpFilled as default } diff --git a/src/IconVideoCameraFrontOffOutlinedFilled.tsx b/src/IconVideoCameraFrontOffOutlinedFilled.tsx new file mode 100644 index 000000000..0d1d36642 --- /dev/null +++ b/src/IconVideoCameraFrontOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraFrontOffOutlinedFilled as default } diff --git a/src/IconVideoCameraFrontOffRoundedFilled.tsx b/src/IconVideoCameraFrontOffRoundedFilled.tsx new file mode 100644 index 000000000..e2612409b --- /dev/null +++ b/src/IconVideoCameraFrontOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraFrontOffRoundedFilled as default } diff --git a/src/IconVideoCameraFrontOffSharpFilled.tsx b/src/IconVideoCameraFrontOffSharpFilled.tsx new file mode 100644 index 000000000..a9bd1fb10 --- /dev/null +++ b/src/IconVideoCameraFrontOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraFrontOffSharpFilled as default } diff --git a/src/IconVideoCameraFrontOutlinedFilled.tsx b/src/IconVideoCameraFrontOutlinedFilled.tsx new file mode 100644 index 000000000..9eed3682c --- /dev/null +++ b/src/IconVideoCameraFrontOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraFrontOutlinedFilled as default } diff --git a/src/IconVideoCameraFrontRoundedFilled.tsx b/src/IconVideoCameraFrontRoundedFilled.tsx new file mode 100644 index 000000000..11256b87a --- /dev/null +++ b/src/IconVideoCameraFrontRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraFrontRoundedFilled as default } diff --git a/src/IconVideoCameraFrontSharpFilled.tsx b/src/IconVideoCameraFrontSharpFilled.tsx new file mode 100644 index 000000000..2a06e13d4 --- /dev/null +++ b/src/IconVideoCameraFrontSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoCameraFrontSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoCameraFrontSharpFilled as default } diff --git a/src/IconVideoChatOutlinedFilled.tsx b/src/IconVideoChatOutlinedFilled.tsx new file mode 100644 index 000000000..5f1f0a134 --- /dev/null +++ b/src/IconVideoChatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoChatOutlinedFilled as default } diff --git a/src/IconVideoChatRoundedFilled.tsx b/src/IconVideoChatRoundedFilled.tsx new file mode 100644 index 000000000..b0a264448 --- /dev/null +++ b/src/IconVideoChatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoChatRoundedFilled as default } diff --git a/src/IconVideoChatSharpFilled.tsx b/src/IconVideoChatSharpFilled.tsx new file mode 100644 index 000000000..e8a3ea3de --- /dev/null +++ b/src/IconVideoChatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoChatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoChatSharpFilled as default } diff --git a/src/IconVideoFileOutlinedFilled.tsx b/src/IconVideoFileOutlinedFilled.tsx new file mode 100644 index 000000000..6ac746cdf --- /dev/null +++ b/src/IconVideoFileOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoFileOutlinedFilled as default } diff --git a/src/IconVideoFileRoundedFilled.tsx b/src/IconVideoFileRoundedFilled.tsx new file mode 100644 index 000000000..8fd17f8aa --- /dev/null +++ b/src/IconVideoFileRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoFileRoundedFilled as default } diff --git a/src/IconVideoFileSharpFilled.tsx b/src/IconVideoFileSharpFilled.tsx new file mode 100644 index 000000000..cfecf8add --- /dev/null +++ b/src/IconVideoFileSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoFileSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoFileSharpFilled as default } diff --git a/src/IconVideoLabelOutlinedFilled.tsx b/src/IconVideoLabelOutlinedFilled.tsx new file mode 100644 index 000000000..1ef3816c4 --- /dev/null +++ b/src/IconVideoLabelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLabelOutlinedFilled as default } diff --git a/src/IconVideoLabelRoundedFilled.tsx b/src/IconVideoLabelRoundedFilled.tsx new file mode 100644 index 000000000..6819d1343 --- /dev/null +++ b/src/IconVideoLabelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLabelRoundedFilled as default } diff --git a/src/IconVideoLabelSharpFilled.tsx b/src/IconVideoLabelSharpFilled.tsx new file mode 100644 index 000000000..93dbfee8e --- /dev/null +++ b/src/IconVideoLabelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLabelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLabelSharpFilled as default } diff --git a/src/IconVideoLibraryOutlinedFilled.tsx b/src/IconVideoLibraryOutlinedFilled.tsx new file mode 100644 index 000000000..483de249a --- /dev/null +++ b/src/IconVideoLibraryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibraryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLibraryOutlinedFilled as default } diff --git a/src/IconVideoLibraryRoundedFilled.tsx b/src/IconVideoLibraryRoundedFilled.tsx new file mode 100644 index 000000000..106a66f9b --- /dev/null +++ b/src/IconVideoLibraryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibraryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLibraryRoundedFilled as default } diff --git a/src/IconVideoLibrarySharpFilled.tsx b/src/IconVideoLibrarySharpFilled.tsx new file mode 100644 index 000000000..730d23803 --- /dev/null +++ b/src/IconVideoLibrarySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoLibrarySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoLibrarySharpFilled as default } diff --git a/src/IconVideoSearchOutlinedFilled.tsx b/src/IconVideoSearchOutlinedFilled.tsx new file mode 100644 index 000000000..0cf8511e2 --- /dev/null +++ b/src/IconVideoSearchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSearchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoSearchOutlinedFilled as default } diff --git a/src/IconVideoSearchRoundedFilled.tsx b/src/IconVideoSearchRoundedFilled.tsx new file mode 100644 index 000000000..747e6f0a1 --- /dev/null +++ b/src/IconVideoSearchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSearchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoSearchRoundedFilled as default } diff --git a/src/IconVideoSearchSharpFilled.tsx b/src/IconVideoSearchSharpFilled.tsx new file mode 100644 index 000000000..3910e5038 --- /dev/null +++ b/src/IconVideoSearchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSearchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoSearchSharpFilled as default } diff --git a/src/IconVideoSettingsOutlinedFilled.tsx b/src/IconVideoSettingsOutlinedFilled.tsx new file mode 100644 index 000000000..290e78eb6 --- /dev/null +++ b/src/IconVideoSettingsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoSettingsOutlinedFilled as default } diff --git a/src/IconVideoSettingsRoundedFilled.tsx b/src/IconVideoSettingsRoundedFilled.tsx new file mode 100644 index 000000000..1e8850089 --- /dev/null +++ b/src/IconVideoSettingsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoSettingsRoundedFilled as default } diff --git a/src/IconVideoSettingsSharpFilled.tsx b/src/IconVideoSettingsSharpFilled.tsx new file mode 100644 index 000000000..6a9f476c9 --- /dev/null +++ b/src/IconVideoSettingsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoSettingsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoSettingsSharpFilled as default } diff --git a/src/IconVideoStableOutlinedFilled.tsx b/src/IconVideoStableOutlinedFilled.tsx new file mode 100644 index 000000000..0c2dc3848 --- /dev/null +++ b/src/IconVideoStableOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoStableOutlinedFilled as default } diff --git a/src/IconVideoStableRoundedFilled.tsx b/src/IconVideoStableRoundedFilled.tsx new file mode 100644 index 000000000..9b927aa85 --- /dev/null +++ b/src/IconVideoStableRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoStableRoundedFilled as default } diff --git a/src/IconVideoStableSharpFilled.tsx b/src/IconVideoStableSharpFilled.tsx new file mode 100644 index 000000000..9b999e890 --- /dev/null +++ b/src/IconVideoStableSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideoStableSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideoStableSharpFilled as default } diff --git a/src/IconVideocamOffOutlinedFilled.tsx b/src/IconVideocamOffOutlinedFilled.tsx new file mode 100644 index 000000000..2a90ec35b --- /dev/null +++ b/src/IconVideocamOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamOffOutlinedFilled as default } diff --git a/src/IconVideocamOffRoundedFilled.tsx b/src/IconVideocamOffRoundedFilled.tsx new file mode 100644 index 000000000..b445cdda7 --- /dev/null +++ b/src/IconVideocamOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamOffRoundedFilled as default } diff --git a/src/IconVideocamOffSharpFilled.tsx b/src/IconVideocamOffSharpFilled.tsx new file mode 100644 index 000000000..8192c550d --- /dev/null +++ b/src/IconVideocamOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamOffSharpFilled as default } diff --git a/src/IconVideocamOutlinedFilled.tsx b/src/IconVideocamOutlinedFilled.tsx new file mode 100644 index 000000000..8a0b6c167 --- /dev/null +++ b/src/IconVideocamOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamOutlinedFilled as default } diff --git a/src/IconVideocamRoundedFilled.tsx b/src/IconVideocamRoundedFilled.tsx new file mode 100644 index 000000000..5284e8d06 --- /dev/null +++ b/src/IconVideocamRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamRoundedFilled as default } diff --git a/src/IconVideocamSharpFilled.tsx b/src/IconVideocamSharpFilled.tsx new file mode 100644 index 000000000..a32d3fe0f --- /dev/null +++ b/src/IconVideocamSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideocamSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideocamSharpFilled as default } diff --git a/src/IconVideogameAssetOffOutlinedFilled.tsx b/src/IconVideogameAssetOffOutlinedFilled.tsx new file mode 100644 index 000000000..c052aee01 --- /dev/null +++ b/src/IconVideogameAssetOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetOffOutlinedFilled as default } diff --git a/src/IconVideogameAssetOffRoundedFilled.tsx b/src/IconVideogameAssetOffRoundedFilled.tsx new file mode 100644 index 000000000..90220caee --- /dev/null +++ b/src/IconVideogameAssetOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetOffRoundedFilled as default } diff --git a/src/IconVideogameAssetOffSharpFilled.tsx b/src/IconVideogameAssetOffSharpFilled.tsx new file mode 100644 index 000000000..7cd7279ad --- /dev/null +++ b/src/IconVideogameAssetOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetOffSharpFilled as default } diff --git a/src/IconVideogameAssetOutlinedFilled.tsx b/src/IconVideogameAssetOutlinedFilled.tsx new file mode 100644 index 000000000..74a0519b1 --- /dev/null +++ b/src/IconVideogameAssetOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetOutlinedFilled as default } diff --git a/src/IconVideogameAssetRoundedFilled.tsx b/src/IconVideogameAssetRoundedFilled.tsx new file mode 100644 index 000000000..06a777c89 --- /dev/null +++ b/src/IconVideogameAssetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetRoundedFilled as default } diff --git a/src/IconVideogameAssetSharpFilled.tsx b/src/IconVideogameAssetSharpFilled.tsx new file mode 100644 index 000000000..c36fe9000 --- /dev/null +++ b/src/IconVideogameAssetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVideogameAssetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVideogameAssetSharpFilled as default } diff --git a/src/IconViewAgendaOutlinedFilled.tsx b/src/IconViewAgendaOutlinedFilled.tsx new file mode 100644 index 000000000..f3e19d1b1 --- /dev/null +++ b/src/IconViewAgendaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewAgendaOutlinedFilled as default } diff --git a/src/IconViewAgendaRoundedFilled.tsx b/src/IconViewAgendaRoundedFilled.tsx new file mode 100644 index 000000000..8a5ab1c35 --- /dev/null +++ b/src/IconViewAgendaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewAgendaRoundedFilled as default } diff --git a/src/IconViewAgendaSharpFilled.tsx b/src/IconViewAgendaSharpFilled.tsx new file mode 100644 index 000000000..94073ed14 --- /dev/null +++ b/src/IconViewAgendaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewAgendaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewAgendaSharpFilled as default } diff --git a/src/IconViewArrayOutlinedFilled.tsx b/src/IconViewArrayOutlinedFilled.tsx new file mode 100644 index 000000000..7db62a5ef --- /dev/null +++ b/src/IconViewArrayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArrayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewArrayOutlinedFilled as default } diff --git a/src/IconViewArrayRoundedFilled.tsx b/src/IconViewArrayRoundedFilled.tsx new file mode 100644 index 000000000..16830a073 --- /dev/null +++ b/src/IconViewArrayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArrayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewArrayRoundedFilled as default } diff --git a/src/IconViewArraySharpFilled.tsx b/src/IconViewArraySharpFilled.tsx new file mode 100644 index 000000000..c0bd905a6 --- /dev/null +++ b/src/IconViewArraySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewArraySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewArraySharpFilled as default } diff --git a/src/IconViewCarouselOutlinedFilled.tsx b/src/IconViewCarouselOutlinedFilled.tsx new file mode 100644 index 000000000..a91d1d99c --- /dev/null +++ b/src/IconViewCarouselOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCarouselOutlinedFilled as default } diff --git a/src/IconViewCarouselRoundedFilled.tsx b/src/IconViewCarouselRoundedFilled.tsx new file mode 100644 index 000000000..27834da26 --- /dev/null +++ b/src/IconViewCarouselRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCarouselRoundedFilled as default } diff --git a/src/IconViewCarouselSharpFilled.tsx b/src/IconViewCarouselSharpFilled.tsx new file mode 100644 index 000000000..f495bab7a --- /dev/null +++ b/src/IconViewCarouselSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCarouselSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCarouselSharpFilled as default } diff --git a/src/IconViewColumn2OutlinedFilled.tsx b/src/IconViewColumn2OutlinedFilled.tsx new file mode 100644 index 000000000..f33dd33f1 --- /dev/null +++ b/src/IconViewColumn2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumn2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewColumn2OutlinedFilled as default } diff --git a/src/IconViewColumn2RoundedFilled.tsx b/src/IconViewColumn2RoundedFilled.tsx new file mode 100644 index 000000000..3b7c0eee7 --- /dev/null +++ b/src/IconViewColumn2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumn2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewColumn2RoundedFilled as default } diff --git a/src/IconViewColumn2SharpFilled.tsx b/src/IconViewColumn2SharpFilled.tsx new file mode 100644 index 000000000..9b6e773dc --- /dev/null +++ b/src/IconViewColumn2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumn2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewColumn2SharpFilled as default } diff --git a/src/IconViewColumnOutlinedFilled.tsx b/src/IconViewColumnOutlinedFilled.tsx new file mode 100644 index 000000000..b8ec84025 --- /dev/null +++ b/src/IconViewColumnOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewColumnOutlinedFilled as default } diff --git a/src/IconViewColumnRoundedFilled.tsx b/src/IconViewColumnRoundedFilled.tsx new file mode 100644 index 000000000..901992174 --- /dev/null +++ b/src/IconViewColumnRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewColumnRoundedFilled as default } diff --git a/src/IconViewColumnSharpFilled.tsx b/src/IconViewColumnSharpFilled.tsx new file mode 100644 index 000000000..2fae879cf --- /dev/null +++ b/src/IconViewColumnSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewColumnSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewColumnSharpFilled as default } diff --git a/src/IconViewComfyAltOutlinedFilled.tsx b/src/IconViewComfyAltOutlinedFilled.tsx new file mode 100644 index 000000000..d7db68cee --- /dev/null +++ b/src/IconViewComfyAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewComfyAltOutlinedFilled as default } diff --git a/src/IconViewComfyAltRoundedFilled.tsx b/src/IconViewComfyAltRoundedFilled.tsx new file mode 100644 index 000000000..9a8369311 --- /dev/null +++ b/src/IconViewComfyAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewComfyAltRoundedFilled as default } diff --git a/src/IconViewComfyAltSharpFilled.tsx b/src/IconViewComfyAltSharpFilled.tsx new file mode 100644 index 000000000..60d59ffec --- /dev/null +++ b/src/IconViewComfyAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewComfyAltSharpFilled as default } diff --git a/src/IconViewComfyOutlinedFilled.tsx b/src/IconViewComfyOutlinedFilled.tsx new file mode 100644 index 000000000..28c42487c --- /dev/null +++ b/src/IconViewComfyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewComfyOutlinedFilled as default } diff --git a/src/IconViewComfyRoundedFilled.tsx b/src/IconViewComfyRoundedFilled.tsx new file mode 100644 index 000000000..23395a8b0 --- /dev/null +++ b/src/IconViewComfyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewComfyRoundedFilled as default } diff --git a/src/IconViewComfySharpFilled.tsx b/src/IconViewComfySharpFilled.tsx new file mode 100644 index 000000000..00c988853 --- /dev/null +++ b/src/IconViewComfySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewComfySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewComfySharpFilled as default } diff --git a/src/IconViewCompactAltOutlinedFilled.tsx b/src/IconViewCompactAltOutlinedFilled.tsx new file mode 100644 index 000000000..07dd8273e --- /dev/null +++ b/src/IconViewCompactAltOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCompactAltOutlinedFilled as default } diff --git a/src/IconViewCompactAltRoundedFilled.tsx b/src/IconViewCompactAltRoundedFilled.tsx new file mode 100644 index 000000000..a9b95e2fb --- /dev/null +++ b/src/IconViewCompactAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCompactAltRoundedFilled as default } diff --git a/src/IconViewCompactAltSharpFilled.tsx b/src/IconViewCompactAltSharpFilled.tsx new file mode 100644 index 000000000..cc13b8ec6 --- /dev/null +++ b/src/IconViewCompactAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCompactAltSharpFilled as default } diff --git a/src/IconViewCompactOutlinedFilled.tsx b/src/IconViewCompactOutlinedFilled.tsx new file mode 100644 index 000000000..1b13808c3 --- /dev/null +++ b/src/IconViewCompactOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCompactOutlinedFilled as default } diff --git a/src/IconViewCompactRoundedFilled.tsx b/src/IconViewCompactRoundedFilled.tsx new file mode 100644 index 000000000..2492abaee --- /dev/null +++ b/src/IconViewCompactRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCompactRoundedFilled as default } diff --git a/src/IconViewCompactSharpFilled.tsx b/src/IconViewCompactSharpFilled.tsx new file mode 100644 index 000000000..fc5860ca0 --- /dev/null +++ b/src/IconViewCompactSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCompactSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCompactSharpFilled as default } diff --git a/src/IconViewCozyOutlinedFilled.tsx b/src/IconViewCozyOutlinedFilled.tsx new file mode 100644 index 000000000..c907aaf4e --- /dev/null +++ b/src/IconViewCozyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCozyOutlinedFilled as default } diff --git a/src/IconViewCozyRoundedFilled.tsx b/src/IconViewCozyRoundedFilled.tsx new file mode 100644 index 000000000..891e69578 --- /dev/null +++ b/src/IconViewCozyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCozyRoundedFilled as default } diff --git a/src/IconViewCozySharpFilled.tsx b/src/IconViewCozySharpFilled.tsx new file mode 100644 index 000000000..64f2d739d --- /dev/null +++ b/src/IconViewCozySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewCozySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewCozySharpFilled as default } diff --git a/src/IconViewDayOutlinedFilled.tsx b/src/IconViewDayOutlinedFilled.tsx new file mode 100644 index 000000000..7b0d58eb2 --- /dev/null +++ b/src/IconViewDayOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDayOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewDayOutlinedFilled as default } diff --git a/src/IconViewDayRoundedFilled.tsx b/src/IconViewDayRoundedFilled.tsx new file mode 100644 index 000000000..ecb1a23cd --- /dev/null +++ b/src/IconViewDayRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDayRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewDayRoundedFilled as default } diff --git a/src/IconViewDaySharpFilled.tsx b/src/IconViewDaySharpFilled.tsx new file mode 100644 index 000000000..c3fb01416 --- /dev/null +++ b/src/IconViewDaySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewDaySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewDaySharpFilled as default } diff --git a/src/IconViewHeadlineOutlinedFilled.tsx b/src/IconViewHeadlineOutlinedFilled.tsx new file mode 100644 index 000000000..24c7762ae --- /dev/null +++ b/src/IconViewHeadlineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewHeadlineOutlinedFilled as default } diff --git a/src/IconViewHeadlineRoundedFilled.tsx b/src/IconViewHeadlineRoundedFilled.tsx new file mode 100644 index 000000000..5f24303bb --- /dev/null +++ b/src/IconViewHeadlineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewHeadlineRoundedFilled as default } diff --git a/src/IconViewHeadlineSharpFilled.tsx b/src/IconViewHeadlineSharpFilled.tsx new file mode 100644 index 000000000..77802d091 --- /dev/null +++ b/src/IconViewHeadlineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewHeadlineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewHeadlineSharpFilled as default } diff --git a/src/IconViewInArOffOutlinedFilled.tsx b/src/IconViewInArOffOutlinedFilled.tsx new file mode 100644 index 000000000..549fe0d5b --- /dev/null +++ b/src/IconViewInArOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewInArOffOutlinedFilled as default } diff --git a/src/IconViewInArOffRoundedFilled.tsx b/src/IconViewInArOffRoundedFilled.tsx new file mode 100644 index 000000000..f057c56b8 --- /dev/null +++ b/src/IconViewInArOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewInArOffRoundedFilled as default } diff --git a/src/IconViewInArOffSharpFilled.tsx b/src/IconViewInArOffSharpFilled.tsx new file mode 100644 index 000000000..f41bbcefc --- /dev/null +++ b/src/IconViewInArOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewInArOffSharpFilled as default } diff --git a/src/IconViewInArOutlinedFilled.tsx b/src/IconViewInArOutlinedFilled.tsx new file mode 100644 index 000000000..6f34fbcc9 --- /dev/null +++ b/src/IconViewInArOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewInArOutlinedFilled as default } diff --git a/src/IconViewInArRoundedFilled.tsx b/src/IconViewInArRoundedFilled.tsx new file mode 100644 index 000000000..1cdf30622 --- /dev/null +++ b/src/IconViewInArRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewInArRoundedFilled as default } diff --git a/src/IconViewInArSharpFilled.tsx b/src/IconViewInArSharpFilled.tsx new file mode 100644 index 000000000..6d1bed719 --- /dev/null +++ b/src/IconViewInArSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewInArSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewInArSharpFilled as default } diff --git a/src/IconViewKanbanOutlinedFilled.tsx b/src/IconViewKanbanOutlinedFilled.tsx new file mode 100644 index 000000000..37eeb6968 --- /dev/null +++ b/src/IconViewKanbanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewKanbanOutlinedFilled as default } diff --git a/src/IconViewKanbanRoundedFilled.tsx b/src/IconViewKanbanRoundedFilled.tsx new file mode 100644 index 000000000..a24d8ae37 --- /dev/null +++ b/src/IconViewKanbanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewKanbanRoundedFilled as default } diff --git a/src/IconViewKanbanSharpFilled.tsx b/src/IconViewKanbanSharpFilled.tsx new file mode 100644 index 000000000..943dfa7c6 --- /dev/null +++ b/src/IconViewKanbanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewKanbanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewKanbanSharpFilled as default } diff --git a/src/IconViewListOutlinedFilled.tsx b/src/IconViewListOutlinedFilled.tsx new file mode 100644 index 000000000..cf9c98332 --- /dev/null +++ b/src/IconViewListOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewListOutlinedFilled as default } diff --git a/src/IconViewListRoundedFilled.tsx b/src/IconViewListRoundedFilled.tsx new file mode 100644 index 000000000..ae5f289ca --- /dev/null +++ b/src/IconViewListRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewListRoundedFilled as default } diff --git a/src/IconViewListSharpFilled.tsx b/src/IconViewListSharpFilled.tsx new file mode 100644 index 000000000..098a81e93 --- /dev/null +++ b/src/IconViewListSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewListSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewListSharpFilled as default } diff --git a/src/IconViewModuleOutlinedFilled.tsx b/src/IconViewModuleOutlinedFilled.tsx new file mode 100644 index 000000000..919cee020 --- /dev/null +++ b/src/IconViewModuleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewModuleOutlinedFilled as default } diff --git a/src/IconViewModuleRoundedFilled.tsx b/src/IconViewModuleRoundedFilled.tsx new file mode 100644 index 000000000..e274d3e06 --- /dev/null +++ b/src/IconViewModuleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewModuleRoundedFilled as default } diff --git a/src/IconViewModuleSharpFilled.tsx b/src/IconViewModuleSharpFilled.tsx new file mode 100644 index 000000000..4bda3fbc2 --- /dev/null +++ b/src/IconViewModuleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewModuleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewModuleSharpFilled as default } diff --git a/src/IconViewObjectTrackOutlinedFilled.tsx b/src/IconViewObjectTrackOutlinedFilled.tsx new file mode 100644 index 000000000..e73ba1cc3 --- /dev/null +++ b/src/IconViewObjectTrackOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewObjectTrackOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconViewObjectTrackOutlinedFilled as default } diff --git a/src/IconViewObjectTrackRoundedFilled.tsx b/src/IconViewObjectTrackRoundedFilled.tsx new file mode 100644 index 000000000..b7c6253a8 --- /dev/null +++ b/src/IconViewObjectTrackRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewObjectTrackRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconViewObjectTrackRoundedFilled as default } diff --git a/src/IconViewObjectTrackSharpFilled.tsx b/src/IconViewObjectTrackSharpFilled.tsx new file mode 100644 index 000000000..7f03c16f5 --- /dev/null +++ b/src/IconViewObjectTrackSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewObjectTrackSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewObjectTrackSharpFilled as default } diff --git a/src/IconViewQuiltOutlinedFilled.tsx b/src/IconViewQuiltOutlinedFilled.tsx new file mode 100644 index 000000000..914a790ba --- /dev/null +++ b/src/IconViewQuiltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewQuiltOutlinedFilled as default } diff --git a/src/IconViewQuiltRoundedFilled.tsx b/src/IconViewQuiltRoundedFilled.tsx new file mode 100644 index 000000000..06330e065 --- /dev/null +++ b/src/IconViewQuiltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewQuiltRoundedFilled as default } diff --git a/src/IconViewQuiltSharpFilled.tsx b/src/IconViewQuiltSharpFilled.tsx new file mode 100644 index 000000000..316b41268 --- /dev/null +++ b/src/IconViewQuiltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewQuiltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewQuiltSharpFilled as default } diff --git a/src/IconViewRealSizeOutlinedFilled.tsx b/src/IconViewRealSizeOutlinedFilled.tsx new file mode 100644 index 000000000..f3cb5b6fa --- /dev/null +++ b/src/IconViewRealSizeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewRealSizeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewRealSizeOutlinedFilled as default } diff --git a/src/IconViewRealSizeRoundedFilled.tsx b/src/IconViewRealSizeRoundedFilled.tsx new file mode 100644 index 000000000..eb5b71d3c --- /dev/null +++ b/src/IconViewRealSizeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewRealSizeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewRealSizeRoundedFilled as default } diff --git a/src/IconViewRealSizeSharpFilled.tsx b/src/IconViewRealSizeSharpFilled.tsx new file mode 100644 index 000000000..8d1c73ee3 --- /dev/null +++ b/src/IconViewRealSizeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewRealSizeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewRealSizeSharpFilled as default } diff --git a/src/IconViewSidebarOutlinedFilled.tsx b/src/IconViewSidebarOutlinedFilled.tsx new file mode 100644 index 000000000..71de526e6 --- /dev/null +++ b/src/IconViewSidebarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewSidebarOutlinedFilled as default } diff --git a/src/IconViewSidebarRoundedFilled.tsx b/src/IconViewSidebarRoundedFilled.tsx new file mode 100644 index 000000000..72243321a --- /dev/null +++ b/src/IconViewSidebarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewSidebarRoundedFilled as default } diff --git a/src/IconViewSidebarSharpFilled.tsx b/src/IconViewSidebarSharpFilled.tsx new file mode 100644 index 000000000..bd53a2f57 --- /dev/null +++ b/src/IconViewSidebarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewSidebarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewSidebarSharpFilled as default } diff --git a/src/IconViewStreamOutlinedFilled.tsx b/src/IconViewStreamOutlinedFilled.tsx new file mode 100644 index 000000000..656105ce7 --- /dev/null +++ b/src/IconViewStreamOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewStreamOutlinedFilled as default } diff --git a/src/IconViewStreamRoundedFilled.tsx b/src/IconViewStreamRoundedFilled.tsx new file mode 100644 index 000000000..5cac18f36 --- /dev/null +++ b/src/IconViewStreamRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewStreamRoundedFilled as default } diff --git a/src/IconViewStreamSharpFilled.tsx b/src/IconViewStreamSharpFilled.tsx new file mode 100644 index 000000000..b7c8e8a7e --- /dev/null +++ b/src/IconViewStreamSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewStreamSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewStreamSharpFilled as default } diff --git a/src/IconViewTimelineOutlinedFilled.tsx b/src/IconViewTimelineOutlinedFilled.tsx new file mode 100644 index 000000000..d86f1c450 --- /dev/null +++ b/src/IconViewTimelineOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewTimelineOutlinedFilled as default } diff --git a/src/IconViewTimelineRoundedFilled.tsx b/src/IconViewTimelineRoundedFilled.tsx new file mode 100644 index 000000000..346695e0c --- /dev/null +++ b/src/IconViewTimelineRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewTimelineRoundedFilled as default } diff --git a/src/IconViewTimelineSharpFilled.tsx b/src/IconViewTimelineSharpFilled.tsx new file mode 100644 index 000000000..37bec9e8a --- /dev/null +++ b/src/IconViewTimelineSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewTimelineSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewTimelineSharpFilled as default } diff --git a/src/IconViewWeekOutlinedFilled.tsx b/src/IconViewWeekOutlinedFilled.tsx new file mode 100644 index 000000000..067f6dc16 --- /dev/null +++ b/src/IconViewWeekOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewWeekOutlinedFilled as default } diff --git a/src/IconViewWeekRoundedFilled.tsx b/src/IconViewWeekRoundedFilled.tsx new file mode 100644 index 000000000..371a0ac48 --- /dev/null +++ b/src/IconViewWeekRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewWeekRoundedFilled as default } diff --git a/src/IconViewWeekSharpFilled.tsx b/src/IconViewWeekSharpFilled.tsx new file mode 100644 index 000000000..bb547e78c --- /dev/null +++ b/src/IconViewWeekSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconViewWeekSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconViewWeekSharpFilled as default } diff --git a/src/IconVignetteOutlinedFilled.tsx b/src/IconVignetteOutlinedFilled.tsx new file mode 100644 index 000000000..2a0d73824 --- /dev/null +++ b/src/IconVignetteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVignetteOutlinedFilled as default } diff --git a/src/IconVignetteRoundedFilled.tsx b/src/IconVignetteRoundedFilled.tsx new file mode 100644 index 000000000..72959cba9 --- /dev/null +++ b/src/IconVignetteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVignetteRoundedFilled as default } diff --git a/src/IconVignetteSharpFilled.tsx b/src/IconVignetteSharpFilled.tsx new file mode 100644 index 000000000..81f85693a --- /dev/null +++ b/src/IconVignetteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVignetteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVignetteSharpFilled as default } diff --git a/src/IconVillaOutlinedFilled.tsx b/src/IconVillaOutlinedFilled.tsx new file mode 100644 index 000000000..9b87b8a24 --- /dev/null +++ b/src/IconVillaOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVillaOutlinedFilled as default } diff --git a/src/IconVillaRoundedFilled.tsx b/src/IconVillaRoundedFilled.tsx new file mode 100644 index 000000000..06505da8f --- /dev/null +++ b/src/IconVillaRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVillaRoundedFilled as default } diff --git a/src/IconVillaSharpFilled.tsx b/src/IconVillaSharpFilled.tsx new file mode 100644 index 000000000..e4d31bb2f --- /dev/null +++ b/src/IconVillaSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVillaSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVillaSharpFilled as default } diff --git a/src/IconVisibilityLockOutlinedFilled.tsx b/src/IconVisibilityLockOutlinedFilled.tsx new file mode 100644 index 000000000..6963c399a --- /dev/null +++ b/src/IconVisibilityLockOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityLockOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityLockOutlinedFilled as default } diff --git a/src/IconVisibilityLockRoundedFilled.tsx b/src/IconVisibilityLockRoundedFilled.tsx new file mode 100644 index 000000000..7f079b4ae --- /dev/null +++ b/src/IconVisibilityLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityLockRoundedFilled as default } diff --git a/src/IconVisibilityLockSharpFilled.tsx b/src/IconVisibilityLockSharpFilled.tsx new file mode 100644 index 000000000..cd7ca6802 --- /dev/null +++ b/src/IconVisibilityLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityLockSharpFilled as default } diff --git a/src/IconVisibilityOffOutlinedFilled.tsx b/src/IconVisibilityOffOutlinedFilled.tsx new file mode 100644 index 000000000..599126f7c --- /dev/null +++ b/src/IconVisibilityOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityOffOutlinedFilled as default } diff --git a/src/IconVisibilityOffRoundedFilled.tsx b/src/IconVisibilityOffRoundedFilled.tsx new file mode 100644 index 000000000..48645c32d --- /dev/null +++ b/src/IconVisibilityOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityOffRoundedFilled as default } diff --git a/src/IconVisibilityOffSharpFilled.tsx b/src/IconVisibilityOffSharpFilled.tsx new file mode 100644 index 000000000..e6c133438 --- /dev/null +++ b/src/IconVisibilityOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityOffSharpFilled as default } diff --git a/src/IconVisibilityOutlinedFilled.tsx b/src/IconVisibilityOutlinedFilled.tsx new file mode 100644 index 000000000..61ac33f0b --- /dev/null +++ b/src/IconVisibilityOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityOutlinedFilled as default } diff --git a/src/IconVisibilityRoundedFilled.tsx b/src/IconVisibilityRoundedFilled.tsx new file mode 100644 index 000000000..27e6f2564 --- /dev/null +++ b/src/IconVisibilityRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilityRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilityRoundedFilled as default } diff --git a/src/IconVisibilitySharpFilled.tsx b/src/IconVisibilitySharpFilled.tsx new file mode 100644 index 000000000..f5a51e570 --- /dev/null +++ b/src/IconVisibilitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVisibilitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVisibilitySharpFilled as default } diff --git a/src/IconVitalSignsOutlinedFilled.tsx b/src/IconVitalSignsOutlinedFilled.tsx new file mode 100644 index 000000000..0293d0aea --- /dev/null +++ b/src/IconVitalSignsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVitalSignsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVitalSignsOutlinedFilled as default } diff --git a/src/IconVitalSignsRoundedFilled.tsx b/src/IconVitalSignsRoundedFilled.tsx new file mode 100644 index 000000000..eb2b53dd8 --- /dev/null +++ b/src/IconVitalSignsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVitalSignsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVitalSignsRoundedFilled as default } diff --git a/src/IconVitalSignsSharpFilled.tsx b/src/IconVitalSignsSharpFilled.tsx new file mode 100644 index 000000000..b945a952e --- /dev/null +++ b/src/IconVitalSignsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVitalSignsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVitalSignsSharpFilled as default } diff --git a/src/IconVo2MaxOutlinedFilled.tsx b/src/IconVo2MaxOutlinedFilled.tsx new file mode 100644 index 000000000..c40dbcbed --- /dev/null +++ b/src/IconVo2MaxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVo2MaxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVo2MaxOutlinedFilled as default } diff --git a/src/IconVo2MaxRoundedFilled.tsx b/src/IconVo2MaxRoundedFilled.tsx new file mode 100644 index 000000000..1ed69a482 --- /dev/null +++ b/src/IconVo2MaxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVo2MaxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVo2MaxRoundedFilled as default } diff --git a/src/IconVo2MaxSharpFilled.tsx b/src/IconVo2MaxSharpFilled.tsx new file mode 100644 index 000000000..e38afda61 --- /dev/null +++ b/src/IconVo2MaxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVo2MaxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVo2MaxSharpFilled as default } diff --git a/src/IconVoiceChatOutlinedFilled.tsx b/src/IconVoiceChatOutlinedFilled.tsx new file mode 100644 index 000000000..6e010cb38 --- /dev/null +++ b/src/IconVoiceChatOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceChatOutlinedFilled as default } diff --git a/src/IconVoiceChatRoundedFilled.tsx b/src/IconVoiceChatRoundedFilled.tsx new file mode 100644 index 000000000..44171d2da --- /dev/null +++ b/src/IconVoiceChatRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceChatRoundedFilled as default } diff --git a/src/IconVoiceChatSharpFilled.tsx b/src/IconVoiceChatSharpFilled.tsx new file mode 100644 index 000000000..ae706c937 --- /dev/null +++ b/src/IconVoiceChatSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceChatSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceChatSharpFilled as default } diff --git a/src/IconVoiceOverOffOutlinedFilled.tsx b/src/IconVoiceOverOffOutlinedFilled.tsx new file mode 100644 index 000000000..d648f9fbf --- /dev/null +++ b/src/IconVoiceOverOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceOverOffOutlinedFilled as default } diff --git a/src/IconVoiceOverOffRoundedFilled.tsx b/src/IconVoiceOverOffRoundedFilled.tsx new file mode 100644 index 000000000..db9b89475 --- /dev/null +++ b/src/IconVoiceOverOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceOverOffRoundedFilled as default } diff --git a/src/IconVoiceOverOffSharpFilled.tsx b/src/IconVoiceOverOffSharpFilled.tsx new file mode 100644 index 000000000..e99dd516b --- /dev/null +++ b/src/IconVoiceOverOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceOverOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceOverOffSharpFilled as default } diff --git a/src/IconVoiceSelectionOffOutlinedFilled.tsx b/src/IconVoiceSelectionOffOutlinedFilled.tsx new file mode 100644 index 000000000..2bf69c3cb --- /dev/null +++ b/src/IconVoiceSelectionOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceSelectionOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceSelectionOffOutlinedFilled as default } diff --git a/src/IconVoiceSelectionOffRoundedFilled.tsx b/src/IconVoiceSelectionOffRoundedFilled.tsx new file mode 100644 index 000000000..a81ed885b --- /dev/null +++ b/src/IconVoiceSelectionOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceSelectionOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceSelectionOffRoundedFilled as default } diff --git a/src/IconVoiceSelectionOffSharpFilled.tsx b/src/IconVoiceSelectionOffSharpFilled.tsx new file mode 100644 index 000000000..8ce017e0a --- /dev/null +++ b/src/IconVoiceSelectionOffSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceSelectionOffSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceSelectionOffSharpFilled as default } diff --git a/src/IconVoiceSelectionOutlinedFilled.tsx b/src/IconVoiceSelectionOutlinedFilled.tsx new file mode 100644 index 000000000..c15bb5f1d --- /dev/null +++ b/src/IconVoiceSelectionOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceSelectionOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceSelectionOutlinedFilled as default } diff --git a/src/IconVoiceSelectionRoundedFilled.tsx b/src/IconVoiceSelectionRoundedFilled.tsx new file mode 100644 index 000000000..f0b959031 --- /dev/null +++ b/src/IconVoiceSelectionRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceSelectionRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceSelectionRoundedFilled as default } diff --git a/src/IconVoiceSelectionSharpFilled.tsx b/src/IconVoiceSelectionSharpFilled.tsx new file mode 100644 index 000000000..dd2c043c9 --- /dev/null +++ b/src/IconVoiceSelectionSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoiceSelectionSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoiceSelectionSharpFilled as default } diff --git a/src/IconVoicemailOutlinedFilled.tsx b/src/IconVoicemailOutlinedFilled.tsx new file mode 100644 index 000000000..15e78ad1c --- /dev/null +++ b/src/IconVoicemailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoicemailOutlinedFilled as default } diff --git a/src/IconVoicemailRoundedFilled.tsx b/src/IconVoicemailRoundedFilled.tsx new file mode 100644 index 000000000..eb20e1af1 --- /dev/null +++ b/src/IconVoicemailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoicemailRoundedFilled as default } diff --git a/src/IconVoicemailSharpFilled.tsx b/src/IconVoicemailSharpFilled.tsx new file mode 100644 index 000000000..0b9b68916 --- /dev/null +++ b/src/IconVoicemailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVoicemailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVoicemailSharpFilled as default } diff --git a/src/IconVolcanoOutlinedFilled.tsx b/src/IconVolcanoOutlinedFilled.tsx new file mode 100644 index 000000000..c6de30532 --- /dev/null +++ b/src/IconVolcanoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolcanoOutlinedFilled as default } diff --git a/src/IconVolcanoRoundedFilled.tsx b/src/IconVolcanoRoundedFilled.tsx new file mode 100644 index 000000000..bd246c423 --- /dev/null +++ b/src/IconVolcanoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolcanoRoundedFilled as default } diff --git a/src/IconVolcanoSharpFilled.tsx b/src/IconVolcanoSharpFilled.tsx new file mode 100644 index 000000000..06c34b094 --- /dev/null +++ b/src/IconVolcanoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolcanoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolcanoSharpFilled as default } diff --git a/src/IconVolumeDownAltOutlinedFilled.tsx b/src/IconVolumeDownAltOutlinedFilled.tsx new file mode 100644 index 000000000..1f89a5118 --- /dev/null +++ b/src/IconVolumeDownAltOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownAltOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownAltOutlinedFilled as default } diff --git a/src/IconVolumeDownAltRoundedFilled.tsx b/src/IconVolumeDownAltRoundedFilled.tsx new file mode 100644 index 000000000..8fd73bc41 --- /dev/null +++ b/src/IconVolumeDownAltRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownAltRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownAltRoundedFilled as default } diff --git a/src/IconVolumeDownAltSharpFilled.tsx b/src/IconVolumeDownAltSharpFilled.tsx new file mode 100644 index 000000000..2d50c6a4a --- /dev/null +++ b/src/IconVolumeDownAltSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownAltSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownAltSharpFilled as default } diff --git a/src/IconVolumeDownOutlinedFilled.tsx b/src/IconVolumeDownOutlinedFilled.tsx new file mode 100644 index 000000000..330db36e8 --- /dev/null +++ b/src/IconVolumeDownOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownOutlinedFilled as default } diff --git a/src/IconVolumeDownRoundedFilled.tsx b/src/IconVolumeDownRoundedFilled.tsx new file mode 100644 index 000000000..460b9ead0 --- /dev/null +++ b/src/IconVolumeDownRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownRoundedFilled as default } diff --git a/src/IconVolumeDownSharpFilled.tsx b/src/IconVolumeDownSharpFilled.tsx new file mode 100644 index 000000000..3444eb6cb --- /dev/null +++ b/src/IconVolumeDownSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeDownSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeDownSharpFilled as default } diff --git a/src/IconVolumeMuteOutlinedFilled.tsx b/src/IconVolumeMuteOutlinedFilled.tsx new file mode 100644 index 000000000..669eb0e5c --- /dev/null +++ b/src/IconVolumeMuteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeMuteOutlinedFilled as default } diff --git a/src/IconVolumeMuteRoundedFilled.tsx b/src/IconVolumeMuteRoundedFilled.tsx new file mode 100644 index 000000000..472486d00 --- /dev/null +++ b/src/IconVolumeMuteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeMuteRoundedFilled as default } diff --git a/src/IconVolumeMuteSharpFilled.tsx b/src/IconVolumeMuteSharpFilled.tsx new file mode 100644 index 000000000..dd8f93dd9 --- /dev/null +++ b/src/IconVolumeMuteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeMuteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeMuteSharpFilled as default } diff --git a/src/IconVolumeOffOutlinedFilled.tsx b/src/IconVolumeOffOutlinedFilled.tsx new file mode 100644 index 000000000..f12d7eedd --- /dev/null +++ b/src/IconVolumeOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeOffOutlinedFilled as default } diff --git a/src/IconVolumeOffRoundedFilled.tsx b/src/IconVolumeOffRoundedFilled.tsx new file mode 100644 index 000000000..dc96fbc17 --- /dev/null +++ b/src/IconVolumeOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeOffRoundedFilled as default } diff --git a/src/IconVolumeOffSharpFilled.tsx b/src/IconVolumeOffSharpFilled.tsx new file mode 100644 index 000000000..cc3a7329d --- /dev/null +++ b/src/IconVolumeOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeOffSharpFilled as default } diff --git a/src/IconVolumeUpOutlinedFilled.tsx b/src/IconVolumeUpOutlinedFilled.tsx new file mode 100644 index 000000000..52d6211ad --- /dev/null +++ b/src/IconVolumeUpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeUpOutlinedFilled as default } diff --git a/src/IconVolumeUpRoundedFilled.tsx b/src/IconVolumeUpRoundedFilled.tsx new file mode 100644 index 000000000..1125c300a --- /dev/null +++ b/src/IconVolumeUpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeUpRoundedFilled as default } diff --git a/src/IconVolumeUpSharpFilled.tsx b/src/IconVolumeUpSharpFilled.tsx new file mode 100644 index 000000000..1b25bd2de --- /dev/null +++ b/src/IconVolumeUpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolumeUpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVolumeUpSharpFilled as default } diff --git a/src/IconVolunteerActivismOutlinedFilled.tsx b/src/IconVolunteerActivismOutlinedFilled.tsx new file mode 100644 index 000000000..0eae1861b --- /dev/null +++ b/src/IconVolunteerActivismOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVolunteerActivismOutlinedFilled as default } diff --git a/src/IconVolunteerActivismRoundedFilled.tsx b/src/IconVolunteerActivismRoundedFilled.tsx new file mode 100644 index 000000000..0f35a3b9b --- /dev/null +++ b/src/IconVolunteerActivismRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVolunteerActivismRoundedFilled as default } diff --git a/src/IconVolunteerActivismSharpFilled.tsx b/src/IconVolunteerActivismSharpFilled.tsx new file mode 100644 index 000000000..735e2809f --- /dev/null +++ b/src/IconVolunteerActivismSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVolunteerActivismSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVolunteerActivismSharpFilled as default } diff --git a/src/IconVotingChipOutlinedFilled.tsx b/src/IconVotingChipOutlinedFilled.tsx new file mode 100644 index 000000000..dc24aa428 --- /dev/null +++ b/src/IconVotingChipOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVotingChipOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVotingChipOutlinedFilled as default } diff --git a/src/IconVotingChipRoundedFilled.tsx b/src/IconVotingChipRoundedFilled.tsx new file mode 100644 index 000000000..92e8c236c --- /dev/null +++ b/src/IconVotingChipRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVotingChipRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVotingChipRoundedFilled as default } diff --git a/src/IconVotingChipSharpFilled.tsx b/src/IconVotingChipSharpFilled.tsx new file mode 100644 index 000000000..646039cba --- /dev/null +++ b/src/IconVotingChipSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVotingChipSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVotingChipSharpFilled as default } diff --git a/src/IconVpnKeyAlertOutlinedFilled.tsx b/src/IconVpnKeyAlertOutlinedFilled.tsx new file mode 100644 index 000000000..bd3583b47 --- /dev/null +++ b/src/IconVpnKeyAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyAlertOutlinedFilled as default } diff --git a/src/IconVpnKeyAlertRoundedFilled.tsx b/src/IconVpnKeyAlertRoundedFilled.tsx new file mode 100644 index 000000000..a7f88ae74 --- /dev/null +++ b/src/IconVpnKeyAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyAlertRoundedFilled as default } diff --git a/src/IconVpnKeyAlertSharpFilled.tsx b/src/IconVpnKeyAlertSharpFilled.tsx new file mode 100644 index 000000000..dd1100f2c --- /dev/null +++ b/src/IconVpnKeyAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyAlertSharpFilled as default } diff --git a/src/IconVpnKeyOffOutlinedFilled.tsx b/src/IconVpnKeyOffOutlinedFilled.tsx new file mode 100644 index 000000000..74be1ef7d --- /dev/null +++ b/src/IconVpnKeyOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyOffOutlinedFilled as default } diff --git a/src/IconVpnKeyOffRoundedFilled.tsx b/src/IconVpnKeyOffRoundedFilled.tsx new file mode 100644 index 000000000..85cfb34af --- /dev/null +++ b/src/IconVpnKeyOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyOffRoundedFilled as default } diff --git a/src/IconVpnKeyOffSharpFilled.tsx b/src/IconVpnKeyOffSharpFilled.tsx new file mode 100644 index 000000000..ef3ef3c04 --- /dev/null +++ b/src/IconVpnKeyOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyOffSharpFilled as default } diff --git a/src/IconVpnKeyOutlinedFilled.tsx b/src/IconVpnKeyOutlinedFilled.tsx new file mode 100644 index 000000000..0e46ec503 --- /dev/null +++ b/src/IconVpnKeyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyOutlinedFilled as default } diff --git a/src/IconVpnKeyRoundedFilled.tsx b/src/IconVpnKeyRoundedFilled.tsx new file mode 100644 index 000000000..a8e019e52 --- /dev/null +++ b/src/IconVpnKeyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeyRoundedFilled as default } diff --git a/src/IconVpnKeySharpFilled.tsx b/src/IconVpnKeySharpFilled.tsx new file mode 100644 index 000000000..1633b0299 --- /dev/null +++ b/src/IconVpnKeySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnKeySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnKeySharpFilled as default } diff --git a/src/IconVpnLockOutlinedFilled.tsx b/src/IconVpnLockOutlinedFilled.tsx new file mode 100644 index 000000000..68eaa8e9d --- /dev/null +++ b/src/IconVpnLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnLockOutlinedFilled as default } diff --git a/src/IconVpnLockRoundedFilled.tsx b/src/IconVpnLockRoundedFilled.tsx new file mode 100644 index 000000000..5ef7b5640 --- /dev/null +++ b/src/IconVpnLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnLockRoundedFilled as default } diff --git a/src/IconVpnLockSharpFilled.tsx b/src/IconVpnLockSharpFilled.tsx new file mode 100644 index 000000000..bdd9f29a4 --- /dev/null +++ b/src/IconVpnLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVpnLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVpnLockSharpFilled as default } diff --git a/src/IconVr180Create2dOffOutlinedFilled.tsx b/src/IconVr180Create2dOffOutlinedFilled.tsx new file mode 100644 index 000000000..811d81481 --- /dev/null +++ b/src/IconVr180Create2dOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVr180Create2dOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVr180Create2dOffOutlinedFilled as default } diff --git a/src/IconVr180Create2dOffRoundedFilled.tsx b/src/IconVr180Create2dOffRoundedFilled.tsx new file mode 100644 index 000000000..bb49877e5 --- /dev/null +++ b/src/IconVr180Create2dOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVr180Create2dOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconVr180Create2dOffRoundedFilled as default } diff --git a/src/IconVr180Create2dOffSharpFilled.tsx b/src/IconVr180Create2dOffSharpFilled.tsx new file mode 100644 index 000000000..045216a8a --- /dev/null +++ b/src/IconVr180Create2dOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVr180Create2dOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVr180Create2dOffSharpFilled as default } diff --git a/src/IconVr180Create2dOutlinedFilled.tsx b/src/IconVr180Create2dOutlinedFilled.tsx new file mode 100644 index 000000000..7c86fb1fe --- /dev/null +++ b/src/IconVr180Create2dOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVr180Create2dOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVr180Create2dOutlinedFilled as default } diff --git a/src/IconVr180Create2dRoundedFilled.tsx b/src/IconVr180Create2dRoundedFilled.tsx new file mode 100644 index 000000000..a835d4b83 --- /dev/null +++ b/src/IconVr180Create2dRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVr180Create2dRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVr180Create2dRoundedFilled as default } diff --git a/src/IconVr180Create2dSharpFilled.tsx b/src/IconVr180Create2dSharpFilled.tsx new file mode 100644 index 000000000..0a0c179d1 --- /dev/null +++ b/src/IconVr180Create2dSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVr180Create2dSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVr180Create2dSharpFilled as default } diff --git a/src/IconVrpanoOutlinedFilled.tsx b/src/IconVrpanoOutlinedFilled.tsx new file mode 100644 index 000000000..6e2eb54b8 --- /dev/null +++ b/src/IconVrpanoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVrpanoOutlinedFilled as default } diff --git a/src/IconVrpanoRoundedFilled.tsx b/src/IconVrpanoRoundedFilled.tsx new file mode 100644 index 000000000..7e8bc4b98 --- /dev/null +++ b/src/IconVrpanoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVrpanoRoundedFilled as default } diff --git a/src/IconVrpanoSharpFilled.tsx b/src/IconVrpanoSharpFilled.tsx new file mode 100644 index 000000000..d740ff61f --- /dev/null +++ b/src/IconVrpanoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconVrpanoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconVrpanoSharpFilled as default } diff --git a/src/IconWallArtOutlinedFilled.tsx b/src/IconWallArtOutlinedFilled.tsx new file mode 100644 index 000000000..1e0706d68 --- /dev/null +++ b/src/IconWallArtOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallArtOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallArtOutlinedFilled as default } diff --git a/src/IconWallArtRoundedFilled.tsx b/src/IconWallArtRoundedFilled.tsx new file mode 100644 index 000000000..d58b2db80 --- /dev/null +++ b/src/IconWallArtRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallArtRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallArtRoundedFilled as default } diff --git a/src/IconWallArtSharpFilled.tsx b/src/IconWallArtSharpFilled.tsx new file mode 100644 index 000000000..ae355d5dd --- /dev/null +++ b/src/IconWallArtSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallArtSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallArtSharpFilled as default } diff --git a/src/IconWallLampOutlinedFilled.tsx b/src/IconWallLampOutlinedFilled.tsx new file mode 100644 index 000000000..4e067ff2e --- /dev/null +++ b/src/IconWallLampOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallLampOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallLampOutlinedFilled as default } diff --git a/src/IconWallLampRoundedFilled.tsx b/src/IconWallLampRoundedFilled.tsx new file mode 100644 index 000000000..154f385c7 --- /dev/null +++ b/src/IconWallLampRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallLampRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallLampRoundedFilled as default } diff --git a/src/IconWallLampSharpFilled.tsx b/src/IconWallLampSharpFilled.tsx new file mode 100644 index 000000000..f7181379c --- /dev/null +++ b/src/IconWallLampSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallLampSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallLampSharpFilled as default } diff --git a/src/IconWalletOutlinedFilled.tsx b/src/IconWalletOutlinedFilled.tsx new file mode 100644 index 000000000..1c7b620d8 --- /dev/null +++ b/src/IconWalletOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWalletOutlinedFilled as default } diff --git a/src/IconWalletRoundedFilled.tsx b/src/IconWalletRoundedFilled.tsx new file mode 100644 index 000000000..9cc5fcc93 --- /dev/null +++ b/src/IconWalletRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWalletRoundedFilled as default } diff --git a/src/IconWalletSharpFilled.tsx b/src/IconWalletSharpFilled.tsx new file mode 100644 index 000000000..65a8b2c16 --- /dev/null +++ b/src/IconWalletSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWalletSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWalletSharpFilled as default } diff --git a/src/IconWallpaperOutlinedFilled.tsx b/src/IconWallpaperOutlinedFilled.tsx new file mode 100644 index 000000000..53424b0d8 --- /dev/null +++ b/src/IconWallpaperOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallpaperOutlinedFilled as default } diff --git a/src/IconWallpaperRoundedFilled.tsx b/src/IconWallpaperRoundedFilled.tsx new file mode 100644 index 000000000..872546945 --- /dev/null +++ b/src/IconWallpaperRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallpaperRoundedFilled as default } diff --git a/src/IconWallpaperSharpFilled.tsx b/src/IconWallpaperSharpFilled.tsx new file mode 100644 index 000000000..69a0d58f7 --- /dev/null +++ b/src/IconWallpaperSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWallpaperSharpFilled as default } diff --git a/src/IconWallpaperSlideshowOutlinedFilled.tsx b/src/IconWallpaperSlideshowOutlinedFilled.tsx new file mode 100644 index 000000000..4ca9118c3 --- /dev/null +++ b/src/IconWallpaperSlideshowOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperSlideshowOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWallpaperSlideshowOutlinedFilled as default } diff --git a/src/IconWallpaperSlideshowRoundedFilled.tsx b/src/IconWallpaperSlideshowRoundedFilled.tsx new file mode 100644 index 000000000..12e99a83e --- /dev/null +++ b/src/IconWallpaperSlideshowRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperSlideshowRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWallpaperSlideshowRoundedFilled as default } diff --git a/src/IconWallpaperSlideshowSharpFilled.tsx b/src/IconWallpaperSlideshowSharpFilled.tsx new file mode 100644 index 000000000..e7ca77454 --- /dev/null +++ b/src/IconWallpaperSlideshowSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWallpaperSlideshowSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWallpaperSlideshowSharpFilled as default } diff --git a/src/IconWardOutlinedFilled.tsx b/src/IconWardOutlinedFilled.tsx new file mode 100644 index 000000000..3e84e79dc --- /dev/null +++ b/src/IconWardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWardOutlinedFilled as default } diff --git a/src/IconWardRoundedFilled.tsx b/src/IconWardRoundedFilled.tsx new file mode 100644 index 000000000..a6fb65dbd --- /dev/null +++ b/src/IconWardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWardRoundedFilled as default } diff --git a/src/IconWardSharpFilled.tsx b/src/IconWardSharpFilled.tsx new file mode 100644 index 000000000..7562f25c4 --- /dev/null +++ b/src/IconWardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWardSharpFilled as default } diff --git a/src/IconWarehouseOutlinedFilled.tsx b/src/IconWarehouseOutlinedFilled.tsx new file mode 100644 index 000000000..af3693b24 --- /dev/null +++ b/src/IconWarehouseOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarehouseOutlinedFilled as default } diff --git a/src/IconWarehouseRoundedFilled.tsx b/src/IconWarehouseRoundedFilled.tsx new file mode 100644 index 000000000..ded3c4648 --- /dev/null +++ b/src/IconWarehouseRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarehouseRoundedFilled as default } diff --git a/src/IconWarehouseSharpFilled.tsx b/src/IconWarehouseSharpFilled.tsx new file mode 100644 index 000000000..f627a8af5 --- /dev/null +++ b/src/IconWarehouseSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarehouseSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarehouseSharpFilled as default } diff --git a/src/IconWarningOffOutlinedFilled.tsx b/src/IconWarningOffOutlinedFilled.tsx new file mode 100644 index 000000000..2568a66eb --- /dev/null +++ b/src/IconWarningOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningOffOutlinedFilled as default } diff --git a/src/IconWarningOffRoundedFilled.tsx b/src/IconWarningOffRoundedFilled.tsx new file mode 100644 index 000000000..316801a79 --- /dev/null +++ b/src/IconWarningOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningOffRoundedFilled as default } diff --git a/src/IconWarningOffSharpFilled.tsx b/src/IconWarningOffSharpFilled.tsx new file mode 100644 index 000000000..b621fecec --- /dev/null +++ b/src/IconWarningOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningOffSharpFilled as default } diff --git a/src/IconWarningOutlinedFilled.tsx b/src/IconWarningOutlinedFilled.tsx new file mode 100644 index 000000000..5bbbb6c9f --- /dev/null +++ b/src/IconWarningOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningOutlinedFilled as default } diff --git a/src/IconWarningRoundedFilled.tsx b/src/IconWarningRoundedFilled.tsx new file mode 100644 index 000000000..331edab8d --- /dev/null +++ b/src/IconWarningRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningRoundedFilled as default } diff --git a/src/IconWarningSharpFilled.tsx b/src/IconWarningSharpFilled.tsx new file mode 100644 index 000000000..6ba4e25c9 --- /dev/null +++ b/src/IconWarningSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWarningSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWarningSharpFilled as default } diff --git a/src/IconWashOutlinedFilled.tsx b/src/IconWashOutlinedFilled.tsx new file mode 100644 index 000000000..307b5fbc9 --- /dev/null +++ b/src/IconWashOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWashOutlinedFilled as default } diff --git a/src/IconWashRoundedFilled.tsx b/src/IconWashRoundedFilled.tsx new file mode 100644 index 000000000..28e9465cf --- /dev/null +++ b/src/IconWashRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWashRoundedFilled as default } diff --git a/src/IconWashSharpFilled.tsx b/src/IconWashSharpFilled.tsx new file mode 100644 index 000000000..9468778f6 --- /dev/null +++ b/src/IconWashSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWashSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWashSharpFilled as default } diff --git a/src/IconWatchButtonPressOutlinedFilled.tsx b/src/IconWatchButtonPressOutlinedFilled.tsx new file mode 100644 index 000000000..49d5fe93e --- /dev/null +++ b/src/IconWatchButtonPressOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchButtonPressOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchButtonPressOutlinedFilled as default } diff --git a/src/IconWatchButtonPressRoundedFilled.tsx b/src/IconWatchButtonPressRoundedFilled.tsx new file mode 100644 index 000000000..cd4ea9b20 --- /dev/null +++ b/src/IconWatchButtonPressRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchButtonPressRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchButtonPressRoundedFilled as default } diff --git a/src/IconWatchButtonPressSharpFilled.tsx b/src/IconWatchButtonPressSharpFilled.tsx new file mode 100644 index 000000000..7146f5bee --- /dev/null +++ b/src/IconWatchButtonPressSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchButtonPressSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchButtonPressSharpFilled as default } diff --git a/src/IconWatchCheckOutlinedFilled.tsx b/src/IconWatchCheckOutlinedFilled.tsx new file mode 100644 index 000000000..e4c939356 --- /dev/null +++ b/src/IconWatchCheckOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchCheckOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchCheckOutlinedFilled as default } diff --git a/src/IconWatchCheckRoundedFilled.tsx b/src/IconWatchCheckRoundedFilled.tsx new file mode 100644 index 000000000..ba30a3175 --- /dev/null +++ b/src/IconWatchCheckRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchCheckRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchCheckRoundedFilled as default } diff --git a/src/IconWatchCheckSharpFilled.tsx b/src/IconWatchCheckSharpFilled.tsx new file mode 100644 index 000000000..b326dea9e --- /dev/null +++ b/src/IconWatchCheckSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchCheckSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchCheckSharpFilled as default } diff --git a/src/IconWatchOffOutlinedFilled.tsx b/src/IconWatchOffOutlinedFilled.tsx new file mode 100644 index 000000000..2a3e9a7d8 --- /dev/null +++ b/src/IconWatchOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchOffOutlinedFilled as default } diff --git a/src/IconWatchOffRoundedFilled.tsx b/src/IconWatchOffRoundedFilled.tsx new file mode 100644 index 000000000..b81ad5161 --- /dev/null +++ b/src/IconWatchOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchOffRoundedFilled as default } diff --git a/src/IconWatchOffSharpFilled.tsx b/src/IconWatchOffSharpFilled.tsx new file mode 100644 index 000000000..d80cb4fbf --- /dev/null +++ b/src/IconWatchOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchOffSharpFilled as default } diff --git a/src/IconWatchOutlinedFilled.tsx b/src/IconWatchOutlinedFilled.tsx new file mode 100644 index 000000000..a2df84cdf --- /dev/null +++ b/src/IconWatchOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchOutlinedFilled as default } diff --git a/src/IconWatchRoundedFilled.tsx b/src/IconWatchRoundedFilled.tsx new file mode 100644 index 000000000..883d22e9c --- /dev/null +++ b/src/IconWatchRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchRoundedFilled as default } diff --git a/src/IconWatchScreentimeOutlinedFilled.tsx b/src/IconWatchScreentimeOutlinedFilled.tsx new file mode 100644 index 000000000..7dea321b5 --- /dev/null +++ b/src/IconWatchScreentimeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchScreentimeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchScreentimeOutlinedFilled as default } diff --git a/src/IconWatchScreentimeRoundedFilled.tsx b/src/IconWatchScreentimeRoundedFilled.tsx new file mode 100644 index 000000000..ea98fcbf3 --- /dev/null +++ b/src/IconWatchScreentimeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchScreentimeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchScreentimeRoundedFilled as default } diff --git a/src/IconWatchScreentimeSharpFilled.tsx b/src/IconWatchScreentimeSharpFilled.tsx new file mode 100644 index 000000000..fb462ea7e --- /dev/null +++ b/src/IconWatchScreentimeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchScreentimeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchScreentimeSharpFilled as default } diff --git a/src/IconWatchSharpFilled.tsx b/src/IconWatchSharpFilled.tsx new file mode 100644 index 000000000..fb176704b --- /dev/null +++ b/src/IconWatchSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchSharpFilled as default } diff --git a/src/IconWatchVibrationOutlinedFilled.tsx b/src/IconWatchVibrationOutlinedFilled.tsx new file mode 100644 index 000000000..7a1643441 --- /dev/null +++ b/src/IconWatchVibrationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchVibrationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchVibrationOutlinedFilled as default } diff --git a/src/IconWatchVibrationRoundedFilled.tsx b/src/IconWatchVibrationRoundedFilled.tsx new file mode 100644 index 000000000..4529403be --- /dev/null +++ b/src/IconWatchVibrationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchVibrationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchVibrationRoundedFilled as default } diff --git a/src/IconWatchVibrationSharpFilled.tsx b/src/IconWatchVibrationSharpFilled.tsx new file mode 100644 index 000000000..0f1cf6d7a --- /dev/null +++ b/src/IconWatchVibrationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchVibrationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchVibrationSharpFilled as default } diff --git a/src/IconWatchWakeOutlinedFilled.tsx b/src/IconWatchWakeOutlinedFilled.tsx new file mode 100644 index 000000000..e4a385d8b --- /dev/null +++ b/src/IconWatchWakeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchWakeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchWakeOutlinedFilled as default } diff --git a/src/IconWatchWakeRoundedFilled.tsx b/src/IconWatchWakeRoundedFilled.tsx new file mode 100644 index 000000000..f8c553b37 --- /dev/null +++ b/src/IconWatchWakeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchWakeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchWakeRoundedFilled as default } diff --git a/src/IconWatchWakeSharpFilled.tsx b/src/IconWatchWakeSharpFilled.tsx new file mode 100644 index 000000000..d8deb91ab --- /dev/null +++ b/src/IconWatchWakeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWatchWakeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWatchWakeSharpFilled as default } diff --git a/src/IconWaterBottleLargeOutlinedFilled.tsx b/src/IconWaterBottleLargeOutlinedFilled.tsx new file mode 100644 index 000000000..730602823 --- /dev/null +++ b/src/IconWaterBottleLargeOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterBottleLargeOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterBottleLargeOutlinedFilled as default } diff --git a/src/IconWaterBottleLargeRoundedFilled.tsx b/src/IconWaterBottleLargeRoundedFilled.tsx new file mode 100644 index 000000000..ec15c9311 --- /dev/null +++ b/src/IconWaterBottleLargeRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterBottleLargeRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterBottleLargeRoundedFilled as default } diff --git a/src/IconWaterBottleLargeSharpFilled.tsx b/src/IconWaterBottleLargeSharpFilled.tsx new file mode 100644 index 000000000..5ce16f4a3 --- /dev/null +++ b/src/IconWaterBottleLargeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterBottleLargeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterBottleLargeSharpFilled as default } diff --git a/src/IconWaterBottleOutlinedFilled.tsx b/src/IconWaterBottleOutlinedFilled.tsx new file mode 100644 index 000000000..bf3a4a0c5 --- /dev/null +++ b/src/IconWaterBottleOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterBottleOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterBottleOutlinedFilled as default } diff --git a/src/IconWaterBottleRoundedFilled.tsx b/src/IconWaterBottleRoundedFilled.tsx new file mode 100644 index 000000000..8141fd8d4 --- /dev/null +++ b/src/IconWaterBottleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterBottleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterBottleRoundedFilled as default } diff --git a/src/IconWaterBottleSharpFilled.tsx b/src/IconWaterBottleSharpFilled.tsx new file mode 100644 index 000000000..13b37e31c --- /dev/null +++ b/src/IconWaterBottleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterBottleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterBottleSharpFilled as default } diff --git a/src/IconWaterDamageOutlinedFilled.tsx b/src/IconWaterDamageOutlinedFilled.tsx new file mode 100644 index 000000000..cfda9bc67 --- /dev/null +++ b/src/IconWaterDamageOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDamageOutlinedFilled as default } diff --git a/src/IconWaterDamageRoundedFilled.tsx b/src/IconWaterDamageRoundedFilled.tsx new file mode 100644 index 000000000..c577187f5 --- /dev/null +++ b/src/IconWaterDamageRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDamageRoundedFilled as default } diff --git a/src/IconWaterDamageSharpFilled.tsx b/src/IconWaterDamageSharpFilled.tsx new file mode 100644 index 000000000..db0bd9a98 --- /dev/null +++ b/src/IconWaterDamageSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDamageSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDamageSharpFilled as default } diff --git a/src/IconWaterDoOutlinedFilled.tsx b/src/IconWaterDoOutlinedFilled.tsx new file mode 100644 index 000000000..54229b171 --- /dev/null +++ b/src/IconWaterDoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDoOutlinedFilled as default } diff --git a/src/IconWaterDoRoundedFilled.tsx b/src/IconWaterDoRoundedFilled.tsx new file mode 100644 index 000000000..f720fb806 --- /dev/null +++ b/src/IconWaterDoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDoRoundedFilled as default } diff --git a/src/IconWaterDoSharpFilled.tsx b/src/IconWaterDoSharpFilled.tsx new file mode 100644 index 000000000..30af61d32 --- /dev/null +++ b/src/IconWaterDoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDoSharpFilled as default } diff --git a/src/IconWaterDropOutlinedFilled.tsx b/src/IconWaterDropOutlinedFilled.tsx new file mode 100644 index 000000000..6d35197c4 --- /dev/null +++ b/src/IconWaterDropOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDropOutlinedFilled as default } diff --git a/src/IconWaterDropRoundedFilled.tsx b/src/IconWaterDropRoundedFilled.tsx new file mode 100644 index 000000000..30f105f21 --- /dev/null +++ b/src/IconWaterDropRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDropRoundedFilled as default } diff --git a/src/IconWaterDropSharpFilled.tsx b/src/IconWaterDropSharpFilled.tsx new file mode 100644 index 000000000..9d660d14b --- /dev/null +++ b/src/IconWaterDropSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterDropSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterDropSharpFilled as default } diff --git a/src/IconWaterEcOutlinedFilled.tsx b/src/IconWaterEcOutlinedFilled.tsx new file mode 100644 index 000000000..db0036dae --- /dev/null +++ b/src/IconWaterEcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterEcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterEcOutlinedFilled as default } diff --git a/src/IconWaterEcRoundedFilled.tsx b/src/IconWaterEcRoundedFilled.tsx new file mode 100644 index 000000000..3786a3bd5 --- /dev/null +++ b/src/IconWaterEcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterEcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterEcRoundedFilled as default } diff --git a/src/IconWaterEcSharpFilled.tsx b/src/IconWaterEcSharpFilled.tsx new file mode 100644 index 000000000..8ad86f327 --- /dev/null +++ b/src/IconWaterEcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterEcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterEcSharpFilled as default } diff --git a/src/IconWaterFullOutlinedFilled.tsx b/src/IconWaterFullOutlinedFilled.tsx new file mode 100644 index 000000000..f572ffe83 --- /dev/null +++ b/src/IconWaterFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterFullOutlinedFilled as default } diff --git a/src/IconWaterFullRoundedFilled.tsx b/src/IconWaterFullRoundedFilled.tsx new file mode 100644 index 000000000..c8b27e872 --- /dev/null +++ b/src/IconWaterFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterFullRoundedFilled as default } diff --git a/src/IconWaterFullSharpFilled.tsx b/src/IconWaterFullSharpFilled.tsx new file mode 100644 index 000000000..15ae20078 --- /dev/null +++ b/src/IconWaterFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterFullSharpFilled as default } diff --git a/src/IconWaterHeaterOutlinedFilled.tsx b/src/IconWaterHeaterOutlinedFilled.tsx new file mode 100644 index 000000000..dabee2020 --- /dev/null +++ b/src/IconWaterHeaterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterHeaterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterHeaterOutlinedFilled as default } diff --git a/src/IconWaterHeaterRoundedFilled.tsx b/src/IconWaterHeaterRoundedFilled.tsx new file mode 100644 index 000000000..570283167 --- /dev/null +++ b/src/IconWaterHeaterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterHeaterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterHeaterRoundedFilled as default } diff --git a/src/IconWaterHeaterSharpFilled.tsx b/src/IconWaterHeaterSharpFilled.tsx new file mode 100644 index 000000000..bbaf1e33b --- /dev/null +++ b/src/IconWaterHeaterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterHeaterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterHeaterSharpFilled as default } diff --git a/src/IconWaterLockOutlinedFilled.tsx b/src/IconWaterLockOutlinedFilled.tsx new file mode 100644 index 000000000..274f98a9a --- /dev/null +++ b/src/IconWaterLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLockOutlinedFilled as default } diff --git a/src/IconWaterLockRoundedFilled.tsx b/src/IconWaterLockRoundedFilled.tsx new file mode 100644 index 000000000..1d8884038 --- /dev/null +++ b/src/IconWaterLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLockRoundedFilled as default } diff --git a/src/IconWaterLockSharpFilled.tsx b/src/IconWaterLockSharpFilled.tsx new file mode 100644 index 000000000..d41239fe8 --- /dev/null +++ b/src/IconWaterLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLockSharpFilled as default } diff --git a/src/IconWaterLossOutlinedFilled.tsx b/src/IconWaterLossOutlinedFilled.tsx new file mode 100644 index 000000000..239390f6f --- /dev/null +++ b/src/IconWaterLossOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLossOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLossOutlinedFilled as default } diff --git a/src/IconWaterLossRoundedFilled.tsx b/src/IconWaterLossRoundedFilled.tsx new file mode 100644 index 000000000..721f94987 --- /dev/null +++ b/src/IconWaterLossRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLossRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLossRoundedFilled as default } diff --git a/src/IconWaterLossSharpFilled.tsx b/src/IconWaterLossSharpFilled.tsx new file mode 100644 index 000000000..3c7c46f2d --- /dev/null +++ b/src/IconWaterLossSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLossSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLossSharpFilled as default } diff --git a/src/IconWaterLuxOutlinedFilled.tsx b/src/IconWaterLuxOutlinedFilled.tsx new file mode 100644 index 000000000..f722739b3 --- /dev/null +++ b/src/IconWaterLuxOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLuxOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLuxOutlinedFilled as default } diff --git a/src/IconWaterLuxRoundedFilled.tsx b/src/IconWaterLuxRoundedFilled.tsx new file mode 100644 index 000000000..81c79d8b0 --- /dev/null +++ b/src/IconWaterLuxRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLuxRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLuxRoundedFilled as default } diff --git a/src/IconWaterLuxSharpFilled.tsx b/src/IconWaterLuxSharpFilled.tsx new file mode 100644 index 000000000..db2334d42 --- /dev/null +++ b/src/IconWaterLuxSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterLuxSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterLuxSharpFilled as default } diff --git a/src/IconWaterMediumOutlinedFilled.tsx b/src/IconWaterMediumOutlinedFilled.tsx new file mode 100644 index 000000000..5215fe872 --- /dev/null +++ b/src/IconWaterMediumOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterMediumOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterMediumOutlinedFilled as default } diff --git a/src/IconWaterMediumRoundedFilled.tsx b/src/IconWaterMediumRoundedFilled.tsx new file mode 100644 index 000000000..f14c1f0fe --- /dev/null +++ b/src/IconWaterMediumRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterMediumRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterMediumRoundedFilled as default } diff --git a/src/IconWaterMediumSharpFilled.tsx b/src/IconWaterMediumSharpFilled.tsx new file mode 100644 index 000000000..4549918b3 --- /dev/null +++ b/src/IconWaterMediumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterMediumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterMediumSharpFilled as default } diff --git a/src/IconWaterOrpOutlinedFilled.tsx b/src/IconWaterOrpOutlinedFilled.tsx new file mode 100644 index 000000000..3d9abf6cd --- /dev/null +++ b/src/IconWaterOrpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterOrpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterOrpOutlinedFilled as default } diff --git a/src/IconWaterOrpRoundedFilled.tsx b/src/IconWaterOrpRoundedFilled.tsx new file mode 100644 index 000000000..fe329ea75 --- /dev/null +++ b/src/IconWaterOrpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterOrpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterOrpRoundedFilled as default } diff --git a/src/IconWaterOrpSharpFilled.tsx b/src/IconWaterOrpSharpFilled.tsx new file mode 100644 index 000000000..5b43f39ca --- /dev/null +++ b/src/IconWaterOrpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterOrpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterOrpSharpFilled as default } diff --git a/src/IconWaterOutlinedFilled.tsx b/src/IconWaterOutlinedFilled.tsx new file mode 100644 index 000000000..835920be6 --- /dev/null +++ b/src/IconWaterOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterOutlinedFilled as default } diff --git a/src/IconWaterPhOutlinedFilled.tsx b/src/IconWaterPhOutlinedFilled.tsx new file mode 100644 index 000000000..09e49933c --- /dev/null +++ b/src/IconWaterPhOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterPhOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterPhOutlinedFilled as default } diff --git a/src/IconWaterPhRoundedFilled.tsx b/src/IconWaterPhRoundedFilled.tsx new file mode 100644 index 000000000..e52f0a519 --- /dev/null +++ b/src/IconWaterPhRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterPhRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterPhRoundedFilled as default } diff --git a/src/IconWaterPhSharpFilled.tsx b/src/IconWaterPhSharpFilled.tsx new file mode 100644 index 000000000..044f65374 --- /dev/null +++ b/src/IconWaterPhSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterPhSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterPhSharpFilled as default } diff --git a/src/IconWaterPumpOutlinedFilled.tsx b/src/IconWaterPumpOutlinedFilled.tsx new file mode 100644 index 000000000..ac5dd15a1 --- /dev/null +++ b/src/IconWaterPumpOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterPumpOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterPumpOutlinedFilled as default } diff --git a/src/IconWaterPumpRoundedFilled.tsx b/src/IconWaterPumpRoundedFilled.tsx new file mode 100644 index 000000000..7a12c078f --- /dev/null +++ b/src/IconWaterPumpRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterPumpRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterPumpRoundedFilled as default } diff --git a/src/IconWaterPumpSharpFilled.tsx b/src/IconWaterPumpSharpFilled.tsx new file mode 100644 index 000000000..b7a959435 --- /dev/null +++ b/src/IconWaterPumpSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterPumpSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterPumpSharpFilled as default } diff --git a/src/IconWaterRoundedFilled.tsx b/src/IconWaterRoundedFilled.tsx new file mode 100644 index 000000000..43b0c7208 --- /dev/null +++ b/src/IconWaterRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterRoundedFilled as default } diff --git a/src/IconWaterSharpFilled.tsx b/src/IconWaterSharpFilled.tsx new file mode 100644 index 000000000..8cf2af468 --- /dev/null +++ b/src/IconWaterSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterSharpFilled as default } diff --git a/src/IconWaterVocOutlinedFilled.tsx b/src/IconWaterVocOutlinedFilled.tsx new file mode 100644 index 000000000..a951883a2 --- /dev/null +++ b/src/IconWaterVocOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterVocOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterVocOutlinedFilled as default } diff --git a/src/IconWaterVocRoundedFilled.tsx b/src/IconWaterVocRoundedFilled.tsx new file mode 100644 index 000000000..2d74213cc --- /dev/null +++ b/src/IconWaterVocRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterVocRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterVocRoundedFilled as default } diff --git a/src/IconWaterVocSharpFilled.tsx b/src/IconWaterVocSharpFilled.tsx new file mode 100644 index 000000000..990c27c12 --- /dev/null +++ b/src/IconWaterVocSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterVocSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterVocSharpFilled as default } diff --git a/src/IconWaterfallChartOutlinedFilled.tsx b/src/IconWaterfallChartOutlinedFilled.tsx new file mode 100644 index 000000000..7f9e608aa --- /dev/null +++ b/src/IconWaterfallChartOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterfallChartOutlinedFilled as default } diff --git a/src/IconWaterfallChartRoundedFilled.tsx b/src/IconWaterfallChartRoundedFilled.tsx new file mode 100644 index 000000000..7fdbe8e3a --- /dev/null +++ b/src/IconWaterfallChartRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterfallChartRoundedFilled as default } diff --git a/src/IconWaterfallChartSharpFilled.tsx b/src/IconWaterfallChartSharpFilled.tsx new file mode 100644 index 000000000..8265e8664 --- /dev/null +++ b/src/IconWaterfallChartSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWaterfallChartSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWaterfallChartSharpFilled as default } diff --git a/src/IconWavesOutlinedFilled.tsx b/src/IconWavesOutlinedFilled.tsx new file mode 100644 index 000000000..a6f0c37b8 --- /dev/null +++ b/src/IconWavesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWavesOutlinedFilled as default } diff --git a/src/IconWavesRoundedFilled.tsx b/src/IconWavesRoundedFilled.tsx new file mode 100644 index 000000000..9cddbf2b7 --- /dev/null +++ b/src/IconWavesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWavesRoundedFilled as default } diff --git a/src/IconWavesSharpFilled.tsx b/src/IconWavesSharpFilled.tsx new file mode 100644 index 000000000..14ce2be02 --- /dev/null +++ b/src/IconWavesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWavesSharpFilled as default } diff --git a/src/IconWavingHandOutlinedFilled.tsx b/src/IconWavingHandOutlinedFilled.tsx new file mode 100644 index 000000000..a99a0ce97 --- /dev/null +++ b/src/IconWavingHandOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWavingHandOutlinedFilled as default } diff --git a/src/IconWavingHandRoundedFilled.tsx b/src/IconWavingHandRoundedFilled.tsx new file mode 100644 index 000000000..69ae53d34 --- /dev/null +++ b/src/IconWavingHandRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWavingHandRoundedFilled as default } diff --git a/src/IconWavingHandSharpFilled.tsx b/src/IconWavingHandSharpFilled.tsx new file mode 100644 index 000000000..b615c5ed3 --- /dev/null +++ b/src/IconWavingHandSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWavingHandSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWavingHandSharpFilled as default } diff --git a/src/IconWbAutoOutlinedFilled.tsx b/src/IconWbAutoOutlinedFilled.tsx new file mode 100644 index 000000000..e7b9dcd67 --- /dev/null +++ b/src/IconWbAutoOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbAutoOutlinedFilled as default } diff --git a/src/IconWbAutoRoundedFilled.tsx b/src/IconWbAutoRoundedFilled.tsx new file mode 100644 index 000000000..b70502c93 --- /dev/null +++ b/src/IconWbAutoRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbAutoRoundedFilled as default } diff --git a/src/IconWbAutoSharpFilled.tsx b/src/IconWbAutoSharpFilled.tsx new file mode 100644 index 000000000..067a79c6f --- /dev/null +++ b/src/IconWbAutoSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbAutoSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbAutoSharpFilled as default } diff --git a/src/IconWbIncandescentOutlinedFilled.tsx b/src/IconWbIncandescentOutlinedFilled.tsx new file mode 100644 index 000000000..c2739917c --- /dev/null +++ b/src/IconWbIncandescentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWbIncandescentOutlinedFilled as default } diff --git a/src/IconWbIncandescentRoundedFilled.tsx b/src/IconWbIncandescentRoundedFilled.tsx new file mode 100644 index 000000000..bca56efd9 --- /dev/null +++ b/src/IconWbIncandescentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbIncandescentRoundedFilled as default } diff --git a/src/IconWbIncandescentSharpFilled.tsx b/src/IconWbIncandescentSharpFilled.tsx new file mode 100644 index 000000000..b00990c73 --- /dev/null +++ b/src/IconWbIncandescentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIncandescentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbIncandescentSharpFilled as default } diff --git a/src/IconWbIridescentOutlinedFilled.tsx b/src/IconWbIridescentOutlinedFilled.tsx new file mode 100644 index 000000000..f1a475136 --- /dev/null +++ b/src/IconWbIridescentOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbIridescentOutlinedFilled as default } diff --git a/src/IconWbIridescentRoundedFilled.tsx b/src/IconWbIridescentRoundedFilled.tsx new file mode 100644 index 000000000..17526292b --- /dev/null +++ b/src/IconWbIridescentRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbIridescentRoundedFilled as default } diff --git a/src/IconWbIridescentSharpFilled.tsx b/src/IconWbIridescentSharpFilled.tsx new file mode 100644 index 000000000..f08628ca9 --- /dev/null +++ b/src/IconWbIridescentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbIridescentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbIridescentSharpFilled as default } diff --git a/src/IconWbShadeOutlinedFilled.tsx b/src/IconWbShadeOutlinedFilled.tsx new file mode 100644 index 000000000..94560e722 --- /dev/null +++ b/src/IconWbShadeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbShadeOutlinedFilled as default } diff --git a/src/IconWbShadeRoundedFilled.tsx b/src/IconWbShadeRoundedFilled.tsx new file mode 100644 index 000000000..bf9244505 --- /dev/null +++ b/src/IconWbShadeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbShadeRoundedFilled as default } diff --git a/src/IconWbShadeSharpFilled.tsx b/src/IconWbShadeSharpFilled.tsx new file mode 100644 index 000000000..38e3c35e0 --- /dev/null +++ b/src/IconWbShadeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbShadeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbShadeSharpFilled as default } diff --git a/src/IconWbSunnyOutlinedFilled.tsx b/src/IconWbSunnyOutlinedFilled.tsx new file mode 100644 index 000000000..599d5b58d --- /dev/null +++ b/src/IconWbSunnyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbSunnyOutlinedFilled as default } diff --git a/src/IconWbSunnyRoundedFilled.tsx b/src/IconWbSunnyRoundedFilled.tsx new file mode 100644 index 000000000..fed4b655b --- /dev/null +++ b/src/IconWbSunnyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbSunnyRoundedFilled as default } diff --git a/src/IconWbSunnySharpFilled.tsx b/src/IconWbSunnySharpFilled.tsx new file mode 100644 index 000000000..191927700 --- /dev/null +++ b/src/IconWbSunnySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbSunnySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbSunnySharpFilled as default } diff --git a/src/IconWbTwilightOutlinedFilled.tsx b/src/IconWbTwilightOutlinedFilled.tsx new file mode 100644 index 000000000..728b3a264 --- /dev/null +++ b/src/IconWbTwilightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbTwilightOutlinedFilled as default } diff --git a/src/IconWbTwilightRoundedFilled.tsx b/src/IconWbTwilightRoundedFilled.tsx new file mode 100644 index 000000000..21518e802 --- /dev/null +++ b/src/IconWbTwilightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbTwilightRoundedFilled as default } diff --git a/src/IconWbTwilightSharpFilled.tsx b/src/IconWbTwilightSharpFilled.tsx new file mode 100644 index 000000000..8b190af28 --- /dev/null +++ b/src/IconWbTwilightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWbTwilightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWbTwilightSharpFilled as default } diff --git a/src/IconWcOutlinedFilled.tsx b/src/IconWcOutlinedFilled.tsx new file mode 100644 index 000000000..244161fa3 --- /dev/null +++ b/src/IconWcOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWcOutlinedFilled as default } diff --git a/src/IconWcRoundedFilled.tsx b/src/IconWcRoundedFilled.tsx new file mode 100644 index 000000000..8feb6933c --- /dev/null +++ b/src/IconWcRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWcRoundedFilled as default } diff --git a/src/IconWcSharpFilled.tsx b/src/IconWcSharpFilled.tsx new file mode 100644 index 000000000..8b637af1a --- /dev/null +++ b/src/IconWcSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWcSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWcSharpFilled as default } diff --git a/src/IconWeatherHailOutlinedFilled.tsx b/src/IconWeatherHailOutlinedFilled.tsx new file mode 100644 index 000000000..664436410 --- /dev/null +++ b/src/IconWeatherHailOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherHailOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherHailOutlinedFilled as default } diff --git a/src/IconWeatherHailRoundedFilled.tsx b/src/IconWeatherHailRoundedFilled.tsx new file mode 100644 index 000000000..bc3b3b879 --- /dev/null +++ b/src/IconWeatherHailRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherHailRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherHailRoundedFilled as default } diff --git a/src/IconWeatherHailSharpFilled.tsx b/src/IconWeatherHailSharpFilled.tsx new file mode 100644 index 000000000..c13d2c7b1 --- /dev/null +++ b/src/IconWeatherHailSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherHailSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherHailSharpFilled as default } diff --git a/src/IconWeatherMixOutlinedFilled.tsx b/src/IconWeatherMixOutlinedFilled.tsx new file mode 100644 index 000000000..885b0be0f --- /dev/null +++ b/src/IconWeatherMixOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherMixOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherMixOutlinedFilled as default } diff --git a/src/IconWeatherMixRoundedFilled.tsx b/src/IconWeatherMixRoundedFilled.tsx new file mode 100644 index 000000000..e119254f9 --- /dev/null +++ b/src/IconWeatherMixRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherMixRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherMixRoundedFilled as default } diff --git a/src/IconWeatherMixSharpFilled.tsx b/src/IconWeatherMixSharpFilled.tsx new file mode 100644 index 000000000..7f9352bf6 --- /dev/null +++ b/src/IconWeatherMixSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherMixSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherMixSharpFilled as default } diff --git a/src/IconWeatherSnowyOutlinedFilled.tsx b/src/IconWeatherSnowyOutlinedFilled.tsx new file mode 100644 index 000000000..241148480 --- /dev/null +++ b/src/IconWeatherSnowyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherSnowyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherSnowyOutlinedFilled as default } diff --git a/src/IconWeatherSnowyRoundedFilled.tsx b/src/IconWeatherSnowyRoundedFilled.tsx new file mode 100644 index 000000000..9b1bdb1be --- /dev/null +++ b/src/IconWeatherSnowyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherSnowyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherSnowyRoundedFilled as default } diff --git a/src/IconWeatherSnowySharpFilled.tsx b/src/IconWeatherSnowySharpFilled.tsx new file mode 100644 index 000000000..a2fd30456 --- /dev/null +++ b/src/IconWeatherSnowySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeatherSnowySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeatherSnowySharpFilled as default } diff --git a/src/IconWebAssetOffOutlinedFilled.tsx b/src/IconWebAssetOffOutlinedFilled.tsx new file mode 100644 index 000000000..c37fe90a7 --- /dev/null +++ b/src/IconWebAssetOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetOffOutlinedFilled as default } diff --git a/src/IconWebAssetOffRoundedFilled.tsx b/src/IconWebAssetOffRoundedFilled.tsx new file mode 100644 index 000000000..8bbabffd9 --- /dev/null +++ b/src/IconWebAssetOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetOffRoundedFilled as default } diff --git a/src/IconWebAssetOffSharpFilled.tsx b/src/IconWebAssetOffSharpFilled.tsx new file mode 100644 index 000000000..fb1a9ae8a --- /dev/null +++ b/src/IconWebAssetOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetOffSharpFilled as default } diff --git a/src/IconWebAssetOutlinedFilled.tsx b/src/IconWebAssetOutlinedFilled.tsx new file mode 100644 index 000000000..308aa7639 --- /dev/null +++ b/src/IconWebAssetOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetOutlinedFilled as default } diff --git a/src/IconWebAssetRoundedFilled.tsx b/src/IconWebAssetRoundedFilled.tsx new file mode 100644 index 000000000..b43cf2cf5 --- /dev/null +++ b/src/IconWebAssetRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetRoundedFilled as default } diff --git a/src/IconWebAssetSharpFilled.tsx b/src/IconWebAssetSharpFilled.tsx new file mode 100644 index 000000000..249f0ab21 --- /dev/null +++ b/src/IconWebAssetSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebAssetSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebAssetSharpFilled as default } diff --git a/src/IconWebOutlinedFilled.tsx b/src/IconWebOutlinedFilled.tsx new file mode 100644 index 000000000..090fb79f6 --- /dev/null +++ b/src/IconWebOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebOutlinedFilled as default } diff --git a/src/IconWebRoundedFilled.tsx b/src/IconWebRoundedFilled.tsx new file mode 100644 index 000000000..a1b456d6c --- /dev/null +++ b/src/IconWebRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebRoundedFilled as default } diff --git a/src/IconWebSharpFilled.tsx b/src/IconWebSharpFilled.tsx new file mode 100644 index 000000000..6f183b567 --- /dev/null +++ b/src/IconWebSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebSharpFilled as default } diff --git a/src/IconWebStoriesOutlinedFilled.tsx b/src/IconWebStoriesOutlinedFilled.tsx new file mode 100644 index 000000000..eefce89b8 --- /dev/null +++ b/src/IconWebStoriesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebStoriesOutlinedFilled as default } diff --git a/src/IconWebStoriesRoundedFilled.tsx b/src/IconWebStoriesRoundedFilled.tsx new file mode 100644 index 000000000..0ef9ab14f --- /dev/null +++ b/src/IconWebStoriesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebStoriesRoundedFilled as default } diff --git a/src/IconWebStoriesSharpFilled.tsx b/src/IconWebStoriesSharpFilled.tsx new file mode 100644 index 000000000..8520114a6 --- /dev/null +++ b/src/IconWebStoriesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebStoriesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebStoriesSharpFilled as default } diff --git a/src/IconWebTrafficOutlinedFilled.tsx b/src/IconWebTrafficOutlinedFilled.tsx new file mode 100644 index 000000000..843411d17 --- /dev/null +++ b/src/IconWebTrafficOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebTrafficOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebTrafficOutlinedFilled as default } diff --git a/src/IconWebTrafficRoundedFilled.tsx b/src/IconWebTrafficRoundedFilled.tsx new file mode 100644 index 000000000..d99fbb6e2 --- /dev/null +++ b/src/IconWebTrafficRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebTrafficRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebTrafficRoundedFilled as default } diff --git a/src/IconWebTrafficSharpFilled.tsx b/src/IconWebTrafficSharpFilled.tsx new file mode 100644 index 000000000..74335a282 --- /dev/null +++ b/src/IconWebTrafficSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebTrafficSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebTrafficSharpFilled as default } diff --git a/src/IconWebhookOutlinedFilled.tsx b/src/IconWebhookOutlinedFilled.tsx new file mode 100644 index 000000000..7e97ff25d --- /dev/null +++ b/src/IconWebhookOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebhookOutlinedFilled as default } diff --git a/src/IconWebhookRoundedFilled.tsx b/src/IconWebhookRoundedFilled.tsx new file mode 100644 index 000000000..5fa8a6035 --- /dev/null +++ b/src/IconWebhookRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebhookRoundedFilled as default } diff --git a/src/IconWebhookSharpFilled.tsx b/src/IconWebhookSharpFilled.tsx new file mode 100644 index 000000000..40defb749 --- /dev/null +++ b/src/IconWebhookSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWebhookSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWebhookSharpFilled as default } diff --git a/src/IconWeekendOutlinedFilled.tsx b/src/IconWeekendOutlinedFilled.tsx new file mode 100644 index 000000000..a0269ae13 --- /dev/null +++ b/src/IconWeekendOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeekendOutlinedFilled as default } diff --git a/src/IconWeekendRoundedFilled.tsx b/src/IconWeekendRoundedFilled.tsx new file mode 100644 index 000000000..50d41b186 --- /dev/null +++ b/src/IconWeekendRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeekendRoundedFilled as default } diff --git a/src/IconWeekendSharpFilled.tsx b/src/IconWeekendSharpFilled.tsx new file mode 100644 index 000000000..33b2112a9 --- /dev/null +++ b/src/IconWeekendSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeekendSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeekendSharpFilled as default } diff --git a/src/IconWeightOutlinedFilled.tsx b/src/IconWeightOutlinedFilled.tsx new file mode 100644 index 000000000..9c415f3f8 --- /dev/null +++ b/src/IconWeightOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeightOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeightOutlinedFilled as default } diff --git a/src/IconWeightRoundedFilled.tsx b/src/IconWeightRoundedFilled.tsx new file mode 100644 index 000000000..9823be2bf --- /dev/null +++ b/src/IconWeightRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeightRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeightRoundedFilled as default } diff --git a/src/IconWeightSharpFilled.tsx b/src/IconWeightSharpFilled.tsx new file mode 100644 index 000000000..b3a04c8d9 --- /dev/null +++ b/src/IconWeightSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWeightSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWeightSharpFilled as default } diff --git a/src/IconWestOutlinedFilled.tsx b/src/IconWestOutlinedFilled.tsx new file mode 100644 index 000000000..166098ef7 --- /dev/null +++ b/src/IconWestOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWestOutlinedFilled as default } diff --git a/src/IconWestRoundedFilled.tsx b/src/IconWestRoundedFilled.tsx new file mode 100644 index 000000000..0618aba50 --- /dev/null +++ b/src/IconWestRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWestRoundedFilled as default } diff --git a/src/IconWestSharpFilled.tsx b/src/IconWestSharpFilled.tsx new file mode 100644 index 000000000..305828b25 --- /dev/null +++ b/src/IconWestSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWestSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWestSharpFilled as default } diff --git a/src/IconWhatshotOutlinedFilled.tsx b/src/IconWhatshotOutlinedFilled.tsx new file mode 100644 index 000000000..50964b407 --- /dev/null +++ b/src/IconWhatshotOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWhatshotOutlinedFilled as default } diff --git a/src/IconWhatshotRoundedFilled.tsx b/src/IconWhatshotRoundedFilled.tsx new file mode 100644 index 000000000..da21fd452 --- /dev/null +++ b/src/IconWhatshotRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWhatshotRoundedFilled as default } diff --git a/src/IconWhatshotSharpFilled.tsx b/src/IconWhatshotSharpFilled.tsx new file mode 100644 index 000000000..459fc2704 --- /dev/null +++ b/src/IconWhatshotSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhatshotSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWhatshotSharpFilled as default } diff --git a/src/IconWheelchairPickupOutlinedFilled.tsx b/src/IconWheelchairPickupOutlinedFilled.tsx new file mode 100644 index 000000000..e615cf91e --- /dev/null +++ b/src/IconWheelchairPickupOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWheelchairPickupOutlinedFilled as default } diff --git a/src/IconWheelchairPickupRoundedFilled.tsx b/src/IconWheelchairPickupRoundedFilled.tsx new file mode 100644 index 000000000..d3109f0be --- /dev/null +++ b/src/IconWheelchairPickupRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWheelchairPickupRoundedFilled as default } diff --git a/src/IconWheelchairPickupSharpFilled.tsx b/src/IconWheelchairPickupSharpFilled.tsx new file mode 100644 index 000000000..cea4d96d2 --- /dev/null +++ b/src/IconWheelchairPickupSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWheelchairPickupSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWheelchairPickupSharpFilled as default } diff --git a/src/IconWhereToVoteOutlinedFilled.tsx b/src/IconWhereToVoteOutlinedFilled.tsx new file mode 100644 index 000000000..b54dc68d5 --- /dev/null +++ b/src/IconWhereToVoteOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWhereToVoteOutlinedFilled as default } diff --git a/src/IconWhereToVoteRoundedFilled.tsx b/src/IconWhereToVoteRoundedFilled.tsx new file mode 100644 index 000000000..c29571ad7 --- /dev/null +++ b/src/IconWhereToVoteRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWhereToVoteRoundedFilled as default } diff --git a/src/IconWhereToVoteSharpFilled.tsx b/src/IconWhereToVoteSharpFilled.tsx new file mode 100644 index 000000000..9d4ea7c1b --- /dev/null +++ b/src/IconWhereToVoteSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWhereToVoteSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWhereToVoteSharpFilled as default } diff --git a/src/IconWidgetsOutlinedFilled.tsx b/src/IconWidgetsOutlinedFilled.tsx new file mode 100644 index 000000000..ace04a5f8 --- /dev/null +++ b/src/IconWidgetsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidgetsOutlinedFilled as default } diff --git a/src/IconWidgetsRoundedFilled.tsx b/src/IconWidgetsRoundedFilled.tsx new file mode 100644 index 000000000..7f739bd07 --- /dev/null +++ b/src/IconWidgetsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidgetsRoundedFilled as default } diff --git a/src/IconWidgetsSharpFilled.tsx b/src/IconWidgetsSharpFilled.tsx new file mode 100644 index 000000000..714fa72a7 --- /dev/null +++ b/src/IconWidgetsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidgetsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidgetsSharpFilled as default } diff --git a/src/IconWidthFullOutlinedFilled.tsx b/src/IconWidthFullOutlinedFilled.tsx new file mode 100644 index 000000000..8120ccca5 --- /dev/null +++ b/src/IconWidthFullOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthFullOutlinedFilled as default } diff --git a/src/IconWidthFullRoundedFilled.tsx b/src/IconWidthFullRoundedFilled.tsx new file mode 100644 index 000000000..2eb918627 --- /dev/null +++ b/src/IconWidthFullRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthFullRoundedFilled as default } diff --git a/src/IconWidthFullSharpFilled.tsx b/src/IconWidthFullSharpFilled.tsx new file mode 100644 index 000000000..6f9576bb2 --- /dev/null +++ b/src/IconWidthFullSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthFullSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthFullSharpFilled as default } diff --git a/src/IconWidthNormalOutlinedFilled.tsx b/src/IconWidthNormalOutlinedFilled.tsx new file mode 100644 index 000000000..603922700 --- /dev/null +++ b/src/IconWidthNormalOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthNormalOutlinedFilled as default } diff --git a/src/IconWidthNormalRoundedFilled.tsx b/src/IconWidthNormalRoundedFilled.tsx new file mode 100644 index 000000000..cc75ec591 --- /dev/null +++ b/src/IconWidthNormalRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthNormalRoundedFilled as default } diff --git a/src/IconWidthNormalSharpFilled.tsx b/src/IconWidthNormalSharpFilled.tsx new file mode 100644 index 000000000..4319cd406 --- /dev/null +++ b/src/IconWidthNormalSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthNormalSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthNormalSharpFilled as default } diff --git a/src/IconWidthOutlinedFilled.tsx b/src/IconWidthOutlinedFilled.tsx new file mode 100644 index 000000000..bdb990d8f --- /dev/null +++ b/src/IconWidthOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthOutlinedFilled as default } diff --git a/src/IconWidthRoundedFilled.tsx b/src/IconWidthRoundedFilled.tsx new file mode 100644 index 000000000..a3c22fdb7 --- /dev/null +++ b/src/IconWidthRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthRoundedFilled as default } diff --git a/src/IconWidthSharpFilled.tsx b/src/IconWidthSharpFilled.tsx new file mode 100644 index 000000000..6243809ef --- /dev/null +++ b/src/IconWidthSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthSharpFilled as default } diff --git a/src/IconWidthWideOutlinedFilled.tsx b/src/IconWidthWideOutlinedFilled.tsx new file mode 100644 index 000000000..fa8611ef4 --- /dev/null +++ b/src/IconWidthWideOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthWideOutlinedFilled as default } diff --git a/src/IconWidthWideRoundedFilled.tsx b/src/IconWidthWideRoundedFilled.tsx new file mode 100644 index 000000000..0e6574f37 --- /dev/null +++ b/src/IconWidthWideRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthWideRoundedFilled as default } diff --git a/src/IconWidthWideSharpFilled.tsx b/src/IconWidthWideSharpFilled.tsx new file mode 100644 index 000000000..3d9cec329 --- /dev/null +++ b/src/IconWidthWideSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWidthWideSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWidthWideSharpFilled as default } diff --git a/src/IconWifi1BarOutlinedFilled.tsx b/src/IconWifi1BarOutlinedFilled.tsx new file mode 100644 index 000000000..3a2b4b46f --- /dev/null +++ b/src/IconWifi1BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifi1BarOutlinedFilled as default } diff --git a/src/IconWifi1BarRoundedFilled.tsx b/src/IconWifi1BarRoundedFilled.tsx new file mode 100644 index 000000000..c7bb51800 --- /dev/null +++ b/src/IconWifi1BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifi1BarRoundedFilled as default } diff --git a/src/IconWifi1BarSharpFilled.tsx b/src/IconWifi1BarSharpFilled.tsx new file mode 100644 index 000000000..62e224bc0 --- /dev/null +++ b/src/IconWifi1BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi1BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifi1BarSharpFilled as default } diff --git a/src/IconWifi2BarOutlinedFilled.tsx b/src/IconWifi2BarOutlinedFilled.tsx new file mode 100644 index 000000000..d913e8627 --- /dev/null +++ b/src/IconWifi2BarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifi2BarOutlinedFilled as default } diff --git a/src/IconWifi2BarRoundedFilled.tsx b/src/IconWifi2BarRoundedFilled.tsx new file mode 100644 index 000000000..1f0c58a55 --- /dev/null +++ b/src/IconWifi2BarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifi2BarRoundedFilled as default } diff --git a/src/IconWifi2BarSharpFilled.tsx b/src/IconWifi2BarSharpFilled.tsx new file mode 100644 index 000000000..f87c98641 --- /dev/null +++ b/src/IconWifi2BarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifi2BarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifi2BarSharpFilled as default } diff --git a/src/IconWifiAddOutlinedFilled.tsx b/src/IconWifiAddOutlinedFilled.tsx new file mode 100644 index 000000000..84379f64d --- /dev/null +++ b/src/IconWifiAddOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiAddOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiAddOutlinedFilled as default } diff --git a/src/IconWifiAddRoundedFilled.tsx b/src/IconWifiAddRoundedFilled.tsx new file mode 100644 index 000000000..55b3c29b7 --- /dev/null +++ b/src/IconWifiAddRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiAddRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiAddRoundedFilled as default } diff --git a/src/IconWifiAddSharpFilled.tsx b/src/IconWifiAddSharpFilled.tsx new file mode 100644 index 000000000..c9cecf017 --- /dev/null +++ b/src/IconWifiAddSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiAddSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiAddSharpFilled as default } diff --git a/src/IconWifiCallingBar1OutlinedFilled.tsx b/src/IconWifiCallingBar1OutlinedFilled.tsx new file mode 100644 index 000000000..0d5525c5d --- /dev/null +++ b/src/IconWifiCallingBar1OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar1OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar1OutlinedFilled as default } diff --git a/src/IconWifiCallingBar1RoundedFilled.tsx b/src/IconWifiCallingBar1RoundedFilled.tsx new file mode 100644 index 000000000..63b95456c --- /dev/null +++ b/src/IconWifiCallingBar1RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar1RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar1RoundedFilled as default } diff --git a/src/IconWifiCallingBar1SharpFilled.tsx b/src/IconWifiCallingBar1SharpFilled.tsx new file mode 100644 index 000000000..759a5b16a --- /dev/null +++ b/src/IconWifiCallingBar1SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar1SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar1SharpFilled as default } diff --git a/src/IconWifiCallingBar2OutlinedFilled.tsx b/src/IconWifiCallingBar2OutlinedFilled.tsx new file mode 100644 index 000000000..3874b5dc2 --- /dev/null +++ b/src/IconWifiCallingBar2OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar2OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar2OutlinedFilled as default } diff --git a/src/IconWifiCallingBar2RoundedFilled.tsx b/src/IconWifiCallingBar2RoundedFilled.tsx new file mode 100644 index 000000000..f0e688475 --- /dev/null +++ b/src/IconWifiCallingBar2RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar2RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar2RoundedFilled as default } diff --git a/src/IconWifiCallingBar2SharpFilled.tsx b/src/IconWifiCallingBar2SharpFilled.tsx new file mode 100644 index 000000000..6ac1bcf5e --- /dev/null +++ b/src/IconWifiCallingBar2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar2SharpFilled as default } diff --git a/src/IconWifiCallingBar3OutlinedFilled.tsx b/src/IconWifiCallingBar3OutlinedFilled.tsx new file mode 100644 index 000000000..15c494099 --- /dev/null +++ b/src/IconWifiCallingBar3OutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar3OutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar3OutlinedFilled as default } diff --git a/src/IconWifiCallingBar3RoundedFilled.tsx b/src/IconWifiCallingBar3RoundedFilled.tsx new file mode 100644 index 000000000..b06b96844 --- /dev/null +++ b/src/IconWifiCallingBar3RoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar3RoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar3RoundedFilled as default } diff --git a/src/IconWifiCallingBar3SharpFilled.tsx b/src/IconWifiCallingBar3SharpFilled.tsx new file mode 100644 index 000000000..72bccca1b --- /dev/null +++ b/src/IconWifiCallingBar3SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingBar3SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingBar3SharpFilled as default } diff --git a/src/IconWifiCallingOutlinedFilled.tsx b/src/IconWifiCallingOutlinedFilled.tsx new file mode 100644 index 000000000..bc5fcc69a --- /dev/null +++ b/src/IconWifiCallingOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingOutlinedFilled as default } diff --git a/src/IconWifiCallingRoundedFilled.tsx b/src/IconWifiCallingRoundedFilled.tsx new file mode 100644 index 000000000..f678c6729 --- /dev/null +++ b/src/IconWifiCallingRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingRoundedFilled as default } diff --git a/src/IconWifiCallingSharpFilled.tsx b/src/IconWifiCallingSharpFilled.tsx new file mode 100644 index 000000000..3ab5b57de --- /dev/null +++ b/src/IconWifiCallingSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiCallingSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiCallingSharpFilled as default } diff --git a/src/IconWifiChannelOutlinedFilled.tsx b/src/IconWifiChannelOutlinedFilled.tsx new file mode 100644 index 000000000..13fe43b64 --- /dev/null +++ b/src/IconWifiChannelOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiChannelOutlinedFilled as default } diff --git a/src/IconWifiChannelRoundedFilled.tsx b/src/IconWifiChannelRoundedFilled.tsx new file mode 100644 index 000000000..851138ae7 --- /dev/null +++ b/src/IconWifiChannelRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiChannelRoundedFilled as default } diff --git a/src/IconWifiChannelSharpFilled.tsx b/src/IconWifiChannelSharpFilled.tsx new file mode 100644 index 000000000..371d4fd38 --- /dev/null +++ b/src/IconWifiChannelSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiChannelSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiChannelSharpFilled as default } diff --git a/src/IconWifiFindOutlinedFilled.tsx b/src/IconWifiFindOutlinedFilled.tsx new file mode 100644 index 000000000..a58de7ac8 --- /dev/null +++ b/src/IconWifiFindOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiFindOutlinedFilled as default } diff --git a/src/IconWifiFindRoundedFilled.tsx b/src/IconWifiFindRoundedFilled.tsx new file mode 100644 index 000000000..974c5d90c --- /dev/null +++ b/src/IconWifiFindRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiFindRoundedFilled as default } diff --git a/src/IconWifiFindSharpFilled.tsx b/src/IconWifiFindSharpFilled.tsx new file mode 100644 index 000000000..b3497d46c --- /dev/null +++ b/src/IconWifiFindSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiFindSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiFindSharpFilled as default } diff --git a/src/IconWifiHomeOutlinedFilled.tsx b/src/IconWifiHomeOutlinedFilled.tsx new file mode 100644 index 000000000..080824ea4 --- /dev/null +++ b/src/IconWifiHomeOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiHomeOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiHomeOutlinedFilled as default } diff --git a/src/IconWifiHomeRoundedFilled.tsx b/src/IconWifiHomeRoundedFilled.tsx new file mode 100644 index 000000000..56d1318f7 --- /dev/null +++ b/src/IconWifiHomeRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiHomeRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiHomeRoundedFilled as default } diff --git a/src/IconWifiHomeSharpFilled.tsx b/src/IconWifiHomeSharpFilled.tsx new file mode 100644 index 000000000..1e4870a0b --- /dev/null +++ b/src/IconWifiHomeSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiHomeSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiHomeSharpFilled as default } diff --git a/src/IconWifiLockOutlinedFilled.tsx b/src/IconWifiLockOutlinedFilled.tsx new file mode 100644 index 000000000..d8d39970b --- /dev/null +++ b/src/IconWifiLockOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiLockOutlinedFilled as default } diff --git a/src/IconWifiLockRoundedFilled.tsx b/src/IconWifiLockRoundedFilled.tsx new file mode 100644 index 000000000..10d84b027 --- /dev/null +++ b/src/IconWifiLockRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiLockRoundedFilled as default } diff --git a/src/IconWifiLockSharpFilled.tsx b/src/IconWifiLockSharpFilled.tsx new file mode 100644 index 000000000..75b95cac5 --- /dev/null +++ b/src/IconWifiLockSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiLockSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiLockSharpFilled as default } diff --git a/src/IconWifiNotificationOutlinedFilled.tsx b/src/IconWifiNotificationOutlinedFilled.tsx new file mode 100644 index 000000000..bcc9649e8 --- /dev/null +++ b/src/IconWifiNotificationOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiNotificationOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiNotificationOutlinedFilled as default } diff --git a/src/IconWifiNotificationRoundedFilled.tsx b/src/IconWifiNotificationRoundedFilled.tsx new file mode 100644 index 000000000..3c2adb18a --- /dev/null +++ b/src/IconWifiNotificationRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiNotificationRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiNotificationRoundedFilled as default } diff --git a/src/IconWifiNotificationSharpFilled.tsx b/src/IconWifiNotificationSharpFilled.tsx new file mode 100644 index 000000000..14c82ae2f --- /dev/null +++ b/src/IconWifiNotificationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiNotificationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiNotificationSharpFilled as default } diff --git a/src/IconWifiOffOutlinedFilled.tsx b/src/IconWifiOffOutlinedFilled.tsx new file mode 100644 index 000000000..c821ed0f5 --- /dev/null +++ b/src/IconWifiOffOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiOffOutlinedFilled as default } diff --git a/src/IconWifiOffRoundedFilled.tsx b/src/IconWifiOffRoundedFilled.tsx new file mode 100644 index 000000000..c71659312 --- /dev/null +++ b/src/IconWifiOffRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiOffRoundedFilled as default } diff --git a/src/IconWifiOffSharpFilled.tsx b/src/IconWifiOffSharpFilled.tsx new file mode 100644 index 000000000..244350ca8 --- /dev/null +++ b/src/IconWifiOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiOffSharpFilled as default } diff --git a/src/IconWifiOutlinedFilled.tsx b/src/IconWifiOutlinedFilled.tsx new file mode 100644 index 000000000..201078681 --- /dev/null +++ b/src/IconWifiOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiOutlinedFilled as default } diff --git a/src/IconWifiPasswordOutlinedFilled.tsx b/src/IconWifiPasswordOutlinedFilled.tsx new file mode 100644 index 000000000..29409c76d --- /dev/null +++ b/src/IconWifiPasswordOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiPasswordOutlinedFilled as default } diff --git a/src/IconWifiPasswordRoundedFilled.tsx b/src/IconWifiPasswordRoundedFilled.tsx new file mode 100644 index 000000000..091977677 --- /dev/null +++ b/src/IconWifiPasswordRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiPasswordRoundedFilled as default } diff --git a/src/IconWifiPasswordSharpFilled.tsx b/src/IconWifiPasswordSharpFilled.tsx new file mode 100644 index 000000000..b2db8875e --- /dev/null +++ b/src/IconWifiPasswordSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiPasswordSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiPasswordSharpFilled as default } diff --git a/src/IconWifiProtectedSetupOutlinedFilled.tsx b/src/IconWifiProtectedSetupOutlinedFilled.tsx new file mode 100644 index 000000000..0c1e1ada6 --- /dev/null +++ b/src/IconWifiProtectedSetupOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiProtectedSetupOutlinedFilled as default } diff --git a/src/IconWifiProtectedSetupRoundedFilled.tsx b/src/IconWifiProtectedSetupRoundedFilled.tsx new file mode 100644 index 000000000..a56473f7a --- /dev/null +++ b/src/IconWifiProtectedSetupRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiProtectedSetupRoundedFilled as default } diff --git a/src/IconWifiProtectedSetupSharpFilled.tsx b/src/IconWifiProtectedSetupSharpFilled.tsx new file mode 100644 index 000000000..87235f24a --- /dev/null +++ b/src/IconWifiProtectedSetupSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProtectedSetupSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiProtectedSetupSharpFilled as default } diff --git a/src/IconWifiProxyOutlinedFilled.tsx b/src/IconWifiProxyOutlinedFilled.tsx new file mode 100644 index 000000000..4ed0ae1aa --- /dev/null +++ b/src/IconWifiProxyOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProxyOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiProxyOutlinedFilled as default } diff --git a/src/IconWifiProxyRoundedFilled.tsx b/src/IconWifiProxyRoundedFilled.tsx new file mode 100644 index 000000000..f2a159bf1 --- /dev/null +++ b/src/IconWifiProxyRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProxyRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiProxyRoundedFilled as default } diff --git a/src/IconWifiProxySharpFilled.tsx b/src/IconWifiProxySharpFilled.tsx new file mode 100644 index 000000000..1dbd82897 --- /dev/null +++ b/src/IconWifiProxySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiProxySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiProxySharpFilled as default } diff --git a/src/IconWifiRoundedFilled.tsx b/src/IconWifiRoundedFilled.tsx new file mode 100644 index 000000000..90d0a0a32 --- /dev/null +++ b/src/IconWifiRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiRoundedFilled as default } diff --git a/src/IconWifiSharpFilled.tsx b/src/IconWifiSharpFilled.tsx new file mode 100644 index 000000000..4b7ef31fc --- /dev/null +++ b/src/IconWifiSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiSharpFilled as default } diff --git a/src/IconWifiTetheringErrorOutlinedFilled.tsx b/src/IconWifiTetheringErrorOutlinedFilled.tsx new file mode 100644 index 000000000..df5492394 --- /dev/null +++ b/src/IconWifiTetheringErrorOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringErrorOutlinedFilled as default } diff --git a/src/IconWifiTetheringErrorRoundedFilled.tsx b/src/IconWifiTetheringErrorRoundedFilled.tsx new file mode 100644 index 000000000..f8737d7c8 --- /dev/null +++ b/src/IconWifiTetheringErrorRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringErrorRoundedFilled as default } diff --git a/src/IconWifiTetheringErrorSharpFilled.tsx b/src/IconWifiTetheringErrorSharpFilled.tsx new file mode 100644 index 000000000..83bf6cc47 --- /dev/null +++ b/src/IconWifiTetheringErrorSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringErrorSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringErrorSharpFilled as default } diff --git a/src/IconWifiTetheringOffOutlinedFilled.tsx b/src/IconWifiTetheringOffOutlinedFilled.tsx new file mode 100644 index 000000000..edafdd67a --- /dev/null +++ b/src/IconWifiTetheringOffOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringOffOutlinedFilled as default } diff --git a/src/IconWifiTetheringOffRoundedFilled.tsx b/src/IconWifiTetheringOffRoundedFilled.tsx new file mode 100644 index 000000000..e48e51854 --- /dev/null +++ b/src/IconWifiTetheringOffRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringOffRoundedFilled as default } diff --git a/src/IconWifiTetheringOffSharpFilled.tsx b/src/IconWifiTetheringOffSharpFilled.tsx new file mode 100644 index 000000000..50e82f118 --- /dev/null +++ b/src/IconWifiTetheringOffSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOffSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringOffSharpFilled as default } diff --git a/src/IconWifiTetheringOutlinedFilled.tsx b/src/IconWifiTetheringOutlinedFilled.tsx new file mode 100644 index 000000000..0d7295d9f --- /dev/null +++ b/src/IconWifiTetheringOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringOutlinedFilled as default } diff --git a/src/IconWifiTetheringRoundedFilled.tsx b/src/IconWifiTetheringRoundedFilled.tsx new file mode 100644 index 000000000..cae9cabad --- /dev/null +++ b/src/IconWifiTetheringRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringRoundedFilled as default } diff --git a/src/IconWifiTetheringSharpFilled.tsx b/src/IconWifiTetheringSharpFilled.tsx new file mode 100644 index 000000000..77c7e281b --- /dev/null +++ b/src/IconWifiTetheringSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWifiTetheringSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWifiTetheringSharpFilled as default } diff --git a/src/IconWindPowerOutlinedFilled.tsx b/src/IconWindPowerOutlinedFilled.tsx new file mode 100644 index 000000000..17b20cc82 --- /dev/null +++ b/src/IconWindPowerOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindPowerOutlinedFilled as default } diff --git a/src/IconWindPowerRoundedFilled.tsx b/src/IconWindPowerRoundedFilled.tsx new file mode 100644 index 000000000..1fba30d07 --- /dev/null +++ b/src/IconWindPowerRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindPowerRoundedFilled as default } diff --git a/src/IconWindPowerSharpFilled.tsx b/src/IconWindPowerSharpFilled.tsx new file mode 100644 index 000000000..5328f2690 --- /dev/null +++ b/src/IconWindPowerSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindPowerSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindPowerSharpFilled as default } diff --git a/src/IconWindowClosedOutlinedFilled.tsx b/src/IconWindowClosedOutlinedFilled.tsx new file mode 100644 index 000000000..66d925adf --- /dev/null +++ b/src/IconWindowClosedOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowClosedOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowClosedOutlinedFilled as default } diff --git a/src/IconWindowClosedRoundedFilled.tsx b/src/IconWindowClosedRoundedFilled.tsx new file mode 100644 index 000000000..dc5b0810d --- /dev/null +++ b/src/IconWindowClosedRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowClosedRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowClosedRoundedFilled as default } diff --git a/src/IconWindowClosedSharpFilled.tsx b/src/IconWindowClosedSharpFilled.tsx new file mode 100644 index 000000000..1d3b7950d --- /dev/null +++ b/src/IconWindowClosedSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowClosedSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowClosedSharpFilled as default } diff --git a/src/IconWindowOpenOutlinedFilled.tsx b/src/IconWindowOpenOutlinedFilled.tsx new file mode 100644 index 000000000..440e88547 --- /dev/null +++ b/src/IconWindowOpenOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowOpenOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowOpenOutlinedFilled as default } diff --git a/src/IconWindowOpenRoundedFilled.tsx b/src/IconWindowOpenRoundedFilled.tsx new file mode 100644 index 000000000..92c3bdc00 --- /dev/null +++ b/src/IconWindowOpenRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowOpenRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowOpenRoundedFilled as default } diff --git a/src/IconWindowOpenSharpFilled.tsx b/src/IconWindowOpenSharpFilled.tsx new file mode 100644 index 000000000..784f7159b --- /dev/null +++ b/src/IconWindowOpenSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowOpenSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowOpenSharpFilled as default } diff --git a/src/IconWindowOutlinedFilled.tsx b/src/IconWindowOutlinedFilled.tsx new file mode 100644 index 000000000..f5470b8f4 --- /dev/null +++ b/src/IconWindowOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowOutlinedFilled as default } diff --git a/src/IconWindowRoundedFilled.tsx b/src/IconWindowRoundedFilled.tsx new file mode 100644 index 000000000..692096c31 --- /dev/null +++ b/src/IconWindowRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowRoundedFilled as default } diff --git a/src/IconWindowSensorOutlinedFilled.tsx b/src/IconWindowSensorOutlinedFilled.tsx new file mode 100644 index 000000000..7dfb977fe --- /dev/null +++ b/src/IconWindowSensorOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowSensorOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowSensorOutlinedFilled as default } diff --git a/src/IconWindowSensorRoundedFilled.tsx b/src/IconWindowSensorRoundedFilled.tsx new file mode 100644 index 000000000..4ced0f732 --- /dev/null +++ b/src/IconWindowSensorRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowSensorRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowSensorRoundedFilled as default } diff --git a/src/IconWindowSensorSharpFilled.tsx b/src/IconWindowSensorSharpFilled.tsx new file mode 100644 index 000000000..b62de9b52 --- /dev/null +++ b/src/IconWindowSensorSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowSensorSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowSensorSharpFilled as default } diff --git a/src/IconWindowSharpFilled.tsx b/src/IconWindowSharpFilled.tsx new file mode 100644 index 000000000..675116fdf --- /dev/null +++ b/src/IconWindowSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWindowSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWindowSharpFilled as default } diff --git a/src/IconWineBarOutlinedFilled.tsx b/src/IconWineBarOutlinedFilled.tsx new file mode 100644 index 000000000..11838c85c --- /dev/null +++ b/src/IconWineBarOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWineBarOutlinedFilled as default } diff --git a/src/IconWineBarRoundedFilled.tsx b/src/IconWineBarRoundedFilled.tsx new file mode 100644 index 000000000..a92854dec --- /dev/null +++ b/src/IconWineBarRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWineBarRoundedFilled as default } diff --git a/src/IconWineBarSharpFilled.tsx b/src/IconWineBarSharpFilled.tsx new file mode 100644 index 000000000..d393f8ba2 --- /dev/null +++ b/src/IconWineBarSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWineBarSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWineBarSharpFilled as default } diff --git a/src/IconWoman2OutlinedFilled.tsx b/src/IconWoman2OutlinedFilled.tsx new file mode 100644 index 000000000..09e03808c --- /dev/null +++ b/src/IconWoman2OutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2OutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWoman2OutlinedFilled as default } diff --git a/src/IconWoman2RoundedFilled.tsx b/src/IconWoman2RoundedFilled.tsx new file mode 100644 index 000000000..bedf50bdc --- /dev/null +++ b/src/IconWoman2RoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2RoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWoman2RoundedFilled as default } diff --git a/src/IconWoman2SharpFilled.tsx b/src/IconWoman2SharpFilled.tsx new file mode 100644 index 000000000..c596fe95e --- /dev/null +++ b/src/IconWoman2SharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoman2SharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWoman2SharpFilled as default } diff --git a/src/IconWomanOutlinedFilled.tsx b/src/IconWomanOutlinedFilled.tsx new file mode 100644 index 000000000..4feceadd6 --- /dev/null +++ b/src/IconWomanOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWomanOutlinedFilled as default } diff --git a/src/IconWomanRoundedFilled.tsx b/src/IconWomanRoundedFilled.tsx new file mode 100644 index 000000000..ee7807594 --- /dev/null +++ b/src/IconWomanRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWomanRoundedFilled as default } diff --git a/src/IconWomanSharpFilled.tsx b/src/IconWomanSharpFilled.tsx new file mode 100644 index 000000000..29a98b914 --- /dev/null +++ b/src/IconWomanSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWomanSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWomanSharpFilled as default } diff --git a/src/IconWorkAlertOutlinedFilled.tsx b/src/IconWorkAlertOutlinedFilled.tsx new file mode 100644 index 000000000..2ed8f7e97 --- /dev/null +++ b/src/IconWorkAlertOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkAlertOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkAlertOutlinedFilled as default } diff --git a/src/IconWorkAlertRoundedFilled.tsx b/src/IconWorkAlertRoundedFilled.tsx new file mode 100644 index 000000000..64b8899d1 --- /dev/null +++ b/src/IconWorkAlertRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkAlertRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkAlertRoundedFilled as default } diff --git a/src/IconWorkAlertSharpFilled.tsx b/src/IconWorkAlertSharpFilled.tsx new file mode 100644 index 000000000..6fcba067e --- /dev/null +++ b/src/IconWorkAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkAlertSharpFilled as default } diff --git a/src/IconWorkHistoryOutlinedFilled.tsx b/src/IconWorkHistoryOutlinedFilled.tsx new file mode 100644 index 000000000..002bb496e --- /dev/null +++ b/src/IconWorkHistoryOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistoryOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkHistoryOutlinedFilled as default } diff --git a/src/IconWorkHistoryRoundedFilled.tsx b/src/IconWorkHistoryRoundedFilled.tsx new file mode 100644 index 000000000..32d6878c3 --- /dev/null +++ b/src/IconWorkHistoryRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistoryRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkHistoryRoundedFilled as default } diff --git a/src/IconWorkHistorySharpFilled.tsx b/src/IconWorkHistorySharpFilled.tsx new file mode 100644 index 000000000..ff93e36b6 --- /dev/null +++ b/src/IconWorkHistorySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkHistorySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkHistorySharpFilled as default } diff --git a/src/IconWorkOutlinedFilled.tsx b/src/IconWorkOutlinedFilled.tsx new file mode 100644 index 000000000..bd83f8f06 --- /dev/null +++ b/src/IconWorkOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkOutlinedFilled as default } diff --git a/src/IconWorkRoundedFilled.tsx b/src/IconWorkRoundedFilled.tsx new file mode 100644 index 000000000..b52556d72 --- /dev/null +++ b/src/IconWorkRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkRoundedFilled as default } diff --git a/src/IconWorkSharpFilled.tsx b/src/IconWorkSharpFilled.tsx new file mode 100644 index 000000000..1360dd310 --- /dev/null +++ b/src/IconWorkSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkSharpFilled as default } diff --git a/src/IconWorkUpdateOutlinedFilled.tsx b/src/IconWorkUpdateOutlinedFilled.tsx new file mode 100644 index 000000000..5e1f06ab8 --- /dev/null +++ b/src/IconWorkUpdateOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkUpdateOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkUpdateOutlinedFilled as default } diff --git a/src/IconWorkUpdateRoundedFilled.tsx b/src/IconWorkUpdateRoundedFilled.tsx new file mode 100644 index 000000000..3d1b1aabb --- /dev/null +++ b/src/IconWorkUpdateRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkUpdateRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkUpdateRoundedFilled as default } diff --git a/src/IconWorkUpdateSharpFilled.tsx b/src/IconWorkUpdateSharpFilled.tsx new file mode 100644 index 000000000..da9192e7a --- /dev/null +++ b/src/IconWorkUpdateSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkUpdateSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkUpdateSharpFilled as default } diff --git a/src/IconWorkspacePremiumOutlinedFilled.tsx b/src/IconWorkspacePremiumOutlinedFilled.tsx new file mode 100644 index 000000000..35b1df770 --- /dev/null +++ b/src/IconWorkspacePremiumOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkspacePremiumOutlinedFilled as default } diff --git a/src/IconWorkspacePremiumRoundedFilled.tsx b/src/IconWorkspacePremiumRoundedFilled.tsx new file mode 100644 index 000000000..da8f4827a --- /dev/null +++ b/src/IconWorkspacePremiumRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkspacePremiumRoundedFilled as default } diff --git a/src/IconWorkspacePremiumSharpFilled.tsx b/src/IconWorkspacePremiumSharpFilled.tsx new file mode 100644 index 000000000..684733319 --- /dev/null +++ b/src/IconWorkspacePremiumSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacePremiumSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkspacePremiumSharpFilled as default } diff --git a/src/IconWorkspacesOutlinedFilled.tsx b/src/IconWorkspacesOutlinedFilled.tsx new file mode 100644 index 000000000..5ef0a3b4e --- /dev/null +++ b/src/IconWorkspacesOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkspacesOutlinedFilled as default } diff --git a/src/IconWorkspacesRoundedFilled.tsx b/src/IconWorkspacesRoundedFilled.tsx new file mode 100644 index 000000000..8a258a4e7 --- /dev/null +++ b/src/IconWorkspacesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkspacesRoundedFilled as default } diff --git a/src/IconWorkspacesSharpFilled.tsx b/src/IconWorkspacesSharpFilled.tsx new file mode 100644 index 000000000..4b4075c5e --- /dev/null +++ b/src/IconWorkspacesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWorkspacesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWorkspacesSharpFilled as default } diff --git a/src/IconWoundsInjuriesOutlinedFilled.tsx b/src/IconWoundsInjuriesOutlinedFilled.tsx new file mode 100644 index 000000000..0fb2651e2 --- /dev/null +++ b/src/IconWoundsInjuriesOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoundsInjuriesOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconWoundsInjuriesOutlinedFilled as default } diff --git a/src/IconWoundsInjuriesRoundedFilled.tsx b/src/IconWoundsInjuriesRoundedFilled.tsx new file mode 100644 index 000000000..663a0d1b1 --- /dev/null +++ b/src/IconWoundsInjuriesRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoundsInjuriesRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWoundsInjuriesRoundedFilled as default } diff --git a/src/IconWoundsInjuriesSharpFilled.tsx b/src/IconWoundsInjuriesSharpFilled.tsx new file mode 100644 index 000000000..81a0ce49d --- /dev/null +++ b/src/IconWoundsInjuriesSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWoundsInjuriesSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWoundsInjuriesSharpFilled as default } diff --git a/src/IconWrapTextOutlinedFilled.tsx b/src/IconWrapTextOutlinedFilled.tsx new file mode 100644 index 000000000..63db658dc --- /dev/null +++ b/src/IconWrapTextOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrapTextOutlinedFilled as default } diff --git a/src/IconWrapTextRoundedFilled.tsx b/src/IconWrapTextRoundedFilled.tsx new file mode 100644 index 000000000..f1d63df0c --- /dev/null +++ b/src/IconWrapTextRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrapTextRoundedFilled as default } diff --git a/src/IconWrapTextSharpFilled.tsx b/src/IconWrapTextSharpFilled.tsx new file mode 100644 index 000000000..2186a70a5 --- /dev/null +++ b/src/IconWrapTextSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrapTextSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrapTextSharpFilled as default } diff --git a/src/IconWristOutlinedFilled.tsx b/src/IconWristOutlinedFilled.tsx new file mode 100644 index 000000000..bbc2c9573 --- /dev/null +++ b/src/IconWristOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWristOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWristOutlinedFilled as default } diff --git a/src/IconWristRoundedFilled.tsx b/src/IconWristRoundedFilled.tsx new file mode 100644 index 000000000..2cc8e10fb --- /dev/null +++ b/src/IconWristRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWristRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWristRoundedFilled as default } diff --git a/src/IconWristSharpFilled.tsx b/src/IconWristSharpFilled.tsx new file mode 100644 index 000000000..0c21dccdf --- /dev/null +++ b/src/IconWristSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWristSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWristSharpFilled as default } diff --git a/src/IconWrongLocationOutlinedFilled.tsx b/src/IconWrongLocationOutlinedFilled.tsx new file mode 100644 index 000000000..260fa0426 --- /dev/null +++ b/src/IconWrongLocationOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrongLocationOutlinedFilled as default } diff --git a/src/IconWrongLocationRoundedFilled.tsx b/src/IconWrongLocationRoundedFilled.tsx new file mode 100644 index 000000000..a3b6fadd6 --- /dev/null +++ b/src/IconWrongLocationRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrongLocationRoundedFilled as default } diff --git a/src/IconWrongLocationSharpFilled.tsx b/src/IconWrongLocationSharpFilled.tsx new file mode 100644 index 000000000..98a0e6817 --- /dev/null +++ b/src/IconWrongLocationSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWrongLocationSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWrongLocationSharpFilled as default } diff --git a/src/IconWysiwygOutlinedFilled.tsx b/src/IconWysiwygOutlinedFilled.tsx new file mode 100644 index 000000000..bf78a64ea --- /dev/null +++ b/src/IconWysiwygOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWysiwygOutlinedFilled as default } diff --git a/src/IconWysiwygRoundedFilled.tsx b/src/IconWysiwygRoundedFilled.tsx new file mode 100644 index 000000000..c22ede3c1 --- /dev/null +++ b/src/IconWysiwygRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWysiwygRoundedFilled as default } diff --git a/src/IconWysiwygSharpFilled.tsx b/src/IconWysiwygSharpFilled.tsx new file mode 100644 index 000000000..b3ef71b60 --- /dev/null +++ b/src/IconWysiwygSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconWysiwygSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconWysiwygSharpFilled as default } diff --git a/src/IconYardOutlinedFilled.tsx b/src/IconYardOutlinedFilled.tsx new file mode 100644 index 000000000..a7eced9e3 --- /dev/null +++ b/src/IconYardOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYardOutlinedFilled as default } diff --git a/src/IconYardRoundedFilled.tsx b/src/IconYardRoundedFilled.tsx new file mode 100644 index 000000000..ad1b76984 --- /dev/null +++ b/src/IconYardRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYardRoundedFilled as default } diff --git a/src/IconYardSharpFilled.tsx b/src/IconYardSharpFilled.tsx new file mode 100644 index 000000000..3db9e5247 --- /dev/null +++ b/src/IconYardSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYardSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYardSharpFilled as default } diff --git a/src/IconYourTripsOutlinedFilled.tsx b/src/IconYourTripsOutlinedFilled.tsx new file mode 100644 index 000000000..19045a3af --- /dev/null +++ b/src/IconYourTripsOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYourTripsOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYourTripsOutlinedFilled as default } diff --git a/src/IconYourTripsRoundedFilled.tsx b/src/IconYourTripsRoundedFilled.tsx new file mode 100644 index 000000000..931fcc715 --- /dev/null +++ b/src/IconYourTripsRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYourTripsRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYourTripsRoundedFilled as default } diff --git a/src/IconYourTripsSharpFilled.tsx b/src/IconYourTripsSharpFilled.tsx new file mode 100644 index 000000000..35340840d --- /dev/null +++ b/src/IconYourTripsSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYourTripsSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYourTripsSharpFilled as default } diff --git a/src/IconYoutubeActivityOutlinedFilled.tsx b/src/IconYoutubeActivityOutlinedFilled.tsx new file mode 100644 index 000000000..820e67995 --- /dev/null +++ b/src/IconYoutubeActivityOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeActivityOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconYoutubeActivityOutlinedFilled as default } diff --git a/src/IconYoutubeActivityRoundedFilled.tsx b/src/IconYoutubeActivityRoundedFilled.tsx new file mode 100644 index 000000000..a9d5d31f1 --- /dev/null +++ b/src/IconYoutubeActivityRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeActivityRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconYoutubeActivityRoundedFilled as default } diff --git a/src/IconYoutubeActivitySharpFilled.tsx b/src/IconYoutubeActivitySharpFilled.tsx new file mode 100644 index 000000000..2ecb1adf1 --- /dev/null +++ b/src/IconYoutubeActivitySharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeActivitySharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconYoutubeActivitySharpFilled as default } diff --git a/src/IconYoutubeSearchedForOutlinedFilled.tsx b/src/IconYoutubeSearchedForOutlinedFilled.tsx new file mode 100644 index 000000000..7fb1e0b60 --- /dev/null +++ b/src/IconYoutubeSearchedForOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconYoutubeSearchedForOutlinedFilled as default } diff --git a/src/IconYoutubeSearchedForRoundedFilled.tsx b/src/IconYoutubeSearchedForRoundedFilled.tsx new file mode 100644 index 000000000..b3d76b9ed --- /dev/null +++ b/src/IconYoutubeSearchedForRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconYoutubeSearchedForRoundedFilled as default } diff --git a/src/IconYoutubeSearchedForSharpFilled.tsx b/src/IconYoutubeSearchedForSharpFilled.tsx new file mode 100644 index 000000000..6e2883749 --- /dev/null +++ b/src/IconYoutubeSearchedForSharpFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconYoutubeSearchedForSharpFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconYoutubeSearchedForSharpFilled as default } diff --git a/src/IconZonePersonAlertOutlinedFilled.tsx b/src/IconZonePersonAlertOutlinedFilled.tsx new file mode 100644 index 000000000..3660930c2 --- /dev/null +++ b/src/IconZonePersonAlertOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonAlertOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonAlertOutlinedFilled as default } diff --git a/src/IconZonePersonAlertRoundedFilled.tsx b/src/IconZonePersonAlertRoundedFilled.tsx new file mode 100644 index 000000000..fabd5c777 --- /dev/null +++ b/src/IconZonePersonAlertRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonAlertRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonAlertRoundedFilled as default } diff --git a/src/IconZonePersonAlertSharpFilled.tsx b/src/IconZonePersonAlertSharpFilled.tsx new file mode 100644 index 000000000..561ae702a --- /dev/null +++ b/src/IconZonePersonAlertSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonAlertSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonAlertSharpFilled as default } diff --git a/src/IconZonePersonIdleOutlinedFilled.tsx b/src/IconZonePersonIdleOutlinedFilled.tsx new file mode 100644 index 000000000..4241c9441 --- /dev/null +++ b/src/IconZonePersonIdleOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonIdleOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonIdleOutlinedFilled as default } diff --git a/src/IconZonePersonIdleRoundedFilled.tsx b/src/IconZonePersonIdleRoundedFilled.tsx new file mode 100644 index 000000000..1bb9c9943 --- /dev/null +++ b/src/IconZonePersonIdleRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonIdleRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonIdleRoundedFilled as default } diff --git a/src/IconZonePersonIdleSharpFilled.tsx b/src/IconZonePersonIdleSharpFilled.tsx new file mode 100644 index 000000000..dea2913a1 --- /dev/null +++ b/src/IconZonePersonIdleSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonIdleSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonIdleSharpFilled as default } diff --git a/src/IconZonePersonUrgentOutlinedFilled.tsx b/src/IconZonePersonUrgentOutlinedFilled.tsx new file mode 100644 index 000000000..08fa28cd1 --- /dev/null +++ b/src/IconZonePersonUrgentOutlinedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonUrgentOutlinedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonUrgentOutlinedFilled as default } diff --git a/src/IconZonePersonUrgentRoundedFilled.tsx b/src/IconZonePersonUrgentRoundedFilled.tsx new file mode 100644 index 000000000..2396135de --- /dev/null +++ b/src/IconZonePersonUrgentRoundedFilled.tsx @@ -0,0 +1,13 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonUrgentRoundedFilled: React.FC = ({ + ...props +}) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonUrgentRoundedFilled as default } diff --git a/src/IconZonePersonUrgentSharpFilled.tsx b/src/IconZonePersonUrgentSharpFilled.tsx new file mode 100644 index 000000000..89574dc31 --- /dev/null +++ b/src/IconZonePersonUrgentSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZonePersonUrgentSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZonePersonUrgentSharpFilled as default } diff --git a/src/IconZoomInMapOutlinedFilled.tsx b/src/IconZoomInMapOutlinedFilled.tsx new file mode 100644 index 000000000..1d69ff96e --- /dev/null +++ b/src/IconZoomInMapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomInMapOutlinedFilled as default } diff --git a/src/IconZoomInMapRoundedFilled.tsx b/src/IconZoomInMapRoundedFilled.tsx new file mode 100644 index 000000000..d90c3e281 --- /dev/null +++ b/src/IconZoomInMapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomInMapRoundedFilled as default } diff --git a/src/IconZoomInMapSharpFilled.tsx b/src/IconZoomInMapSharpFilled.tsx new file mode 100644 index 000000000..ff0cc34f9 --- /dev/null +++ b/src/IconZoomInMapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInMapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomInMapSharpFilled as default } diff --git a/src/IconZoomInOutlinedFilled.tsx b/src/IconZoomInOutlinedFilled.tsx new file mode 100644 index 000000000..6aec42cf9 --- /dev/null +++ b/src/IconZoomInOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomInOutlinedFilled as default } diff --git a/src/IconZoomInRoundedFilled.tsx b/src/IconZoomInRoundedFilled.tsx new file mode 100644 index 000000000..989b5cb3d --- /dev/null +++ b/src/IconZoomInRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomInRoundedFilled as default } diff --git a/src/IconZoomInSharpFilled.tsx b/src/IconZoomInSharpFilled.tsx new file mode 100644 index 000000000..2d5e2a723 --- /dev/null +++ b/src/IconZoomInSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomInSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomInSharpFilled as default } diff --git a/src/IconZoomOutMapOutlinedFilled.tsx b/src/IconZoomOutMapOutlinedFilled.tsx new file mode 100644 index 000000000..488bf37c4 --- /dev/null +++ b/src/IconZoomOutMapOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomOutMapOutlinedFilled as default } diff --git a/src/IconZoomOutMapRoundedFilled.tsx b/src/IconZoomOutMapRoundedFilled.tsx new file mode 100644 index 000000000..0033e72f1 --- /dev/null +++ b/src/IconZoomOutMapRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomOutMapRoundedFilled as default } diff --git a/src/IconZoomOutMapSharpFilled.tsx b/src/IconZoomOutMapSharpFilled.tsx new file mode 100644 index 000000000..4522d036c --- /dev/null +++ b/src/IconZoomOutMapSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutMapSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomOutMapSharpFilled as default } diff --git a/src/IconZoomOutOutlinedFilled.tsx b/src/IconZoomOutOutlinedFilled.tsx new file mode 100644 index 000000000..3072b3306 --- /dev/null +++ b/src/IconZoomOutOutlinedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutOutlinedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomOutOutlinedFilled as default } diff --git a/src/IconZoomOutRoundedFilled.tsx b/src/IconZoomOutRoundedFilled.tsx new file mode 100644 index 000000000..b691879f5 --- /dev/null +++ b/src/IconZoomOutRoundedFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutRoundedFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomOutRoundedFilled as default } diff --git a/src/IconZoomOutSharpFilled.tsx b/src/IconZoomOutSharpFilled.tsx new file mode 100644 index 000000000..3d173931c --- /dev/null +++ b/src/IconZoomOutSharpFilled.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import { IconProps } from './types' + +const IconZoomOutSharpFilled: React.FC = ({ ...props }) => ( + + {props.title && {props.title}} + + +) + +export { IconZoomOutSharpFilled as default }