diff --git a/assets/baseIcons/icon-bold.svg b/assets/baseIcons/icon-bold.svg
new file mode 100644
index 0000000..ac6ae84
--- /dev/null
+++ b/assets/baseIcons/icon-bold.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/assets/baseIcons/icon-italics.svg b/assets/baseIcons/icon-italics.svg
new file mode 100644
index 0000000..72a9566
--- /dev/null
+++ b/assets/baseIcons/icon-italics.svg
@@ -0,0 +1,7 @@
+
+
\ No newline at end of file
diff --git a/assets/baseIcons/icon-quotes.svg b/assets/baseIcons/icon-quotes.svg
new file mode 100644
index 0000000..dafd7f0
--- /dev/null
+++ b/assets/baseIcons/icon-quotes.svg
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/src/IconLists.js b/src/IconLists.js
index 0a7735e..f341137 100644
--- a/src/IconLists.js
+++ b/src/IconLists.js
@@ -14,6 +14,7 @@ const baseIcons = [
'Authorise',
'Basket',
'BasketAdd',
+ 'Bold',
'Calendar',
'CalendarChecked',
'Chat',
@@ -62,6 +63,7 @@ const baseIcons = [
'Info',
'Internet',
'Isa',
+ 'Italics',
'Link',
'LinkBreadcrumb',
'LinkExternal',
@@ -88,6 +90,7 @@ const baseIcons = [
'Plus',
'Preview',
'Print',
+ 'Quotes',
'RadioButtonOn',
'Refresh',
'Registers',
diff --git a/src/baseIcons/Bold.tsx b/src/baseIcons/Bold.tsx
new file mode 100644
index 0000000..4db1243
--- /dev/null
+++ b/src/baseIcons/Bold.tsx
@@ -0,0 +1,33 @@
+
+import React from 'react';
+import { default as styled } from 'styled-components';
+import classnames from 'classnames';
+import { IconBold as Bold } from '../../svgrComponents/baseIcons/';
+import { baseIconStyles } from '../utils/styles';
+import { BaseIconProps } from './iconInterface';
+import { baseClassName, cursorPointerClassName } from '../utils/classes';
+import { ariaFocusableNoLabel, ariaLabelOrHidden } from '../utils/aria';
+
+const StyledIconBold = styled((props: BaseIconProps) => {
+ const { className, mousePointer, ariaLabel, color, fill, baseColor, highlightColor, ...passProps } =
+ props;
+ return (
+
+ );
+})`
+ ${baseIconStyles}
+`;
+
+const IconBold = (props: BaseIconProps) => {
+ return
+}
+
+IconBold.displayName = 'Icon';
+export { IconBold };
diff --git a/src/baseIcons/Italics.tsx b/src/baseIcons/Italics.tsx
new file mode 100644
index 0000000..b715480
--- /dev/null
+++ b/src/baseIcons/Italics.tsx
@@ -0,0 +1,33 @@
+
+import React from 'react';
+import { default as styled } from 'styled-components';
+import classnames from 'classnames';
+import { IconItalics as Italics } from '../../svgrComponents/baseIcons/';
+import { baseIconStyles } from '../utils/styles';
+import { BaseIconProps } from './iconInterface';
+import { baseClassName, cursorPointerClassName } from '../utils/classes';
+import { ariaFocusableNoLabel, ariaLabelOrHidden } from '../utils/aria';
+
+const StyledIconItalics = styled((props: BaseIconProps) => {
+ const { className, mousePointer, ariaLabel, color, fill, baseColor, highlightColor, ...passProps } =
+ props;
+ return (
+
+ );
+})`
+ ${baseIconStyles}
+`;
+
+const IconItalics = (props: BaseIconProps) => {
+ return
+}
+
+IconItalics.displayName = 'Icon';
+export { IconItalics };
diff --git a/src/baseIcons/Quotes.tsx b/src/baseIcons/Quotes.tsx
new file mode 100644
index 0000000..f6395a0
--- /dev/null
+++ b/src/baseIcons/Quotes.tsx
@@ -0,0 +1,33 @@
+
+import React from 'react';
+import { default as styled } from 'styled-components';
+import classnames from 'classnames';
+import { IconQuotes as Quotes } from '../../svgrComponents/baseIcons/';
+import { baseIconStyles } from '../utils/styles';
+import { BaseIconProps } from './iconInterface';
+import { baseClassName, cursorPointerClassName } from '../utils/classes';
+import { ariaFocusableNoLabel, ariaLabelOrHidden } from '../utils/aria';
+
+const StyledIconQuotes = styled((props: BaseIconProps) => {
+ const { className, mousePointer, ariaLabel, color, fill, baseColor, highlightColor, ...passProps } =
+ props;
+ return (
+
+ );
+})`
+ ${baseIconStyles}
+`;
+
+const IconQuotes = (props: BaseIconProps) => {
+ return
+}
+
+IconQuotes.displayName = 'Icon';
+export { IconQuotes };
diff --git a/src/baseIcons/index.ts b/src/baseIcons/index.ts
index e64f6a0..ee54bc2 100644
--- a/src/baseIcons/index.ts
+++ b/src/baseIcons/index.ts
@@ -13,6 +13,7 @@ export { IconAttachment } from './Attachment';
export { IconAuthorise } from './Authorise';
export { IconBasket } from './Basket';
export { IconBasketAdd } from './BasketAdd';
+export { IconBold } from './Bold';
export { IconCalendar } from './Calendar';
export { IconCalendarChecked } from './CalendarChecked';
export { IconChat } from './Chat';
@@ -61,6 +62,7 @@ export { IconInfoFilled } from './InfoFilled';
export { IconInfo } from './Info';
export { IconInternet } from './Internet';
export { IconIsa } from './Isa';
+export { IconItalics } from './Italics';
export { IconLink } from './Link';
export { IconLinkBreadcrumb } from './LinkBreadcrumb';
export { IconLinkExternal } from './LinkExternal';
@@ -87,6 +89,7 @@ export { IconPhone } from './Phone';
export { IconPlus } from './Plus';
export { IconPreview } from './Preview';
export { IconPrint } from './Print';
+export { IconQuotes } from './Quotes';
export { IconRadioButtonOn } from './RadioButtonOn';
export { IconRefresh } from './Refresh';
export { IconRegisters } from './Registers';
diff --git a/src/iconLists.ts b/src/iconLists.ts
index 58b50b4..0b6de31 100644
--- a/src/iconLists.ts
+++ b/src/iconLists.ts
@@ -1,6 +1,6 @@
/* NOTE: Do not modify this file manually! It is generated by `createComponents.js` when running `yarn generate` */
-export const baseIcons = ["Alert","AlertOff","AlignLeft","ApplicationProfile","Archive","ArrowUp","ArrowRight","ArrowDown","ArrowLeft","ArrowheadDown","ArrowheadUp","Attachment","Authorise","Basket","BasketAdd","Calendar","CalendarChecked","Chat","ChatHeart","ChatQuestion","Check","CheckCircleFilled","CheckCircle","CheckSelected","ChevronUp","ChevronRight","ChevronDown","ChevronLeft","ChevronCircleUp","ChevronCircleRight","ChevronCircleDown","ChevronCircleLeft","ChevronDoubleRight","ChevronDoubleLeft","Clock","Close","Compare","CompareRemove","ControlPrevious","ControlPlay","ControlNext","Copy","Disabled","Download","Edit","ErrorFilled","Error","ExpandableMinus","ExpandablePlus","FileGeneric","Fullscreen","Grid","HeartFilled","Heart","HelpFilled","Help","Hint","History","Image","InfoFilled","Info","Internet","Isa","Link","LinkBreadcrumb","LinkExternal","LinkList","ListBulleted","ListNumbered","Login","Logout","MailSend","MapLayers","MapLocationFilled","MapLocation","MapMyLocation","MapRoute","Map","Menu","Merge","Message","Minus","OptionsVertical","Peek","Pin","Phone","Plus","Preview","Print","RadioButtonOn","Refresh","Registers","Remove","Reply","Rows","Save","Search","Settings","SignLanguageContent","Split","Star","StarFilled","SubDirectory","SwapRounded","SwapVertical","TransportBicycle","TransportBus","TransportCar","TransportWalk","Upload","Warning","Window"]
+export const baseIcons = ["Alert","AlertOff","AlignLeft","ApplicationProfile","Archive","ArrowUp","ArrowRight","ArrowDown","ArrowLeft","ArrowheadDown","ArrowheadUp","Attachment","Authorise","Basket","BasketAdd","Bold","Calendar","CalendarChecked","Chat","ChatHeart","ChatQuestion","Check","CheckCircleFilled","CheckCircle","CheckSelected","ChevronUp","ChevronRight","ChevronDown","ChevronLeft","ChevronCircleUp","ChevronCircleRight","ChevronCircleDown","ChevronCircleLeft","ChevronDoubleRight","ChevronDoubleLeft","Clock","Close","Compare","CompareRemove","ControlPrevious","ControlPlay","ControlNext","Copy","Disabled","Download","Edit","ErrorFilled","Error","ExpandableMinus","ExpandablePlus","FileGeneric","Fullscreen","Grid","HeartFilled","Heart","HelpFilled","Help","Hint","History","Image","InfoFilled","Info","Internet","Isa","Italics","Link","LinkBreadcrumb","LinkExternal","LinkList","ListBulleted","ListNumbered","Login","Logout","MailSend","MapLayers","MapLocationFilled","MapLocation","MapMyLocation","MapRoute","Map","Menu","Merge","Message","Minus","OptionsVertical","Peek","Pin","Phone","Plus","Preview","Print","Quotes","RadioButtonOn","Refresh","Registers","Remove","Reply","Rows","Save","Search","Settings","SignLanguageContent","Split","Star","StarFilled","SubDirectory","SwapRounded","SwapVertical","TransportBicycle","TransportBus","TransportCar","TransportWalk","Upload","Warning","Window"]
export const componentIcons = ["RadioButton","RadioButtonLarge","Toggle","Preloader"]
export const doctypeIcons = ["Doc","GenericFile","Pdf","Ppt","Xls","Xml"]
export const illustrativeIcons = ["Authorisation","Book","Briefcase","BuildingAdministrative","Buildings","Catalog","ChartAnalytics","ChartPie","ChartScreen","ChartStatistic","ChatBubbles","Child","Cogwheel","Collaboration","Contract","Conversation","Court","CreditCards","Database","Mobile","Display","Doctor","Environment","Exchange","Failure","Family","Faq","Feedback","FileCabinet","Finance","Folder","Global","Group","Growth","HandCoins","HandPlate","Helpdesk","Home","House","IdBadge","LaptopContent","Laptop","Leap","Location","MagicWand","Mailbox","ManButtons","ManGlasses","ManLaptop","MessageSent","Messages","Meter","MigrationFinland","Money","MoneyBag","Organisation","MobileText","PiggyBank","Pillar","PlaneFlying","Presentation","Puzzle","Register","Rocket","ScaleBalance","Scale","Server","Shelter","Shop","Smartwatch","SocialSecurity","Steering","Success","Support","Swim","TabletText","Tablet","Team","Touch","Train","UserBadge","UserProfile","WebDevelopment","WebService","WomanButtons","WomanNecklace"]
diff --git a/src/index.ts b/src/index.ts
index 6041f37..f49aa19 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -13,6 +13,7 @@ export { IconAttachment } from './baseIcons/';
export { IconAuthorise } from './baseIcons/';
export { IconBasket } from './baseIcons/';
export { IconBasketAdd } from './baseIcons/';
+export { IconBold } from './baseIcons/';
export { IconCalendar } from './baseIcons/';
export { IconCalendarChecked } from './baseIcons/';
export { IconChat } from './baseIcons/';
@@ -61,6 +62,7 @@ export { IconInfoFilled } from './baseIcons/';
export { IconInfo } from './baseIcons/';
export { IconInternet } from './baseIcons/';
export { IconIsa } from './baseIcons/';
+export { IconItalics } from './baseIcons/';
export { IconLink } from './baseIcons/';
export { IconLinkBreadcrumb } from './baseIcons/';
export { IconLinkExternal } from './baseIcons/';
@@ -87,6 +89,7 @@ export { IconPhone } from './baseIcons/';
export { IconPlus } from './baseIcons/';
export { IconPreview } from './baseIcons/';
export { IconPrint } from './baseIcons/';
+export { IconQuotes } from './baseIcons/';
export { IconRadioButtonOn } from './baseIcons/';
export { IconRefresh } from './baseIcons/';
export { IconRegisters } from './baseIcons/';
diff --git a/svgrComponents/baseIcons/IconBold.tsx b/svgrComponents/baseIcons/IconBold.tsx
new file mode 100644
index 0000000..d588ffe
--- /dev/null
+++ b/svgrComponents/baseIcons/IconBold.tsx
@@ -0,0 +1,19 @@
+import * as React from 'react';
+import { SVGProps } from 'react';
+const SvgIconBold = (props: SVGProps) => (
+
+);
+export default SvgIconBold;
diff --git a/svgrComponents/baseIcons/IconItalics.tsx b/svgrComponents/baseIcons/IconItalics.tsx
new file mode 100644
index 0000000..72d027b
--- /dev/null
+++ b/svgrComponents/baseIcons/IconItalics.tsx
@@ -0,0 +1,19 @@
+import * as React from 'react';
+import { SVGProps } from 'react';
+const SvgIconItalics = (props: SVGProps) => (
+
+);
+export default SvgIconItalics;
diff --git a/svgrComponents/baseIcons/IconQuotes.tsx b/svgrComponents/baseIcons/IconQuotes.tsx
new file mode 100644
index 0000000..0c8baa8
--- /dev/null
+++ b/svgrComponents/baseIcons/IconQuotes.tsx
@@ -0,0 +1,16 @@
+import * as React from 'react';
+import { SVGProps } from 'react';
+const SvgIconQuotes = (props: SVGProps) => (
+
+);
+export default SvgIconQuotes;
diff --git a/svgrComponents/baseIcons/index.ts b/svgrComponents/baseIcons/index.ts
index ae58daf..10c5f4e 100644
--- a/svgrComponents/baseIcons/index.ts
+++ b/svgrComponents/baseIcons/index.ts
@@ -13,6 +13,7 @@ export { default as IconAttachment } from './IconAttachment';
export { default as IconAuthorise } from './IconAuthorise';
export { default as IconBasketAdd } from './IconBasketAdd';
export { default as IconBasket } from './IconBasket';
+export { default as IconBold } from './IconBold';
export { default as IconCalendarChecked } from './IconCalendarChecked';
export { default as IconCalendar } from './IconCalendar';
export { default as IconChatHeart } from './IconChatHeart';
@@ -61,6 +62,7 @@ export { default as IconInfoFilled } from './IconInfoFilled';
export { default as IconInfo } from './IconInfo';
export { default as IconInternet } from './IconInternet';
export { default as IconIsa } from './IconIsa';
+export { default as IconItalics } from './IconItalics';
export { default as IconLinkBreadcrumb } from './IconLinkBreadcrumb';
export { default as IconLinkExternal } from './IconLinkExternal';
export { default as IconLinkList } from './IconLinkList';
@@ -87,6 +89,7 @@ export { default as IconPin } from './IconPin';
export { default as IconPlus } from './IconPlus';
export { default as IconPreview } from './IconPreview';
export { default as IconPrint } from './IconPrint';
+export { default as IconQuotes } from './IconQuotes';
export { default as IconRadioButtonOn } from './IconRadioButtonOn';
export { default as IconRefresh } from './IconRefresh';
export { default as IconRegisters } from './IconRegisters';