braid-design-system 33.11.6-test-20251007010150 → 33.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,10 +1,28 @@
1
1
  # braid-design-system
2
2
 
3
- ## 33.11.6-test-20251007010150
3
+ ## 33.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - **IconSocialTiktok:** Add component ([#1889](https://github.com/seek-oss/braid-design-system/pull/1889))
8
+
9
+ **EXAMPLE USAGE:**
10
+
11
+ ```jsx
12
+ <IconSocialTiktok />
13
+ ```
14
+
15
+ - **IconMicrophone:** Add component ([#1887](https://github.com/seek-oss/braid-design-system/pull/1887))
16
+
17
+ **EXAMPLE USAGE:**
18
+
19
+ ```jsx
20
+ <IconMicrophone />
21
+ ```
4
22
 
5
23
  ### Patch Changes
6
24
 
7
- - test (354a279dec86922b4f73a611552c2cbe3a128824)
25
+ - **IconAttachment, IconLocation:** Update artworks to be more rounded and spacious, consistent with the latest design language ([#1887](https://github.com/seek-oss/braid-design-system/pull/1887))
8
26
 
9
27
  ## 33.11.5
10
28
 
package/dist/index.cjs CHANGED
@@ -137,6 +137,7 @@ const lib_components_icons_IconList_IconList_cjs = require("./lib/components/ico
137
137
  const lib_components_icons_IconLocation_IconLocation_cjs = require("./lib/components/icons/IconLocation/IconLocation.cjs");
138
138
  const lib_components_icons_IconMail_IconMail_cjs = require("./lib/components/icons/IconMail/IconMail.cjs");
139
139
  const lib_components_icons_IconMessage_IconMessage_cjs = require("./lib/components/icons/IconMessage/IconMessage.cjs");
140
+ const lib_components_icons_IconMicrophone_IconMicrophone_cjs = require("./lib/components/icons/IconMicrophone/IconMicrophone.cjs");
140
141
  const lib_components_icons_IconMinus_IconMinus_cjs = require("./lib/components/icons/IconMinus/IconMinus.cjs");
141
142
  const lib_components_icons_IconMobile_IconMobile_cjs = require("./lib/components/icons/IconMobile/IconMobile.cjs");
142
143
  const lib_components_icons_IconMoney_IconMoney_cjs = require("./lib/components/icons/IconMoney/IconMoney.cjs");
@@ -174,6 +175,7 @@ const lib_components_icons_IconSocialGitHub_IconSocialGitHub_cjs = require("./li
174
175
  const lib_components_icons_IconSocialInstagram_IconSocialInstagram_cjs = require("./lib/components/icons/IconSocialInstagram/IconSocialInstagram.cjs");
175
176
  const lib_components_icons_IconSocialLinkedIn_IconSocialLinkedIn_cjs = require("./lib/components/icons/IconSocialLinkedIn/IconSocialLinkedIn.cjs");
176
177
  const lib_components_icons_IconSocialMedium_IconSocialMedium_cjs = require("./lib/components/icons/IconSocialMedium/IconSocialMedium.cjs");
178
+ const lib_components_icons_IconSocialTiktok_IconSocialTiktok_cjs = require("./lib/components/icons/IconSocialTiktok/IconSocialTiktok.cjs");
177
179
  const lib_components_icons_IconSocialX_IconSocialX_cjs = require("./lib/components/icons/IconSocialX/IconSocialX.cjs");
178
180
  const lib_components_icons_IconSocialYouTube_IconSocialYouTube_cjs = require("./lib/components/icons/IconSocialYouTube/IconSocialYouTube.cjs");
179
181
  const lib_components_icons_IconSort_IconSort_cjs = require("./lib/components/icons/IconSort/IconSort.cjs");
@@ -333,6 +335,7 @@ exports.IconList = lib_components_icons_IconList_IconList_cjs.IconList;
333
335
  exports.IconLocation = lib_components_icons_IconLocation_IconLocation_cjs.IconLocation;
334
336
  exports.IconMail = lib_components_icons_IconMail_IconMail_cjs.IconMail;
335
337
  exports.IconMessage = lib_components_icons_IconMessage_IconMessage_cjs.IconMessage;
338
+ exports.IconMicrophone = lib_components_icons_IconMicrophone_IconMicrophone_cjs.IconMicrophone;
336
339
  exports.IconMinus = lib_components_icons_IconMinus_IconMinus_cjs.IconMinus;
337
340
  exports.IconMobile = lib_components_icons_IconMobile_IconMobile_cjs.IconMobile;
338
341
  exports.IconMoney = lib_components_icons_IconMoney_IconMoney_cjs.IconMoney;
@@ -370,6 +373,7 @@ exports.IconSocialGitHub = lib_components_icons_IconSocialGitHub_IconSocialGitHu
370
373
  exports.IconSocialInstagram = lib_components_icons_IconSocialInstagram_IconSocialInstagram_cjs.IconSocialInstagram;
371
374
  exports.IconSocialLinkedIn = lib_components_icons_IconSocialLinkedIn_IconSocialLinkedIn_cjs.IconSocialLinkedIn;
372
375
  exports.IconSocialMedium = lib_components_icons_IconSocialMedium_IconSocialMedium_cjs.IconSocialMedium;
376
+ exports.IconSocialTiktok = lib_components_icons_IconSocialTiktok_IconSocialTiktok_cjs.IconSocialTiktok;
373
377
  exports.IconSocialX = lib_components_icons_IconSocialX_IconSocialX_cjs.IconSocialX;
374
378
  exports.IconSocialYouTube = lib_components_icons_IconSocialYouTube_IconSocialYouTube_cjs.IconSocialYouTube;
375
379
  exports.IconSort = lib_components_icons_IconSort_IconSort_cjs.IconSort;
package/dist/index.d.mts CHANGED
@@ -4191,6 +4191,9 @@ declare const IconMail: (props: IconMailProps) => react.JSX.Element;
4191
4191
  type IconMessageProps = IconContainerProps;
4192
4192
  declare const IconMessage: (props: IconMessageProps) => react.JSX.Element;
4193
4193
 
4194
+ type IconMicrophoneProps = IconContainerProps;
4195
+ declare const IconMicrophone: (props: IconMicrophoneProps) => react.JSX.Element;
4196
+
4194
4197
  type IconMinusProps = IconContainerProps;
4195
4198
  declare const IconMinus: (props: IconMinusProps) => react.JSX.Element;
4196
4199
 
@@ -4305,6 +4308,9 @@ declare const IconSocialLinkedIn: (props: IconSocialLinkedInProps) => react.JSX.
4305
4308
  type IconSocialMediumProps = IconContainerProps;
4306
4309
  declare const IconSocialMedium: (props: IconSocialMediumProps) => react.JSX.Element;
4307
4310
 
4311
+ type IconSocialTiktokProps = IconContainerProps;
4312
+ declare const IconSocialTiktok: (props: IconSocialTiktokProps) => react.JSX.Element;
4313
+
4308
4314
  type IconSocialXProps = IconContainerProps;
4309
4315
  declare const IconSocialX: (props: IconSocialXProps) => react.JSX.Element;
4310
4316
 
@@ -5354,5 +5360,5 @@ declare const _default: {
5354
5360
  code: string;
5355
5361
  }[];
5356
5362
 
5357
- export { Accordion$1 as Accordion, Accordion as Accordion$1, AccordionItem$1 as AccordionItem, AccordionItem as AccordionItem$1, Actions, Alert$1 as Alert, Alert as Alert$1, Autosuggest$1 as Autosuggest, Autosuggest as Autosuggest$1, Badge$1 as Badge, Badge as Badge$1, Bleed$1 as Bleed, Bleed as Bleed$1, PublicBox as Box, Box as Box$1, BoxRenderer, BraidPortal, BraidProvider, BraidTestProvider, Button$1 as Button, Button as Button$1, ButtonIcon$1 as ButtonIcon, ButtonIcon as ButtonIcon$1, ButtonLink$1 as ButtonLink, ButtonLink as ButtonLink$1, Card$1 as Card, Card as Card$1, Checkbox$1 as Checkbox, Checkbox as Checkbox$1, CheckboxStandalone$1 as CheckboxStandalone, CheckboxStandalone as CheckboxStandalone$1, Column, Columns$1 as Columns, Columns as Columns$1, ContentBlock, Dialog$1 as Dialog, Dialog as Dialog$1, Disclosure$1 as Disclosure, Disclosure as Disclosure$1, Divider, Drawer$1 as Drawer, Drawer as Drawer$1, Dropdown$1 as Dropdown, Dropdown as Dropdown$1, FieldLabel$1 as FieldLabel, FieldLabel as FieldLabel$1, FieldMessage$1 as FieldMessage, FieldMessage as FieldMessage$1, Heading$1 as Heading, Heading as Heading$1, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Inline as Inline$1, Link$1 as Link, Link as Link$1, List$1 as List, List as List$1, Loader, MenuItem$1 as MenuItem, MenuItem as MenuItem$1, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemCheckbox as MenuItemCheckbox$1, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuItemLink as MenuItemLink$1, MenuRenderer, MonthPicker$1 as MonthPicker, MonthPicker as MonthPicker$1, Notice$1 as Notice, Notice as Notice$1, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, Pagination as Pagination$1, PasswordField$1 as PasswordField, PasswordField as PasswordField$1, Placeholder, RadioGroup$1 as RadioGroup, RadioGroup as RadioGroup$1, RadioItem, Rating$1 as Rating, Rating as Rating$1, Secondary, Spread$1 as Spread, Spread as Spread$1, Stack$1 as Stack, Stack as Stack$1, Step$1 as Step, Stepper, Strong, Tab$1 as Tab, Tab as Tab$1, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, Tabs as Tabs$1, TabsProvider, Tag$1 as Tag, Tag as Tag$1, Text, TextDropdown$1 as TextDropdown, TextDropdown as TextDropdown$1, TextField$1 as TextField, TextField as TextField$1, TextLink, TextLinkButton, Textarea$1 as Textarea, Textarea as Textarea$1, ThemeNameConsumer, Tiles$1 as Tiles, Tiles as Tiles$1, ToastProvider, Toggle$1 as Toggle, Toggle as Toggle$1, TooltipRenderer, _default$1 as _default, _default as _default$1, _default$6 as _default$2, _default$2 as _default$3, _default$4, _default$5, _default$3 as _default$6, atoms, breakpoints, colorModeStyle, filterSuggestions, globalHeadingStyle, globalTextStyle, makeLinkComponent, outlineStyle, responsiveStyle, useColor, useResponsiveValue, useScope, useSpace, useThemeName, useToast, vars };
5363
+ export { Accordion$1 as Accordion, Accordion as Accordion$1, AccordionItem$1 as AccordionItem, AccordionItem as AccordionItem$1, Actions, Alert$1 as Alert, Alert as Alert$1, Autosuggest$1 as Autosuggest, Autosuggest as Autosuggest$1, Badge$1 as Badge, Badge as Badge$1, Bleed$1 as Bleed, Bleed as Bleed$1, PublicBox as Box, Box as Box$1, BoxRenderer, BraidPortal, BraidProvider, BraidTestProvider, Button$1 as Button, Button as Button$1, ButtonIcon$1 as ButtonIcon, ButtonIcon as ButtonIcon$1, ButtonLink$1 as ButtonLink, ButtonLink as ButtonLink$1, Card$1 as Card, Card as Card$1, Checkbox$1 as Checkbox, Checkbox as Checkbox$1, CheckboxStandalone$1 as CheckboxStandalone, CheckboxStandalone as CheckboxStandalone$1, Column, Columns$1 as Columns, Columns as Columns$1, ContentBlock, Dialog$1 as Dialog, Dialog as Dialog$1, Disclosure$1 as Disclosure, Disclosure as Disclosure$1, Divider, Drawer$1 as Drawer, Drawer as Drawer$1, Dropdown$1 as Dropdown, Dropdown as Dropdown$1, FieldLabel$1 as FieldLabel, FieldLabel as FieldLabel$1, FieldMessage$1 as FieldMessage, FieldMessage as FieldMessage$1, Heading$1 as Heading, Heading as Heading$1, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Inline as Inline$1, Link$1 as Link, Link as Link$1, List$1 as List, List as List$1, Loader, MenuItem$1 as MenuItem, MenuItem as MenuItem$1, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemCheckbox as MenuItemCheckbox$1, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuItemLink as MenuItemLink$1, MenuRenderer, MonthPicker$1 as MonthPicker, MonthPicker as MonthPicker$1, Notice$1 as Notice, Notice as Notice$1, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, Pagination as Pagination$1, PasswordField$1 as PasswordField, PasswordField as PasswordField$1, Placeholder, RadioGroup$1 as RadioGroup, RadioGroup as RadioGroup$1, RadioItem, Rating$1 as Rating, Rating as Rating$1, Secondary, Spread$1 as Spread, Spread as Spread$1, Stack$1 as Stack, Stack as Stack$1, Step$1 as Step, Stepper, Strong, Tab$1 as Tab, Tab as Tab$1, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, Tabs as Tabs$1, TabsProvider, Tag$1 as Tag, Tag as Tag$1, Text, TextDropdown$1 as TextDropdown, TextDropdown as TextDropdown$1, TextField$1 as TextField, TextField as TextField$1, TextLink, TextLinkButton, Textarea$1 as Textarea, Textarea as Textarea$1, ThemeNameConsumer, Tiles$1 as Tiles, Tiles as Tiles$1, ToastProvider, Toggle$1 as Toggle, Toggle as Toggle$1, TooltipRenderer, _default$1 as _default, _default as _default$1, _default$6 as _default$2, _default$2 as _default$3, _default$4, _default$5, _default$3 as _default$6, atoms, breakpoints, colorModeStyle, filterSuggestions, globalHeadingStyle, globalTextStyle, makeLinkComponent, outlineStyle, responsiveStyle, useColor, useResponsiveValue, useScope, useSpace, useThemeName, useToast, vars };
5358
5364
  export type { Breakpoint, LinkComponent };
package/dist/index.d.ts CHANGED
@@ -4191,6 +4191,9 @@ declare const IconMail: (props: IconMailProps) => react.JSX.Element;
4191
4191
  type IconMessageProps = IconContainerProps;
4192
4192
  declare const IconMessage: (props: IconMessageProps) => react.JSX.Element;
4193
4193
 
4194
+ type IconMicrophoneProps = IconContainerProps;
4195
+ declare const IconMicrophone: (props: IconMicrophoneProps) => react.JSX.Element;
4196
+
4194
4197
  type IconMinusProps = IconContainerProps;
4195
4198
  declare const IconMinus: (props: IconMinusProps) => react.JSX.Element;
4196
4199
 
@@ -4305,6 +4308,9 @@ declare const IconSocialLinkedIn: (props: IconSocialLinkedInProps) => react.JSX.
4305
4308
  type IconSocialMediumProps = IconContainerProps;
4306
4309
  declare const IconSocialMedium: (props: IconSocialMediumProps) => react.JSX.Element;
4307
4310
 
4311
+ type IconSocialTiktokProps = IconContainerProps;
4312
+ declare const IconSocialTiktok: (props: IconSocialTiktokProps) => react.JSX.Element;
4313
+
4308
4314
  type IconSocialXProps = IconContainerProps;
4309
4315
  declare const IconSocialX: (props: IconSocialXProps) => react.JSX.Element;
4310
4316
 
@@ -5354,5 +5360,5 @@ declare const _default: {
5354
5360
  code: string;
5355
5361
  }[];
5356
5362
 
5357
- export { Accordion$1 as Accordion, Accordion as Accordion$1, AccordionItem$1 as AccordionItem, AccordionItem as AccordionItem$1, Actions, Alert$1 as Alert, Alert as Alert$1, Autosuggest$1 as Autosuggest, Autosuggest as Autosuggest$1, Badge$1 as Badge, Badge as Badge$1, Bleed$1 as Bleed, Bleed as Bleed$1, PublicBox as Box, Box as Box$1, BoxRenderer, BraidPortal, BraidProvider, BraidTestProvider, Button$1 as Button, Button as Button$1, ButtonIcon$1 as ButtonIcon, ButtonIcon as ButtonIcon$1, ButtonLink$1 as ButtonLink, ButtonLink as ButtonLink$1, Card$1 as Card, Card as Card$1, Checkbox$1 as Checkbox, Checkbox as Checkbox$1, CheckboxStandalone$1 as CheckboxStandalone, CheckboxStandalone as CheckboxStandalone$1, Column, Columns$1 as Columns, Columns as Columns$1, ContentBlock, Dialog$1 as Dialog, Dialog as Dialog$1, Disclosure$1 as Disclosure, Disclosure as Disclosure$1, Divider, Drawer$1 as Drawer, Drawer as Drawer$1, Dropdown$1 as Dropdown, Dropdown as Dropdown$1, FieldLabel$1 as FieldLabel, FieldLabel as FieldLabel$1, FieldMessage$1 as FieldMessage, FieldMessage as FieldMessage$1, Heading$1 as Heading, Heading as Heading$1, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Inline as Inline$1, Link$1 as Link, Link as Link$1, List$1 as List, List as List$1, Loader, MenuItem$1 as MenuItem, MenuItem as MenuItem$1, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemCheckbox as MenuItemCheckbox$1, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuItemLink as MenuItemLink$1, MenuRenderer, MonthPicker$1 as MonthPicker, MonthPicker as MonthPicker$1, Notice$1 as Notice, Notice as Notice$1, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, Pagination as Pagination$1, PasswordField$1 as PasswordField, PasswordField as PasswordField$1, Placeholder, RadioGroup$1 as RadioGroup, RadioGroup as RadioGroup$1, RadioItem, Rating$1 as Rating, Rating as Rating$1, Secondary, Spread$1 as Spread, Spread as Spread$1, Stack$1 as Stack, Stack as Stack$1, Step$1 as Step, Stepper, Strong, Tab$1 as Tab, Tab as Tab$1, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, Tabs as Tabs$1, TabsProvider, Tag$1 as Tag, Tag as Tag$1, Text, TextDropdown$1 as TextDropdown, TextDropdown as TextDropdown$1, TextField$1 as TextField, TextField as TextField$1, TextLink, TextLinkButton, Textarea$1 as Textarea, Textarea as Textarea$1, ThemeNameConsumer, Tiles$1 as Tiles, Tiles as Tiles$1, ToastProvider, Toggle$1 as Toggle, Toggle as Toggle$1, TooltipRenderer, _default$1 as _default, _default as _default$1, _default$6 as _default$2, _default$2 as _default$3, _default$4, _default$5, _default$3 as _default$6, atoms, breakpoints, colorModeStyle, filterSuggestions, globalHeadingStyle, globalTextStyle, makeLinkComponent, outlineStyle, responsiveStyle, useColor, useResponsiveValue, useScope, useSpace, useThemeName, useToast, vars };
5363
+ export { Accordion$1 as Accordion, Accordion as Accordion$1, AccordionItem$1 as AccordionItem, AccordionItem as AccordionItem$1, Actions, Alert$1 as Alert, Alert as Alert$1, Autosuggest$1 as Autosuggest, Autosuggest as Autosuggest$1, Badge$1 as Badge, Badge as Badge$1, Bleed$1 as Bleed, Bleed as Bleed$1, PublicBox as Box, Box as Box$1, BoxRenderer, BraidPortal, BraidProvider, BraidTestProvider, Button$1 as Button, Button as Button$1, ButtonIcon$1 as ButtonIcon, ButtonIcon as ButtonIcon$1, ButtonLink$1 as ButtonLink, ButtonLink as ButtonLink$1, Card$1 as Card, Card as Card$1, Checkbox$1 as Checkbox, Checkbox as Checkbox$1, CheckboxStandalone$1 as CheckboxStandalone, CheckboxStandalone as CheckboxStandalone$1, Column, Columns$1 as Columns, Columns as Columns$1, ContentBlock, Dialog$1 as Dialog, Dialog as Dialog$1, Disclosure$1 as Disclosure, Disclosure as Disclosure$1, Divider, Drawer$1 as Drawer, Drawer as Drawer$1, Dropdown$1 as Dropdown, Dropdown as Dropdown$1, FieldLabel$1 as FieldLabel, FieldLabel as FieldLabel$1, FieldMessage$1 as FieldMessage, FieldMessage as FieldMessage$1, Heading$1 as Heading, Heading as Heading$1, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Inline as Inline$1, Link$1 as Link, Link as Link$1, List$1 as List, List as List$1, Loader, MenuItem$1 as MenuItem, MenuItem as MenuItem$1, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemCheckbox as MenuItemCheckbox$1, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuItemLink as MenuItemLink$1, MenuRenderer, MonthPicker$1 as MonthPicker, MonthPicker as MonthPicker$1, Notice$1 as Notice, Notice as Notice$1, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, Pagination as Pagination$1, PasswordField$1 as PasswordField, PasswordField as PasswordField$1, Placeholder, RadioGroup$1 as RadioGroup, RadioGroup as RadioGroup$1, RadioItem, Rating$1 as Rating, Rating as Rating$1, Secondary, Spread$1 as Spread, Spread as Spread$1, Stack$1 as Stack, Stack as Stack$1, Step$1 as Step, Stepper, Strong, Tab$1 as Tab, Tab as Tab$1, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, Tabs as Tabs$1, TabsProvider, Tag$1 as Tag, Tag as Tag$1, Text, TextDropdown$1 as TextDropdown, TextDropdown as TextDropdown$1, TextField$1 as TextField, TextField as TextField$1, TextLink, TextLinkButton, Textarea$1 as Textarea, Textarea as Textarea$1, ThemeNameConsumer, Tiles$1 as Tiles, Tiles as Tiles$1, ToastProvider, Toggle$1 as Toggle, Toggle as Toggle$1, TooltipRenderer, _default$1 as _default, _default as _default$1, _default$6 as _default$2, _default$2 as _default$3, _default$4, _default$5, _default$3 as _default$6, atoms, breakpoints, colorModeStyle, filterSuggestions, globalHeadingStyle, globalTextStyle, makeLinkComponent, outlineStyle, responsiveStyle, useColor, useResponsiveValue, useScope, useSpace, useThemeName, useToast, vars };
5358
5364
  export type { Breakpoint, LinkComponent };
package/dist/index.mjs CHANGED
@@ -135,6 +135,7 @@ import { IconList } from "./lib/components/icons/IconList/IconList.mjs";
135
135
  import { IconLocation } from "./lib/components/icons/IconLocation/IconLocation.mjs";
136
136
  import { IconMail } from "./lib/components/icons/IconMail/IconMail.mjs";
137
137
  import { IconMessage } from "./lib/components/icons/IconMessage/IconMessage.mjs";
138
+ import { IconMicrophone } from "./lib/components/icons/IconMicrophone/IconMicrophone.mjs";
138
139
  import { IconMinus } from "./lib/components/icons/IconMinus/IconMinus.mjs";
139
140
  import { IconMobile } from "./lib/components/icons/IconMobile/IconMobile.mjs";
140
141
  import { IconMoney } from "./lib/components/icons/IconMoney/IconMoney.mjs";
@@ -172,6 +173,7 @@ import { IconSocialGitHub } from "./lib/components/icons/IconSocialGitHub/IconSo
172
173
  import { IconSocialInstagram } from "./lib/components/icons/IconSocialInstagram/IconSocialInstagram.mjs";
173
174
  import { IconSocialLinkedIn } from "./lib/components/icons/IconSocialLinkedIn/IconSocialLinkedIn.mjs";
174
175
  import { IconSocialMedium } from "./lib/components/icons/IconSocialMedium/IconSocialMedium.mjs";
176
+ import { IconSocialTiktok } from "./lib/components/icons/IconSocialTiktok/IconSocialTiktok.mjs";
175
177
  import { IconSocialX } from "./lib/components/icons/IconSocialX/IconSocialX.mjs";
176
178
  import { IconSocialYouTube } from "./lib/components/icons/IconSocialYouTube/IconSocialYouTube.mjs";
177
179
  import { IconSort } from "./lib/components/icons/IconSort/IconSort.mjs";
@@ -275,6 +277,7 @@ export {
275
277
  IconLocation,
276
278
  IconMail,
277
279
  IconMessage,
280
+ IconMicrophone,
278
281
  IconMinus,
279
282
  IconMobile,
280
283
  IconMoney,
@@ -313,6 +316,7 @@ export {
313
316
  IconSocialInstagram,
314
317
  IconSocialLinkedIn,
315
318
  IconSocialMedium,
319
+ IconSocialTiktok,
316
320
  IconSocialX,
317
321
  IconSocialYouTube,
318
322
  IconSort,
@@ -3,25 +3,17 @@ const jsxRuntime = require("react/jsx-runtime");
3
3
  const IconAttachmentSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
4
4
  "svg",
5
5
  {
6
- width: 16,
7
- height: 16,
8
- viewBox: "0 0 24 24",
9
- fill: "currentColor",
10
6
  xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 24 24",
11
8
  focusable: "false",
9
+ fill: "currentColor",
10
+ width: 16,
11
+ height: 16,
12
12
  "aria-labelledby": titleId,
13
13
  ...props,
14
14
  children: [
15
15
  title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
16
- /* @__PURE__ */ jsxRuntime.jsx(
17
- "path",
18
- {
19
- fillRule: "evenodd",
20
- clipRule: "evenodd",
21
- d: "M16.033 4c-.662 0-1.296.263-1.764.73l-8.026 8.027a4.243 4.243 0 0 0 6 6l8.026-8.026a1 1 0 0 1 1.414 1.415l-8.026 8.026a6.243 6.243 0 1 1-8.828-8.83l8.026-8.025a4.495 4.495 0 1 1 6.357 6.357L11.177 17.7a2.749 2.749 0 0 1-3.886-3.886l7.415-7.406a1 1 0 0 1 1.414 1.415l-7.414 7.405a.75.75 0 0 0 .528 1.277.748.748 0 0 0 .529-.22l8.035-8.025A2.497 2.497 0 0 0 16.033 4Z",
22
- fill: "currentColor"
23
- }
24
- )
16
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M11 21.6c-1.8 0-3.7-.8-5.1-2.1-2.7-2.7-2.7-7.2 0-9.9l5.7-5.7c1.9-1.9 5.1-2 7.1 0 1.9 1.9 1.9 5.1 0 7.1L13 16.7c-1.2 1.2-3.1 1.2-4.2 0-.6-.6-.9-1.3-.9-2.1 0-1.2.3-1.6.9-2.1L12.3 9c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-3.5 3.5c-.2.2-.3.4-.3.7s.1.5.3.7c.4.4 1 .4 1.4 0l5.7-5.7c1.2-1.2 1.2-3.1 0-4.2-1.2-1.2-3.1-1.2-4.2 0l-5.7 5.7c-1.9 1.9-1.9 5.1 0 7.1 1.9 1.9 5.1 1.9 7.1 0l3.5-3.5c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-3.5 3.5c-1.4 1.4-3.2 2-4.9 2Z" })
25
17
  ]
26
18
  }
27
19
  );
@@ -2,25 +2,17 @@ import { jsxs, jsx } from "react/jsx-runtime";
2
2
  const IconAttachmentSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
3
3
  "svg",
4
4
  {
5
- width: 16,
6
- height: 16,
7
- viewBox: "0 0 24 24",
8
- fill: "currentColor",
9
5
  xmlns: "http://www.w3.org/2000/svg",
6
+ viewBox: "0 0 24 24",
10
7
  focusable: "false",
8
+ fill: "currentColor",
9
+ width: 16,
10
+ height: 16,
11
11
  "aria-labelledby": titleId,
12
12
  ...props,
13
13
  children: [
14
14
  title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
15
- /* @__PURE__ */ jsx(
16
- "path",
17
- {
18
- fillRule: "evenodd",
19
- clipRule: "evenodd",
20
- d: "M16.033 4c-.662 0-1.296.263-1.764.73l-8.026 8.027a4.243 4.243 0 0 0 6 6l8.026-8.026a1 1 0 0 1 1.414 1.415l-8.026 8.026a6.243 6.243 0 1 1-8.828-8.83l8.026-8.025a4.495 4.495 0 1 1 6.357 6.357L11.177 17.7a2.749 2.749 0 0 1-3.886-3.886l7.415-7.406a1 1 0 0 1 1.414 1.415l-7.414 7.405a.75.75 0 0 0 .528 1.277.748.748 0 0 0 .529-.22l8.035-8.025A2.497 2.497 0 0 0 16.033 4Z",
21
- fill: "currentColor"
22
- }
23
- )
15
+ /* @__PURE__ */ jsx("path", { d: "M11 21.6c-1.8 0-3.7-.8-5.1-2.1-2.7-2.7-2.7-7.2 0-9.9l5.7-5.7c1.9-1.9 5.1-2 7.1 0 1.9 1.9 1.9 5.1 0 7.1L13 16.7c-1.2 1.2-3.1 1.2-4.2 0-.6-.6-.9-1.3-.9-2.1 0-1.2.3-1.6.9-2.1L12.3 9c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-3.5 3.5c-.2.2-.3.4-.3.7s.1.5.3.7c.4.4 1 .4 1.4 0l5.7-5.7c1.2-1.2 1.2-3.1 0-4.2-1.2-1.2-3.1-1.2-4.2 0l-5.7 5.7c-1.9 1.9-1.9 5.1 0 7.1 1.9 1.9 5.1 1.9 7.1 0l3.5-3.5c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-3.5 3.5c-1.4 1.4-3.2 2-4.9 2Z" })
24
16
  ]
25
17
  }
26
18
  );
@@ -5,7 +5,6 @@ const IconLocationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRun
5
5
  {
6
6
  xmlns: "http://www.w3.org/2000/svg",
7
7
  viewBox: "0 0 24 24",
8
- xmlSpace: "preserve",
9
8
  focusable: "false",
10
9
  fill: "currentColor",
11
10
  width: 16,
@@ -14,8 +13,8 @@ const IconLocationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRun
14
13
  ...props,
15
14
  children: [
16
15
  title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
17
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1C7.6 1 4 4.6 4 9c0 4.1 6.5 12.6 7.2 13.6.2.2.5.4.8.4s.6-.1.8-.4c.7-1 7.2-9.5 7.2-13.6 0-4.4-3.6-8-8-8zm0 19.3c-2.2-3-6-8.8-6-11.3 0-3.3 2.7-6 6-6s6 2.7 6 6c0 2.5-3.8 8.3-6 11.3z" }),
18
- /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 5c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z" })
16
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 13c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3m0-4a1 1 0 1 0 .001 2.001A1 1 0 0 0 12 9" }),
17
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3a7 7 0 0 1 7 7c0 6-7 11-7 11s-7-5-7-11a7 7 0 0 1 7-7m0-2c-4.963 0-9 4.037-9 9 0 6.95 7.518 12.399 7.838 12.627a2 2 0 0 0 2.324 0C13.482 22.4 21 16.95 21 10c0-4.963-4.037-9-9-9" })
19
18
  ]
20
19
  }
21
20
  );
@@ -4,7 +4,6 @@ const IconLocationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
4
4
  {
5
5
  xmlns: "http://www.w3.org/2000/svg",
6
6
  viewBox: "0 0 24 24",
7
- xmlSpace: "preserve",
8
7
  focusable: "false",
9
8
  fill: "currentColor",
10
9
  width: 16,
@@ -13,8 +12,8 @@ const IconLocationSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
13
12
  ...props,
14
13
  children: [
15
14
  title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
16
- /* @__PURE__ */ jsx("path", { d: "M12 1C7.6 1 4 4.6 4 9c0 4.1 6.5 12.6 7.2 13.6.2.2.5.4.8.4s.6-.1.8-.4c.7-1 7.2-9.5 7.2-13.6 0-4.4-3.6-8-8-8zm0 19.3c-2.2-3-6-8.8-6-11.3 0-3.3 2.7-6 6-6s6 2.7 6 6c0 2.5-3.8 8.3-6 11.3z" }),
17
- /* @__PURE__ */ jsx("path", { d: "M12 5c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 4c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z" })
15
+ /* @__PURE__ */ jsx("path", { d: "M12 13c-1.654 0-3-1.346-3-3s1.346-3 3-3 3 1.346 3 3-1.346 3-3 3m0-4a1 1 0 1 0 .001 2.001A1 1 0 0 0 12 9" }),
16
+ /* @__PURE__ */ jsx("path", { d: "M12 3a7 7 0 0 1 7 7c0 6-7 11-7 11s-7-5-7-11a7 7 0 0 1 7-7m0-2c-4.963 0-9 4.037-9 9 0 6.95 7.518 12.399 7.838 12.627a2 2 0 0 0 2.324 0C13.482 22.4 21 16.95 21 10c0-4.963-4.037-9-9-9" })
18
17
  ]
19
18
  }
20
19
  );
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ const jsxRuntime = require("react/jsx-runtime");
3
+ const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
4
+ const lib_components_icons_IconContainer_cjs = require("../IconContainer.cjs");
5
+ const lib_components_icons_IconMicrophone_IconMicrophoneSvg_cjs = require("./IconMicrophoneSvg.cjs");
6
+ const IconMicrophone = (props) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_icons_IconContainer_cjs.IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconMicrophone_IconMicrophoneSvg_cjs.IconMicrophoneSvg, ...svgProps }) });
7
+ exports.IconMicrophone = IconMicrophone;
@@ -0,0 +1,8 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Box } from "../../Box/Box.mjs";
3
+ import { IconContainer } from "../IconContainer.mjs";
4
+ import { IconMicrophoneSvg } from "./IconMicrophoneSvg.mjs";
5
+ const IconMicrophone = (props) => /* @__PURE__ */ jsx(IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsx(Box, { component: IconMicrophoneSvg, ...svgProps }) });
6
+ export {
7
+ IconMicrophone
8
+ };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ const jsxRuntime = require("react/jsx-runtime");
3
+ const IconMicrophoneSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ width: 16,
8
+ height: 16,
9
+ viewBox: "0 0 24 24",
10
+ focusable: "false",
11
+ fill: "currentColor",
12
+ "aria-labelledby": titleId,
13
+ ...props,
14
+ children: [
15
+ title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
16
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 12a1 1 0 1 0-2 0c0 2.757-2.243 5-5 5s-5-2.243-5-5a1 1 0 1 0-2 0c0 3.519 2.614 6.432 6 6.92V20H9a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-2v-1.08c3.386-.488 6-3.401 6-6.92Z" }),
17
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 16c2.206 0 4-1.794 4-4V6c0-2.206-1.794-4-4-4S8 3.794 8 6v6c0 2.206 1.794 4 4 4ZM10 6c0-1.103.897-2 2-2s2 .897 2 2v6c0 1.103-.897 2-2 2s-2-.897-2-2V6Z" })
18
+ ]
19
+ }
20
+ );
21
+ exports.IconMicrophoneSvg = IconMicrophoneSvg;
@@ -0,0 +1,22 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const IconMicrophoneSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ width: 16,
7
+ height: 16,
8
+ viewBox: "0 0 24 24",
9
+ focusable: "false",
10
+ fill: "currentColor",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [
14
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
15
+ /* @__PURE__ */ jsx("path", { d: "M19 12a1 1 0 1 0-2 0c0 2.757-2.243 5-5 5s-5-2.243-5-5a1 1 0 1 0-2 0c0 3.519 2.614 6.432 6 6.92V20H9a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-2v-1.08c3.386-.488 6-3.401 6-6.92Z" }),
16
+ /* @__PURE__ */ jsx("path", { d: "M12 16c2.206 0 4-1.794 4-4V6c0-2.206-1.794-4-4-4S8 3.794 8 6v6c0 2.206 1.794 4 4 4ZM10 6c0-1.103.897-2 2-2s2 .897 2 2v6c0 1.103-.897 2-2 2s-2-.897-2-2V6Z" })
17
+ ]
18
+ }
19
+ );
20
+ export {
21
+ IconMicrophoneSvg
22
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ const jsxRuntime = require("react/jsx-runtime");
3
+ const lib_components_Box_Box_cjs = require("../../Box/Box.cjs");
4
+ const lib_components_icons_IconContainer_cjs = require("../IconContainer.cjs");
5
+ const lib_components_icons_IconSocialTiktok_IconSocialTiktokSvg_cjs = require("./IconSocialTiktokSvg.cjs");
6
+ const IconSocialTiktok = (props) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_icons_IconContainer_cjs.IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsxRuntime.jsx(lib_components_Box_Box_cjs.Box, { component: lib_components_icons_IconSocialTiktok_IconSocialTiktokSvg_cjs.IconSocialTiktokSvg, ...svgProps }) });
7
+ exports.IconSocialTiktok = IconSocialTiktok;
@@ -0,0 +1,8 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import { Box } from "../../Box/Box.mjs";
3
+ import { IconContainer } from "../IconContainer.mjs";
4
+ import { IconSocialTiktokSvg } from "./IconSocialTiktokSvg.mjs";
5
+ const IconSocialTiktok = (props) => /* @__PURE__ */ jsx(IconContainer, { ...props, children: (svgProps) => /* @__PURE__ */ jsx(Box, { component: IconSocialTiktokSvg, ...svgProps }) });
6
+ export {
7
+ IconSocialTiktok
8
+ };
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ const jsxRuntime = require("react/jsx-runtime");
3
+ const IconSocialTiktokSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxRuntime.jsxs(
4
+ "svg",
5
+ {
6
+ xmlns: "http://www.w3.org/2000/svg",
7
+ viewBox: "0 0 24 24",
8
+ focusable: "false",
9
+ fill: "currentColor",
10
+ width: 16,
11
+ height: 16,
12
+ "aria-labelledby": titleId,
13
+ ...props,
14
+ children: [
15
+ title ? /* @__PURE__ */ jsxRuntime.jsx("title", { id: titleId, children: title }) : null,
16
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9.578 22c3.13 0 6.446-2.302 6.446-6.64V8.293c1.381 1.381 3.056 1.815 4.858 1.815V6.925C18.667 6.77 16.218 5.317 15.664 2h-3.197v13.587c0 1.782-1.281 2.923-2.836 2.923s-2.936-1.148-2.936-2.923c0-2.055 1.608-3.143 3.75-2.916V9.227a5.3 5.3 0 0 0-.88-.066c-3.51 0-6.447 2.816-6.447 6.306C3.11 19.164 6.014 22 9.578 22" })
17
+ ]
18
+ }
19
+ );
20
+ exports.IconSocialTiktokSvg = IconSocialTiktokSvg;
@@ -0,0 +1,21 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ const IconSocialTiktokSvg = ({ title, titleId, ...props }) => /* @__PURE__ */ jsxs(
3
+ "svg",
4
+ {
5
+ xmlns: "http://www.w3.org/2000/svg",
6
+ viewBox: "0 0 24 24",
7
+ focusable: "false",
8
+ fill: "currentColor",
9
+ width: 16,
10
+ height: 16,
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [
14
+ title ? /* @__PURE__ */ jsx("title", { id: titleId, children: title }) : null,
15
+ /* @__PURE__ */ jsx("path", { d: "M9.578 22c3.13 0 6.446-2.302 6.446-6.64V8.293c1.381 1.381 3.056 1.815 4.858 1.815V6.925C18.667 6.77 16.218 5.317 15.664 2h-3.197v13.587c0 1.782-1.281 2.923-2.836 2.923s-2.936-1.148-2.936-2.923c0-2.055 1.608-3.143 3.75-2.916V9.227a5.3 5.3 0 0 0-.88-.066c-3.51 0-6.447 2.816-6.447 6.306C3.11 19.164 6.014 22 9.578 22" })
16
+ ]
17
+ }
18
+ );
19
+ export {
20
+ IconSocialTiktokSvg
21
+ };
@@ -138,6 +138,7 @@ const lib_components_icons_IconList_IconList_cjs = require("../lib/components/ic
138
138
  const lib_components_icons_IconLocation_IconLocation_cjs = require("../lib/components/icons/IconLocation/IconLocation.cjs");
139
139
  const lib_components_icons_IconMail_IconMail_cjs = require("../lib/components/icons/IconMail/IconMail.cjs");
140
140
  const lib_components_icons_IconMessage_IconMessage_cjs = require("../lib/components/icons/IconMessage/IconMessage.cjs");
141
+ const lib_components_icons_IconMicrophone_IconMicrophone_cjs = require("../lib/components/icons/IconMicrophone/IconMicrophone.cjs");
141
142
  const lib_components_icons_IconMinus_IconMinus_cjs = require("../lib/components/icons/IconMinus/IconMinus.cjs");
142
143
  const lib_components_icons_IconMobile_IconMobile_cjs = require("../lib/components/icons/IconMobile/IconMobile.cjs");
143
144
  const lib_components_icons_IconMoney_IconMoney_cjs = require("../lib/components/icons/IconMoney/IconMoney.cjs");
@@ -175,6 +176,7 @@ const lib_components_icons_IconSocialGitHub_IconSocialGitHub_cjs = require("../l
175
176
  const lib_components_icons_IconSocialInstagram_IconSocialInstagram_cjs = require("../lib/components/icons/IconSocialInstagram/IconSocialInstagram.cjs");
176
177
  const lib_components_icons_IconSocialLinkedIn_IconSocialLinkedIn_cjs = require("../lib/components/icons/IconSocialLinkedIn/IconSocialLinkedIn.cjs");
177
178
  const lib_components_icons_IconSocialMedium_IconSocialMedium_cjs = require("../lib/components/icons/IconSocialMedium/IconSocialMedium.cjs");
179
+ const lib_components_icons_IconSocialTiktok_IconSocialTiktok_cjs = require("../lib/components/icons/IconSocialTiktok/IconSocialTiktok.cjs");
178
180
  const lib_components_icons_IconSocialX_IconSocialX_cjs = require("../lib/components/icons/IconSocialX/IconSocialX.cjs");
179
181
  const lib_components_icons_IconSocialYouTube_IconSocialYouTube_cjs = require("../lib/components/icons/IconSocialYouTube/IconSocialYouTube.cjs");
180
182
  const lib_components_icons_IconSort_IconSort_cjs = require("../lib/components/icons/IconSort/IconSort.cjs");
@@ -348,6 +350,7 @@ exports.IconList = lib_components_icons_IconList_IconList_cjs.IconList;
348
350
  exports.IconLocation = lib_components_icons_IconLocation_IconLocation_cjs.IconLocation;
349
351
  exports.IconMail = lib_components_icons_IconMail_IconMail_cjs.IconMail;
350
352
  exports.IconMessage = lib_components_icons_IconMessage_IconMessage_cjs.IconMessage;
353
+ exports.IconMicrophone = lib_components_icons_IconMicrophone_IconMicrophone_cjs.IconMicrophone;
351
354
  exports.IconMinus = lib_components_icons_IconMinus_IconMinus_cjs.IconMinus;
352
355
  exports.IconMobile = lib_components_icons_IconMobile_IconMobile_cjs.IconMobile;
353
356
  exports.IconMoney = lib_components_icons_IconMoney_IconMoney_cjs.IconMoney;
@@ -385,6 +388,7 @@ exports.IconSocialGitHub = lib_components_icons_IconSocialGitHub_IconSocialGitHu
385
388
  exports.IconSocialInstagram = lib_components_icons_IconSocialInstagram_IconSocialInstagram_cjs.IconSocialInstagram;
386
389
  exports.IconSocialLinkedIn = lib_components_icons_IconSocialLinkedIn_IconSocialLinkedIn_cjs.IconSocialLinkedIn;
387
390
  exports.IconSocialMedium = lib_components_icons_IconSocialMedium_IconSocialMedium_cjs.IconSocialMedium;
391
+ exports.IconSocialTiktok = lib_components_icons_IconSocialTiktok_IconSocialTiktok_cjs.IconSocialTiktok;
388
392
  exports.IconSocialX = lib_components_icons_IconSocialX_IconSocialX_cjs.IconSocialX;
389
393
  exports.IconSocialYouTube = lib_components_icons_IconSocialYouTube_IconSocialYouTube_cjs.IconSocialYouTube;
390
394
  exports.IconSort = lib_components_icons_IconSort_IconSort_cjs.IconSort;
@@ -1 +1 @@
1
- export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, Actions, Alert$1 as Alert, Autosuggest$1 as Autosuggest, Badge$1 as Badge, Bleed$1 as Bleed, Box$1 as Box, BoxRenderer, BraidPortal, BraidProvider, Button$1 as Button, ButtonIcon$1 as ButtonIcon, ButtonLink$1 as ButtonLink, Card$1 as Card, Checkbox$1 as Checkbox, CheckboxStandalone$1 as CheckboxStandalone, Column, Columns$1 as Columns, ContentBlock, Dialog$1 as Dialog, Disclosure$1 as Disclosure, Divider, Drawer$1 as Drawer, Dropdown$1 as Dropdown, FieldLabel$1 as FieldLabel, FieldMessage$1 as FieldMessage, Heading$1 as Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Link$1 as Link, LinkComponent, List$1 as List, Loader, MenuItem$1 as MenuItem, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuRenderer, MonthPicker$1 as MonthPicker, Notice$1 as Notice, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, PasswordField$1 as PasswordField, Placeholder, RadioGroup$1 as RadioGroup, RadioItem, Rating$1 as Rating, Secondary, Spread$1 as Spread, Stack$1 as Stack, Step, Stepper, Strong, Tab$1 as Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, TabsProvider, Tag$1 as Tag, Text, TextDropdown$1 as TextDropdown, TextField$1 as TextField, TextLink, TextLinkButton, Textarea$1 as Textarea, ThemeNameConsumer, Tiles$1 as Tiles, ToastProvider, Toggle$1 as Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from '../index.js';
1
+ export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, Actions, Alert$1 as Alert, Autosuggest$1 as Autosuggest, Badge$1 as Badge, Bleed$1 as Bleed, Box$1 as Box, BoxRenderer, BraidPortal, BraidProvider, Button$1 as Button, ButtonIcon$1 as ButtonIcon, ButtonLink$1 as ButtonLink, Card$1 as Card, Checkbox$1 as Checkbox, CheckboxStandalone$1 as CheckboxStandalone, Column, Columns$1 as Columns, ContentBlock, Dialog$1 as Dialog, Disclosure$1 as Disclosure, Divider, Drawer$1 as Drawer, Dropdown$1 as Dropdown, FieldLabel$1 as FieldLabel, FieldMessage$1 as FieldMessage, Heading$1 as Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Link$1 as Link, LinkComponent, List$1 as List, Loader, MenuItem$1 as MenuItem, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuRenderer, MonthPicker$1 as MonthPicker, Notice$1 as Notice, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, PasswordField$1 as PasswordField, Placeholder, RadioGroup$1 as RadioGroup, RadioItem, Rating$1 as Rating, Secondary, Spread$1 as Spread, Stack$1 as Stack, Step, Stepper, Strong, Tab$1 as Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, TabsProvider, Tag$1 as Tag, Text, TextDropdown$1 as TextDropdown, TextField$1 as TextField, TextLink, TextLinkButton, Textarea$1 as Textarea, ThemeNameConsumer, Tiles$1 as Tiles, ToastProvider, Toggle$1 as Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from '../index.js';
@@ -1 +1 @@
1
- export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, Actions, Alert$1 as Alert, Autosuggest$1 as Autosuggest, Badge$1 as Badge, Bleed$1 as Bleed, Box$1 as Box, BoxRenderer, BraidPortal, BraidProvider, Button$1 as Button, ButtonIcon$1 as ButtonIcon, ButtonLink$1 as ButtonLink, Card$1 as Card, Checkbox$1 as Checkbox, CheckboxStandalone$1 as CheckboxStandalone, Column, Columns$1 as Columns, ContentBlock, Dialog$1 as Dialog, Disclosure$1 as Disclosure, Divider, Drawer$1 as Drawer, Dropdown$1 as Dropdown, FieldLabel$1 as FieldLabel, FieldMessage$1 as FieldMessage, Heading$1 as Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Link$1 as Link, LinkComponent, List$1 as List, Loader, MenuItem$1 as MenuItem, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuRenderer, MonthPicker$1 as MonthPicker, Notice$1 as Notice, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, PasswordField$1 as PasswordField, Placeholder, RadioGroup$1 as RadioGroup, RadioItem, Rating$1 as Rating, Secondary, Spread$1 as Spread, Stack$1 as Stack, Step, Stepper, Strong, Tab$1 as Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, TabsProvider, Tag$1 as Tag, Text, TextDropdown$1 as TextDropdown, TextField$1 as TextField, TextLink, TextLinkButton, Textarea$1 as Textarea, ThemeNameConsumer, Tiles$1 as Tiles, ToastProvider, Toggle$1 as Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from '../index.js';
1
+ export { Accordion$1 as Accordion, AccordionItem$1 as AccordionItem, Actions, Alert$1 as Alert, Autosuggest$1 as Autosuggest, Badge$1 as Badge, Bleed$1 as Bleed, Box$1 as Box, BoxRenderer, BraidPortal, BraidProvider, Button$1 as Button, ButtonIcon$1 as ButtonIcon, ButtonLink$1 as ButtonLink, Card$1 as Card, Checkbox$1 as Checkbox, CheckboxStandalone$1 as CheckboxStandalone, Column, Columns$1 as Columns, ContentBlock, Dialog$1 as Dialog, Disclosure$1 as Disclosure, Divider, Drawer$1 as Drawer, Dropdown$1 as Dropdown, FieldLabel$1 as FieldLabel, FieldMessage$1 as FieldMessage, Heading$1 as Heading, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconList, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Link$1 as Link, LinkComponent, List$1 as List, Loader, MenuItem$1 as MenuItem, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuRenderer, MonthPicker$1 as MonthPicker, Notice$1 as Notice, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, PasswordField$1 as PasswordField, Placeholder, RadioGroup$1 as RadioGroup, RadioItem, Rating$1 as Rating, Secondary, Spread$1 as Spread, Stack$1 as Stack, Step, Stepper, Strong, Tab$1 as Tab, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, TabsProvider, Tag$1 as Tag, Text, TextDropdown$1 as TextDropdown, TextField$1 as TextField, TextLink, TextLinkButton, Textarea$1 as Textarea, ThemeNameConsumer, Tiles$1 as Tiles, ToastProvider, Toggle$1 as Toggle, TooltipRenderer, filterSuggestions, makeLinkComponent, useColor, useResponsiveValue, useSpace, useThemeName, useToast } from '../index.js';
@@ -136,6 +136,7 @@ import { IconList } from "../lib/components/icons/IconList/IconList.mjs";
136
136
  import { IconLocation } from "../lib/components/icons/IconLocation/IconLocation.mjs";
137
137
  import { IconMail } from "../lib/components/icons/IconMail/IconMail.mjs";
138
138
  import { IconMessage } from "../lib/components/icons/IconMessage/IconMessage.mjs";
139
+ import { IconMicrophone } from "../lib/components/icons/IconMicrophone/IconMicrophone.mjs";
139
140
  import { IconMinus } from "../lib/components/icons/IconMinus/IconMinus.mjs";
140
141
  import { IconMobile } from "../lib/components/icons/IconMobile/IconMobile.mjs";
141
142
  import { IconMoney } from "../lib/components/icons/IconMoney/IconMoney.mjs";
@@ -173,6 +174,7 @@ import { IconSocialGitHub } from "../lib/components/icons/IconSocialGitHub/IconS
173
174
  import { IconSocialInstagram } from "../lib/components/icons/IconSocialInstagram/IconSocialInstagram.mjs";
174
175
  import { IconSocialLinkedIn } from "../lib/components/icons/IconSocialLinkedIn/IconSocialLinkedIn.mjs";
175
176
  import { IconSocialMedium } from "../lib/components/icons/IconSocialMedium/IconSocialMedium.mjs";
177
+ import { IconSocialTiktok } from "../lib/components/icons/IconSocialTiktok/IconSocialTiktok.mjs";
176
178
  import { IconSocialX } from "../lib/components/icons/IconSocialX/IconSocialX.mjs";
177
179
  import { IconSocialYouTube } from "../lib/components/icons/IconSocialYouTube/IconSocialYouTube.mjs";
178
180
  import { IconSort } from "../lib/components/icons/IconSort/IconSort.mjs";
@@ -287,6 +289,7 @@ export {
287
289
  IconLocation,
288
290
  IconMail,
289
291
  IconMessage,
292
+ IconMicrophone,
290
293
  IconMinus,
291
294
  IconMobile,
292
295
  IconMoney,
@@ -325,6 +328,7 @@ export {
325
328
  IconSocialInstagram,
326
329
  IconSocialLinkedIn,
327
330
  IconSocialMedium,
331
+ IconSocialTiktok,
328
332
  IconSocialX,
329
333
  IconSocialYouTube,
330
334
  IconSort,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "braid-design-system",
3
- "version": "33.11.6-test-20251007010150",
3
+ "version": "33.12.0",
4
4
  "description": "Themeable design system for the SEEK Group",
5
5
  "homepage": "https://seek-oss.github.io/braid-design-system/",
6
6
  "bugs": {
@@ -221,7 +221,7 @@
221
221
  "storybook": "9.0.15",
222
222
  "svgo": "^2.8.0",
223
223
  "title-case": "^3.0.3",
224
- "@braid-design-system/source.macro": "1.0.1-test-20251007010150"
224
+ "@braid-design-system/source.macro": "1.0.0"
225
225
  },
226
226
  "peerDependencies": {
227
227
  "react": "^18 || ^19",