@wireapp/react-ui-kit 8.14.3 → 8.14.4
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/package.json +5 -4
- package/src/Form/Button.d.js +2 -0
- package/src/Form/Button.d.js.map +1 -0
- package/src/Form/Button.d.ts +21 -0
- package/src/Form/Button.js +221 -0
- package/src/Form/Button.js.map +1 -0
- package/src/Form/ButtonLink.d.js +2 -0
- package/src/Form/ButtonLink.d.js.map +1 -0
- package/src/Form/ButtonLink.d.ts +6 -0
- package/src/Form/ButtonLink.js +67 -0
- package/src/Form/ButtonLink.js.map +1 -0
- package/src/Form/Checkbox.d.js +6 -0
- package/src/Form/Checkbox.d.js.map +1 -0
- package/src/Form/Checkbox.d.ts +18 -0
- package/src/Form/Checkbox.js +146 -0
- package/src/Form/Checkbox.js.map +1 -0
- package/src/Form/CodeInput.d.js +2 -0
- package/src/Form/CodeInput.d.js.map +1 -0
- package/src/Form/CodeInput.d.ts +10 -0
- package/src/Form/CodeInput.js +206 -0
- package/src/Form/CodeInput.js.map +1 -0
- package/src/Form/DropFileInput.d.js +2 -0
- package/src/Form/DropFileInput.d.js.map +1 -0
- package/src/Form/DropFileInput.d.ts +19 -0
- package/src/Form/DropFileInput.js +237 -0
- package/src/Form/DropFileInput.js.map +1 -0
- package/src/Form/ErrorMessage.d.js +6 -0
- package/src/Form/ErrorMessage.d.js.map +1 -0
- package/src/Form/ErrorMessage.d.ts +8 -0
- package/src/Form/ErrorMessage.js +87 -0
- package/src/Form/ErrorMessage.js.map +1 -0
- package/src/Form/Form.d.js +2 -0
- package/src/Form/Form.d.js.map +1 -0
- package/src/Form/Form.d.ts +4 -0
- package/src/Form/Form.js +35 -0
- package/src/Form/Form.js.map +1 -0
- package/src/Form/Input.d.js +2 -0
- package/src/Form/Input.d.js.map +1 -0
- package/src/Form/Input.d.ts +18 -0
- package/src/Form/Input.js +185 -0
- package/src/Form/Input.js.map +1 -0
- package/src/Form/InputBlock.d.js +2 -0
- package/src/Form/InputBlock.d.js.map +1 -0
- package/src/Form/InputBlock.d.ts +5 -0
- package/src/Form/InputBlock.js +67 -0
- package/src/Form/InputBlock.js.map +1 -0
- package/src/Form/InputLabel.d.js +2 -0
- package/src/Form/InputLabel.d.js.map +1 -0
- package/src/Form/InputLabel.d.ts +9 -0
- package/src/Form/InputLabel.js +49 -0
- package/src/Form/InputLabel.js.map +1 -0
- package/src/Form/InputSubmitCombo.d.js +2 -0
- package/src/Form/InputSubmitCombo.d.js.map +1 -0
- package/src/Form/InputSubmitCombo.d.ts +6 -0
- package/src/Form/InputSubmitCombo.js +58 -0
- package/src/Form/InputSubmitCombo.js.map +1 -0
- package/src/Form/RangeInput.d.js +2 -0
- package/src/Form/RangeInput.d.js.map +1 -0
- package/src/Form/RangeInput.d.ts +11 -0
- package/src/Form/RangeInput.js +75 -0
- package/src/Form/RangeInput.js.map +1 -0
- package/src/Form/RangeInput.styles.d.js +2 -0
- package/src/Form/RangeInput.styles.d.js.map +1 -0
- package/src/Form/RangeInput.styles.d.ts +9 -0
- package/src/Form/RangeInput.styles.js +76 -0
- package/src/Form/RangeInput.styles.js.map +1 -0
- package/src/Form/RoundIconButton.d.js +2 -0
- package/src/Form/RoundIconButton.d.js.map +1 -0
- package/src/Form/RoundIconButton.d.ts +9 -0
- package/src/Form/RoundIconButton.js +69 -0
- package/src/Form/RoundIconButton.js.map +1 -0
- package/src/Form/Select.d.js +6 -0
- package/src/Form/Select.d.js.map +1 -0
- package/src/Form/Select.d.ts +25 -0
- package/src/Form/Select.js +100 -0
- package/src/Form/Select.js.map +1 -0
- package/src/Form/SelectComponents.d.js +2 -0
- package/src/Form/SelectComponents.d.js.map +1 -0
- package/src/Form/SelectComponents.d.ts +13 -0
- package/src/Form/SelectComponents.js +190 -0
- package/src/Form/SelectComponents.js.map +1 -0
- package/src/Form/SelectStyles.d.js +2 -0
- package/src/Form/SelectStyles.d.js.map +1 -0
- package/src/Form/SelectStyles.d.ts +930 -0
- package/src/Form/SelectStyles.js +183 -0
- package/src/Form/SelectStyles.js.map +1 -0
- package/src/Form/ShakeBox.d.js +2 -0
- package/src/Form/ShakeBox.d.js.map +1 -0
- package/src/Form/ShakeBox.d.ts +11 -0
- package/src/Form/ShakeBox.js +104 -0
- package/src/Form/ShakeBox.js.map +1 -0
- package/src/Form/Switch.d.js +2 -0
- package/src/Form/Switch.d.js.map +1 -0
- package/src/Form/Switch.d.ts +17 -0
- package/src/Form/Switch.js +128 -0
- package/src/Form/Switch.js.map +1 -0
- package/src/Form/TextArea.d.js +2 -0
- package/src/Form/TextArea.d.js.map +1 -0
- package/src/Form/TextArea.d.ts +13 -0
- package/src/Form/TextArea.js +85 -0
- package/src/Form/TextArea.js.map +1 -0
- package/src/Form/Tooltip.d.js +6 -0
- package/src/Form/Tooltip.d.js.map +1 -0
- package/src/Form/Tooltip.d.ts +13 -0
- package/src/Form/Tooltip.js +88 -0
- package/src/Form/Tooltip.js.map +1 -0
- package/src/Form/index.d.js +240 -0
- package/src/Form/index.d.js.map +1 -0
- package/src/Form/index.d.ts +19 -0
- package/src/Form/index.js +240 -0
- package/src/Form/index.js.map +1 -0
- package/src/GlobalCssVariables.d.js +2 -0
- package/src/GlobalCssVariables.d.js.map +1 -0
- package/src/GlobalCssVariables.d.ts +7 -0
- package/src/GlobalCssVariables.js +132 -0
- package/src/GlobalCssVariables.js.map +1 -0
- package/src/GlobalStyle.d.js +4 -0
- package/src/GlobalStyle.d.js.map +1 -0
- package/src/GlobalStyle.d.ts +7 -0
- package/src/GlobalStyle.js +66 -0
- package/src/GlobalStyle.js.map +1 -0
- package/src/Icon/AddPeopleIcon.d.js +2 -0
- package/src/Icon/AddPeopleIcon.d.js.map +1 -0
- package/src/Icon/AddPeopleIcon.d.ts +4 -0
- package/src/Icon/AddPeopleIcon.js +47 -0
- package/src/Icon/AddPeopleIcon.js.map +1 -0
- package/src/Icon/ArchiveIcon.d.js +2 -0
- package/src/Icon/ArchiveIcon.d.js.map +1 -0
- package/src/Icon/ArchiveIcon.d.ts +4 -0
- package/src/Icon/ArchiveIcon.js +46 -0
- package/src/Icon/ArchiveIcon.js.map +1 -0
- package/src/Icon/ArrowDown.d.js +2 -0
- package/src/Icon/ArrowDown.d.js.map +1 -0
- package/src/Icon/ArrowDown.d.ts +2 -0
- package/src/Icon/ArrowDown.js +45 -0
- package/src/Icon/ArrowDown.js.map +1 -0
- package/src/Icon/ArrowIcon.d.js +2 -0
- package/src/Icon/ArrowIcon.d.js.map +1 -0
- package/src/Icon/ArrowIcon.d.ts +14 -0
- package/src/Icon/ArrowIcon.js +41 -0
- package/src/Icon/ArrowIcon.js.map +1 -0
- package/src/Icon/AttachmentIcon.d.js +2 -0
- package/src/Icon/AttachmentIcon.d.js.map +1 -0
- package/src/Icon/AttachmentIcon.d.ts +4 -0
- package/src/Icon/AttachmentIcon.js +46 -0
- package/src/Icon/AttachmentIcon.js.map +1 -0
- package/src/Icon/AudioVideoIcon.d.js +2 -0
- package/src/Icon/AudioVideoIcon.d.js.map +1 -0
- package/src/Icon/AudioVideoIcon.d.ts +4 -0
- package/src/Icon/AudioVideoIcon.js +46 -0
- package/src/Icon/AudioVideoIcon.js.map +1 -0
- package/src/Icon/BlockIcon.d.js +2 -0
- package/src/Icon/BlockIcon.d.js.map +1 -0
- package/src/Icon/BlockIcon.d.ts +4 -0
- package/src/Icon/BlockIcon.js +46 -0
- package/src/Icon/BlockIcon.js.map +1 -0
- package/src/Icon/Brand/AndroidIcon.d.js +2 -0
- package/src/Icon/Brand/AndroidIcon.d.js.map +1 -0
- package/src/Icon/Brand/AndroidIcon.d.ts +4 -0
- package/src/Icon/Brand/AndroidIcon.js +47 -0
- package/src/Icon/Brand/AndroidIcon.js.map +1 -0
- package/src/Icon/Brand/AppleIcon.d.js +2 -0
- package/src/Icon/Brand/AppleIcon.d.js.map +1 -0
- package/src/Icon/Brand/AppleIcon.d.ts +4 -0
- package/src/Icon/Brand/AppleIcon.js +47 -0
- package/src/Icon/Brand/AppleIcon.js.map +1 -0
- package/src/Icon/Brand/ChromeIcon.d.js +2 -0
- package/src/Icon/Brand/ChromeIcon.d.js.map +1 -0
- package/src/Icon/Brand/ChromeIcon.d.ts +4 -0
- package/src/Icon/Brand/ChromeIcon.js +47 -0
- package/src/Icon/Brand/ChromeIcon.js.map +1 -0
- package/src/Icon/Brand/FacebookIcon.d.js +2 -0
- package/src/Icon/Brand/FacebookIcon.d.js.map +1 -0
- package/src/Icon/Brand/FacebookIcon.d.ts +4 -0
- package/src/Icon/Brand/FacebookIcon.js +46 -0
- package/src/Icon/Brand/FacebookIcon.js.map +1 -0
- package/src/Icon/Brand/GitHubIcon.d.js +2 -0
- package/src/Icon/Brand/GitHubIcon.d.js.map +1 -0
- package/src/Icon/Brand/GitHubIcon.d.ts +4 -0
- package/src/Icon/Brand/GitHubIcon.js +46 -0
- package/src/Icon/Brand/GitHubIcon.js.map +1 -0
- package/src/Icon/Brand/LinkedInIcon.d.js +2 -0
- package/src/Icon/Brand/LinkedInIcon.d.js.map +1 -0
- package/src/Icon/Brand/LinkedInIcon.d.ts +4 -0
- package/src/Icon/Brand/LinkedInIcon.js +46 -0
- package/src/Icon/Brand/LinkedInIcon.js.map +1 -0
- package/src/Icon/Brand/LinuxIcon.d.js +2 -0
- package/src/Icon/Brand/LinuxIcon.d.js.map +1 -0
- package/src/Icon/Brand/LinuxIcon.d.ts +4 -0
- package/src/Icon/Brand/LinuxIcon.js +47 -0
- package/src/Icon/Brand/LinuxIcon.js.map +1 -0
- package/src/Icon/Brand/MicrosoftIcon.d.js +2 -0
- package/src/Icon/Brand/MicrosoftIcon.d.js.map +1 -0
- package/src/Icon/Brand/MicrosoftIcon.d.ts +4 -0
- package/src/Icon/Brand/MicrosoftIcon.js +47 -0
- package/src/Icon/Brand/MicrosoftIcon.js.map +1 -0
- package/src/Icon/Brand/TwitterIcon.d.js +2 -0
- package/src/Icon/Brand/TwitterIcon.d.js.map +1 -0
- package/src/Icon/Brand/TwitterIcon.d.ts +4 -0
- package/src/Icon/Brand/TwitterIcon.js +46 -0
- package/src/Icon/Brand/TwitterIcon.js.map +1 -0
- package/src/Icon/CallIcon.d.js +2 -0
- package/src/Icon/CallIcon.d.js.map +1 -0
- package/src/Icon/CallIcon.d.ts +4 -0
- package/src/Icon/CallIcon.js +46 -0
- package/src/Icon/CallIcon.js.map +1 -0
- package/src/Icon/CamIcon.d.js +2 -0
- package/src/Icon/CamIcon.d.js.map +1 -0
- package/src/Icon/CamIcon.d.ts +4 -0
- package/src/Icon/CamIcon.js +46 -0
- package/src/Icon/CamIcon.js.map +1 -0
- package/src/Icon/CameraIcon.d.js +2 -0
- package/src/Icon/CameraIcon.d.js.map +1 -0
- package/src/Icon/CameraIcon.d.ts +4 -0
- package/src/Icon/CameraIcon.js +47 -0
- package/src/Icon/CameraIcon.js.map +1 -0
- package/src/Icon/CheckIcon.d.js +2 -0
- package/src/Icon/CheckIcon.d.js.map +1 -0
- package/src/Icon/CheckIcon.d.ts +4 -0
- package/src/Icon/CheckIcon.js +46 -0
- package/src/Icon/CheckIcon.js.map +1 -0
- package/src/Icon/CheckRoundIcon.d.js +2 -0
- package/src/Icon/CheckRoundIcon.d.js.map +1 -0
- package/src/Icon/CheckRoundIcon.d.ts +4 -0
- package/src/Icon/CheckRoundIcon.js +46 -0
- package/src/Icon/CheckRoundIcon.js.map +1 -0
- package/src/Icon/ChevronIcon.d.js +2 -0
- package/src/Icon/ChevronIcon.d.js.map +1 -0
- package/src/Icon/ChevronIcon.d.ts +4 -0
- package/src/Icon/ChevronIcon.js +36 -0
- package/src/Icon/ChevronIcon.js.map +1 -0
- package/src/Icon/CloseIcon.d.js +2 -0
- package/src/Icon/CloseIcon.d.js.map +1 -0
- package/src/Icon/CloseIcon.d.ts +4 -0
- package/src/Icon/CloseIcon.js +46 -0
- package/src/Icon/CloseIcon.js.map +1 -0
- package/src/Icon/CopyIcon.d.js +2 -0
- package/src/Icon/CopyIcon.d.js.map +1 -0
- package/src/Icon/CopyIcon.d.ts +4 -0
- package/src/Icon/CopyIcon.js +46 -0
- package/src/Icon/CopyIcon.js.map +1 -0
- package/src/Icon/DeviceIcon.d.js +2 -0
- package/src/Icon/DeviceIcon.d.js.map +1 -0
- package/src/Icon/DeviceIcon.d.ts +4 -0
- package/src/Icon/DeviceIcon.js +46 -0
- package/src/Icon/DeviceIcon.js.map +1 -0
- package/src/Icon/DownloadIcon.d.js +2 -0
- package/src/Icon/DownloadIcon.d.js.map +1 -0
- package/src/Icon/DownloadIcon.d.ts +4 -0
- package/src/Icon/DownloadIcon.js +46 -0
- package/src/Icon/DownloadIcon.js.map +1 -0
- package/src/Icon/EditDocumentIcon.d.js +2 -0
- package/src/Icon/EditDocumentIcon.d.js.map +1 -0
- package/src/Icon/EditDocumentIcon.d.ts +4 -0
- package/src/Icon/EditDocumentIcon.js +48 -0
- package/src/Icon/EditDocumentIcon.js.map +1 -0
- package/src/Icon/EditIcon.d.js +2 -0
- package/src/Icon/EditIcon.d.js.map +1 -0
- package/src/Icon/EditIcon.d.ts +4 -0
- package/src/Icon/EditIcon.js +46 -0
- package/src/Icon/EditIcon.js.map +1 -0
- package/src/Icon/EnterIcon.d.js +2 -0
- package/src/Icon/EnterIcon.d.js.map +1 -0
- package/src/Icon/EnterIcon.d.ts +4 -0
- package/src/Icon/EnterIcon.js +46 -0
- package/src/Icon/EnterIcon.js.map +1 -0
- package/src/Icon/ErrorIcon.d.js +2 -0
- package/src/Icon/ErrorIcon.d.js.map +1 -0
- package/src/Icon/ErrorIcon.d.ts +4 -0
- package/src/Icon/ErrorIcon.js +61 -0
- package/src/Icon/ErrorIcon.js.map +1 -0
- package/src/Icon/FileIcon.d.js +2 -0
- package/src/Icon/FileIcon.d.js.map +1 -0
- package/src/Icon/FileIcon.d.ts +4 -0
- package/src/Icon/FileIcon.js +46 -0
- package/src/Icon/FileIcon.js.map +1 -0
- package/src/Icon/GifIcon.d.js +2 -0
- package/src/Icon/GifIcon.d.js.map +1 -0
- package/src/Icon/GifIcon.d.ts +4 -0
- package/src/Icon/GifIcon.js +46 -0
- package/src/Icon/GifIcon.js.map +1 -0
- package/src/Icon/GridIcon.d.js +2 -0
- package/src/Icon/GridIcon.d.js.map +1 -0
- package/src/Icon/GridIcon.d.ts +4 -0
- package/src/Icon/GridIcon.js +47 -0
- package/src/Icon/GridIcon.js.map +1 -0
- package/src/Icon/GroupIcon.d.js +2 -0
- package/src/Icon/GroupIcon.d.js.map +1 -0
- package/src/Icon/GroupIcon.d.ts +4 -0
- package/src/Icon/GroupIcon.js +46 -0
- package/src/Icon/GroupIcon.js.map +1 -0
- package/src/Icon/HangupIcon.d.js +2 -0
- package/src/Icon/HangupIcon.d.js.map +1 -0
- package/src/Icon/HangupIcon.d.ts +4 -0
- package/src/Icon/HangupIcon.js +46 -0
- package/src/Icon/HangupIcon.js.map +1 -0
- package/src/Icon/HideIcon.d.js +2 -0
- package/src/Icon/HideIcon.d.js.map +1 -0
- package/src/Icon/HideIcon.d.ts +4 -0
- package/src/Icon/HideIcon.js +46 -0
- package/src/Icon/HideIcon.js.map +1 -0
- package/src/Icon/ImageIcon.d.js +2 -0
- package/src/Icon/ImageIcon.d.js.map +1 -0
- package/src/Icon/ImageIcon.d.ts +4 -0
- package/src/Icon/ImageIcon.js +46 -0
- package/src/Icon/ImageIcon.js.map +1 -0
- package/src/Icon/InfoIcon.d.js +2 -0
- package/src/Icon/InfoIcon.d.js.map +1 -0
- package/src/Icon/InfoIcon.d.ts +4 -0
- package/src/Icon/InfoIcon.js +46 -0
- package/src/Icon/InfoIcon.js.map +1 -0
- package/src/Icon/InviteIcon.d.js +2 -0
- package/src/Icon/InviteIcon.d.js.map +1 -0
- package/src/Icon/InviteIcon.d.ts +4 -0
- package/src/Icon/InviteIcon.js +46 -0
- package/src/Icon/InviteIcon.js.map +1 -0
- package/src/Icon/LeaveIcon.d.js +2 -0
- package/src/Icon/LeaveIcon.d.js.map +1 -0
- package/src/Icon/LeaveIcon.d.ts +4 -0
- package/src/Icon/LeaveIcon.js +46 -0
- package/src/Icon/LeaveIcon.js.map +1 -0
- package/src/Icon/LinkIcon.d.js +2 -0
- package/src/Icon/LinkIcon.d.js.map +1 -0
- package/src/Icon/LinkIcon.d.ts +4 -0
- package/src/Icon/LinkIcon.js +47 -0
- package/src/Icon/LinkIcon.js.map +1 -0
- package/src/Icon/ListIcon.d.js +2 -0
- package/src/Icon/ListIcon.d.js.map +1 -0
- package/src/Icon/ListIcon.d.ts +4 -0
- package/src/Icon/ListIcon.js +46 -0
- package/src/Icon/ListIcon.js.map +1 -0
- package/src/Icon/LockIcon.d.js +2 -0
- package/src/Icon/LockIcon.d.js.map +1 -0
- package/src/Icon/LockIcon.d.ts +4 -0
- package/src/Icon/LockIcon.js +47 -0
- package/src/Icon/LockIcon.js.map +1 -0
- package/src/Icon/MessageIcon.d.js +2 -0
- package/src/Icon/MessageIcon.d.js.map +1 -0
- package/src/Icon/MessageIcon.d.ts +4 -0
- package/src/Icon/MessageIcon.js +46 -0
- package/src/Icon/MessageIcon.js.map +1 -0
- package/src/Icon/MinusIcon.d.js +2 -0
- package/src/Icon/MinusIcon.d.js.map +1 -0
- package/src/Icon/MinusIcon.d.ts +4 -0
- package/src/Icon/MinusIcon.js +46 -0
- package/src/Icon/MinusIcon.js.map +1 -0
- package/src/Icon/MoreIcon.d.js +2 -0
- package/src/Icon/MoreIcon.d.js.map +1 -0
- package/src/Icon/MoreIcon.d.ts +4 -0
- package/src/Icon/MoreIcon.js +46 -0
- package/src/Icon/MoreIcon.js.map +1 -0
- package/src/Icon/MuteIcon.d.js +2 -0
- package/src/Icon/MuteIcon.d.js.map +1 -0
- package/src/Icon/MuteIcon.d.ts +4 -0
- package/src/Icon/MuteIcon.js +46 -0
- package/src/Icon/MuteIcon.js.map +1 -0
- package/src/Icon/NotificationIcon.d.js +2 -0
- package/src/Icon/NotificationIcon.d.js.map +1 -0
- package/src/Icon/NotificationIcon.d.ts +4 -0
- package/src/Icon/NotificationIcon.js +46 -0
- package/src/Icon/NotificationIcon.js.map +1 -0
- package/src/Icon/NotificationOffIcon.d.js +2 -0
- package/src/Icon/NotificationOffIcon.d.js.map +1 -0
- package/src/Icon/NotificationOffIcon.d.ts +4 -0
- package/src/Icon/NotificationOffIcon.js +46 -0
- package/src/Icon/NotificationOffIcon.js.map +1 -0
- package/src/Icon/OptionsIcon.d.js +2 -0
- package/src/Icon/OptionsIcon.d.js.map +1 -0
- package/src/Icon/OptionsIcon.d.ts +4 -0
- package/src/Icon/OptionsIcon.js +46 -0
- package/src/Icon/OptionsIcon.js.map +1 -0
- package/src/Icon/PeopleIcon.d.js +2 -0
- package/src/Icon/PeopleIcon.d.js.map +1 -0
- package/src/Icon/PeopleIcon.d.ts +4 -0
- package/src/Icon/PeopleIcon.js +47 -0
- package/src/Icon/PeopleIcon.js.map +1 -0
- package/src/Icon/PingIcon.d.js +2 -0
- package/src/Icon/PingIcon.d.js.map +1 -0
- package/src/Icon/PingIcon.d.ts +4 -0
- package/src/Icon/PingIcon.js +46 -0
- package/src/Icon/PingIcon.js.map +1 -0
- package/src/Icon/PlaneIcon.d.js +2 -0
- package/src/Icon/PlaneIcon.d.js.map +1 -0
- package/src/Icon/PlaneIcon.d.ts +4 -0
- package/src/Icon/PlaneIcon.js +46 -0
- package/src/Icon/PlaneIcon.js.map +1 -0
- package/src/Icon/PlusIcon.d.js +2 -0
- package/src/Icon/PlusIcon.d.js.map +1 -0
- package/src/Icon/PlusIcon.d.ts +4 -0
- package/src/Icon/PlusIcon.js +46 -0
- package/src/Icon/PlusIcon.js.map +1 -0
- package/src/Icon/ProfileIcon.d.js +2 -0
- package/src/Icon/ProfileIcon.d.js.map +1 -0
- package/src/Icon/ProfileIcon.d.ts +4 -0
- package/src/Icon/ProfileIcon.js +46 -0
- package/src/Icon/ProfileIcon.js.map +1 -0
- package/src/Icon/RecordBoldIcon.d.js +2 -0
- package/src/Icon/RecordBoldIcon.d.js.map +1 -0
- package/src/Icon/RecordBoldIcon.d.ts +4 -0
- package/src/Icon/RecordBoldIcon.js +55 -0
- package/src/Icon/RecordBoldIcon.js.map +1 -0
- package/src/Icon/RecordIcon.d.js +2 -0
- package/src/Icon/RecordIcon.d.js.map +1 -0
- package/src/Icon/RecordIcon.d.ts +4 -0
- package/src/Icon/RecordIcon.js +56 -0
- package/src/Icon/RecordIcon.js.map +1 -0
- package/src/Icon/RecordPendingIcon.d.js +2 -0
- package/src/Icon/RecordPendingIcon.d.js.map +1 -0
- package/src/Icon/RecordPendingIcon.d.ts +4 -0
- package/src/Icon/RecordPendingIcon.js +53 -0
- package/src/Icon/RecordPendingIcon.js.map +1 -0
- package/src/Icon/ReloadIcon.d.js +2 -0
- package/src/Icon/ReloadIcon.d.js.map +1 -0
- package/src/Icon/ReloadIcon.d.ts +4 -0
- package/src/Icon/ReloadIcon.js +46 -0
- package/src/Icon/ReloadIcon.js.map +1 -0
- package/src/Icon/SVGIcon.d.js +2 -0
- package/src/Icon/SVGIcon.d.js.map +1 -0
- package/src/Icon/SVGIcon.d.ts +15 -0
- package/src/Icon/SVGIcon.js +84 -0
- package/src/Icon/SVGIcon.js.map +1 -0
- package/src/Icon/ScreenshareIcon.d.js +2 -0
- package/src/Icon/ScreenshareIcon.d.js.map +1 -0
- package/src/Icon/ScreenshareIcon.d.ts +4 -0
- package/src/Icon/ScreenshareIcon.js +46 -0
- package/src/Icon/ScreenshareIcon.js.map +1 -0
- package/src/Icon/SearchIcon.d.js +2 -0
- package/src/Icon/SearchIcon.d.js.map +1 -0
- package/src/Icon/SearchIcon.d.ts +4 -0
- package/src/Icon/SearchIcon.js +47 -0
- package/src/Icon/SearchIcon.js.map +1 -0
- package/src/Icon/ServicesIcon.d.js +2 -0
- package/src/Icon/ServicesIcon.d.js.map +1 -0
- package/src/Icon/ServicesIcon.d.ts +4 -0
- package/src/Icon/ServicesIcon.js +46 -0
- package/src/Icon/ServicesIcon.js.map +1 -0
- package/src/Icon/SettingsIcon.d.js +2 -0
- package/src/Icon/SettingsIcon.d.js.map +1 -0
- package/src/Icon/SettingsIcon.d.ts +4 -0
- package/src/Icon/SettingsIcon.js +46 -0
- package/src/Icon/SettingsIcon.js.map +1 -0
- package/src/Icon/ShowIcon.d.js +2 -0
- package/src/Icon/ShowIcon.d.js.map +1 -0
- package/src/Icon/ShowIcon.d.ts +4 -0
- package/src/Icon/ShowIcon.js +46 -0
- package/src/Icon/ShowIcon.js.map +1 -0
- package/src/Icon/SignIcon.d.js +2 -0
- package/src/Icon/SignIcon.d.js.map +1 -0
- package/src/Icon/SignIcon.d.ts +4 -0
- package/src/Icon/SignIcon.js +46 -0
- package/src/Icon/SignIcon.js.map +1 -0
- package/src/Icon/SpeakerIcon.d.js +2 -0
- package/src/Icon/SpeakerIcon.d.js.map +1 -0
- package/src/Icon/SpeakerIcon.d.ts +4 -0
- package/src/Icon/SpeakerIcon.js +46 -0
- package/src/Icon/SpeakerIcon.js.map +1 -0
- package/src/Icon/SupportIcon.d.js +2 -0
- package/src/Icon/SupportIcon.d.js.map +1 -0
- package/src/Icon/SupportIcon.d.ts +4 -0
- package/src/Icon/SupportIcon.js +46 -0
- package/src/Icon/SupportIcon.js.map +1 -0
- package/src/Icon/TeamIcon.d.js +2 -0
- package/src/Icon/TeamIcon.d.js.map +1 -0
- package/src/Icon/TeamIcon.d.ts +4 -0
- package/src/Icon/TeamIcon.js +46 -0
- package/src/Icon/TeamIcon.js.map +1 -0
- package/src/Icon/TimedIcon.d.js +2 -0
- package/src/Icon/TimedIcon.d.js.map +1 -0
- package/src/Icon/TimedIcon.d.ts +4 -0
- package/src/Icon/TimedIcon.js +46 -0
- package/src/Icon/TimedIcon.js.map +1 -0
- package/src/Icon/TrashCrossIcon.d.js +2 -0
- package/src/Icon/TrashCrossIcon.d.js.map +1 -0
- package/src/Icon/TrashCrossIcon.d.ts +4 -0
- package/src/Icon/TrashCrossIcon.js +46 -0
- package/src/Icon/TrashCrossIcon.js.map +1 -0
- package/src/Icon/TrashIcon.d.js +2 -0
- package/src/Icon/TrashIcon.d.js.map +1 -0
- package/src/Icon/TrashIcon.d.ts +4 -0
- package/src/Icon/TrashIcon.js +46 -0
- package/src/Icon/TrashIcon.js.map +1 -0
- package/src/Icon/TriangleIcon.d.js +2 -0
- package/src/Icon/TriangleIcon.d.js.map +1 -0
- package/src/Icon/TriangleIcon.d.ts +8 -0
- package/src/Icon/TriangleIcon.js +41 -0
- package/src/Icon/TriangleIcon.js.map +1 -0
- package/src/Icon/UploadIcon.d.js +2 -0
- package/src/Icon/UploadIcon.d.js.map +1 -0
- package/src/Icon/UploadIcon.d.ts +4 -0
- package/src/Icon/UploadIcon.js +46 -0
- package/src/Icon/UploadIcon.js.map +1 -0
- package/src/Icon/WireIcon.d.js +2 -0
- package/src/Icon/WireIcon.d.js.map +1 -0
- package/src/Icon/WireIcon.d.ts +4 -0
- package/src/Icon/WireIcon.js +46 -0
- package/src/Icon/WireIcon.js.map +1 -0
- package/src/Icon/index.d.js +955 -0
- package/src/Icon/index.d.js.map +1 -0
- package/src/Icon/index.d.ts +73 -0
- package/src/Icon/index.js +955 -0
- package/src/Icon/index.js.map +1 -0
- package/src/Identity/Animation.d.js +6 -0
- package/src/Identity/Animation.d.js.map +1 -0
- package/src/Identity/Animation.d.ts +30 -0
- package/src/Identity/Animation.js +247 -0
- package/src/Identity/Animation.js.map +1 -0
- package/src/Identity/Avatar.d.js +2 -0
- package/src/Identity/Avatar.d.js.map +1 -0
- package/src/Identity/Avatar.d.ts +15 -0
- package/src/Identity/Avatar.js +138 -0
- package/src/Identity/Avatar.js.map +1 -0
- package/src/Identity/AvatarGrid.d.js +6 -0
- package/src/Identity/AvatarGrid.d.js.map +1 -0
- package/src/Identity/AvatarGrid.d.ts +14 -0
- package/src/Identity/AvatarGrid.js +114 -0
- package/src/Identity/AvatarGrid.js.map +1 -0
- package/src/Identity/Logo.d.js +2 -0
- package/src/Identity/Logo.d.js.map +1 -0
- package/src/Identity/Logo.d.ts +7 -0
- package/src/Identity/Logo.js +62 -0
- package/src/Identity/Logo.js.map +1 -0
- package/src/Identity/colors-v2.d.js +2 -0
- package/src/Identity/colors-v2.d.js.map +1 -0
- package/src/Identity/colors-v2.d.ts +3 -0
- package/src/Identity/colors-v2.js +221 -0
- package/src/Identity/colors-v2.js.map +1 -0
- package/src/Identity/colors.d.js +2 -0
- package/src/Identity/colors.d.js.map +1 -0
- package/src/Identity/colors.d.ts +3 -0
- package/src/Identity/colors.js +94 -0
- package/src/Identity/colors.js.map +1 -0
- package/src/Identity/index.d.js +84 -0
- package/src/Identity/index.d.js.map +1 -0
- package/src/Identity/index.d.ts +6 -0
- package/src/Identity/index.js +84 -0
- package/src/Identity/index.js.map +1 -0
- package/src/Identity/motions.d.js +2 -0
- package/src/Identity/motions.d.js.map +1 -0
- package/src/Identity/motions.d.ts +26 -0
- package/src/Identity/motions.js +49 -0
- package/src/Identity/motions.js.map +1 -0
- package/src/Layout/Box.d.js +2 -0
- package/src/Layout/Box.d.js.map +1 -0
- package/src/Layout/Box.d.ts +6 -0
- package/src/Layout/Box.js +55 -0
- package/src/Layout/Box.js.map +1 -0
- package/src/Layout/Column.d.js +2 -0
- package/src/Layout/Column.d.js.map +1 -0
- package/src/Layout/Column.d.ts +11 -0
- package/src/Layout/Column.js +86 -0
- package/src/Layout/Column.js.map +1 -0
- package/src/Layout/Container.d.js +2 -0
- package/src/Layout/Container.d.js.map +1 -0
- package/src/Layout/Container.d.ts +20 -0
- package/src/Layout/Container.js +128 -0
- package/src/Layout/Container.js.map +1 -0
- package/src/Layout/Content.d.js +2 -0
- package/src/Layout/Content.d.js.map +1 -0
- package/src/Layout/Content.d.ts +6 -0
- package/src/Layout/Content.js +56 -0
- package/src/Layout/Content.js.map +1 -0
- package/src/Layout/FlexBox.d.js +2 -0
- package/src/Layout/FlexBox.d.js.map +1 -0
- package/src/Layout/FlexBox.d.ts +13 -0
- package/src/Layout/FlexBox.js +72 -0
- package/src/Layout/FlexBox.js.map +1 -0
- package/src/Layout/Footer.d.js +6 -0
- package/src/Layout/Footer.d.js.map +1 -0
- package/src/Layout/Footer.d.ts +6 -0
- package/src/Layout/Footer.js +39 -0
- package/src/Layout/Footer.js.map +1 -0
- package/src/Layout/Header.d.js +2 -0
- package/src/Layout/Header.d.js.map +1 -0
- package/src/Layout/Header.d.ts +6 -0
- package/src/Layout/Header.js +54 -0
- package/src/Layout/Header.js.map +1 -0
- package/src/Layout/MatchMedia.d.js +6 -0
- package/src/Layout/MatchMedia.d.js.map +1 -0
- package/src/Layout/MatchMedia.d.ts +21 -0
- package/src/Layout/MatchMedia.js +147 -0
- package/src/Layout/MatchMedia.js.map +1 -0
- package/src/Layout/Spacer.d.js +2 -0
- package/src/Layout/Spacer.d.js.map +1 -0
- package/src/Layout/Spacer.d.ts +6 -0
- package/src/Layout/Spacer.js +48 -0
- package/src/Layout/Spacer.js.map +1 -0
- package/src/Layout/StyledApp.d.js +6 -0
- package/src/Layout/StyledApp.d.js.map +1 -0
- package/src/Layout/StyledApp.d.ts +16 -0
- package/src/Layout/StyledApp.js +59 -0
- package/src/Layout/StyledApp.js.map +1 -0
- package/src/Layout/Theme.d.js +2 -0
- package/src/Layout/Theme.d.js.map +1 -0
- package/src/Layout/Theme.d.ts +77 -0
- package/src/Layout/Theme.js +232 -0
- package/src/Layout/Theme.js.map +1 -0
- package/src/Layout/headerMenu/HeaderMenu.d.js +2 -0
- package/src/Layout/headerMenu/HeaderMenu.d.js.map +1 -0
- package/src/Layout/headerMenu/HeaderMenu.d.ts +8 -0
- package/src/Layout/headerMenu/HeaderMenu.js +122 -0
- package/src/Layout/headerMenu/HeaderMenu.js.map +1 -0
- package/src/Layout/headerMenu/HeaderSubMenu.d.js +2 -0
- package/src/Layout/headerMenu/HeaderSubMenu.d.js.map +1 -0
- package/src/Layout/headerMenu/HeaderSubMenu.d.ts +15 -0
- package/src/Layout/headerMenu/HeaderSubMenu.js +154 -0
- package/src/Layout/headerMenu/HeaderSubMenu.js.map +1 -0
- package/src/Layout/headerMenu/MenuContent.d.js +2 -0
- package/src/Layout/headerMenu/MenuContent.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuContent.d.ts +8 -0
- package/src/Layout/headerMenu/MenuContent.js +52 -0
- package/src/Layout/headerMenu/MenuContent.js.map +1 -0
- package/src/Layout/headerMenu/MenuItems.d.js +2 -0
- package/src/Layout/headerMenu/MenuItems.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuItems.d.ts +9 -0
- package/src/Layout/headerMenu/MenuItems.js +76 -0
- package/src/Layout/headerMenu/MenuItems.js.map +1 -0
- package/src/Layout/headerMenu/MenuLink.d.js +2 -0
- package/src/Layout/headerMenu/MenuLink.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuLink.d.ts +11 -0
- package/src/Layout/headerMenu/MenuLink.js +96 -0
- package/src/Layout/headerMenu/MenuLink.js.map +1 -0
- package/src/Layout/headerMenu/MenuOpenButton.d.js +2 -0
- package/src/Layout/headerMenu/MenuOpenButton.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuOpenButton.d.ts +9 -0
- package/src/Layout/headerMenu/MenuOpenButton.js +85 -0
- package/src/Layout/headerMenu/MenuOpenButton.js.map +1 -0
- package/src/Layout/headerMenu/MenuScrollableItems.d.js +2 -0
- package/src/Layout/headerMenu/MenuScrollableItems.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuScrollableItems.d.ts +8 -0
- package/src/Layout/headerMenu/MenuScrollableItems.js +61 -0
- package/src/Layout/headerMenu/MenuScrollableItems.js.map +1 -0
- package/src/Layout/headerMenu/MenuSubLink.d.js +6 -0
- package/src/Layout/headerMenu/MenuSubLink.d.js.map +1 -0
- package/src/Layout/headerMenu/MenuSubLink.d.ts +8 -0
- package/src/Layout/headerMenu/MenuSubLink.js +69 -0
- package/src/Layout/headerMenu/MenuSubLink.js.map +1 -0
- package/src/Layout/headerMenu/index.d.js +110 -0
- package/src/Layout/headerMenu/index.d.js.map +1 -0
- package/src/Layout/headerMenu/index.d.ts +8 -0
- package/src/Layout/headerMenu/index.js +110 -0
- package/src/Layout/headerMenu/index.js.map +1 -0
- package/src/Layout/index.d.js +175 -0
- package/src/Layout/index.d.js.map +1 -0
- package/src/Layout/index.d.ts +13 -0
- package/src/Layout/index.js +175 -0
- package/src/Layout/index.js.map +1 -0
- package/src/Layout/sizes.d.js +2 -0
- package/src/Layout/sizes.d.js.map +1 -0
- package/src/Layout/sizes.d.ts +13 -0
- package/src/Layout/sizes.js +42 -0
- package/src/Layout/sizes.js.map +1 -0
- package/src/Menu/MenuModal.d.js +6 -0
- package/src/Menu/MenuModal.d.js.map +1 -0
- package/src/Menu/MenuModal.d.ts +10 -0
- package/src/Menu/MenuModal.js +139 -0
- package/src/Menu/MenuModal.js.map +1 -0
- package/src/Menu/TabBar.d.js +2 -0
- package/src/Menu/TabBar.d.js.map +1 -0
- package/src/Menu/TabBar.d.ts +10 -0
- package/src/Menu/TabBar.js +105 -0
- package/src/Menu/TabBar.js.map +1 -0
- package/src/Menu/index.d.js +32 -0
- package/src/Menu/index.d.js.map +1 -0
- package/src/Menu/index.d.ts +2 -0
- package/src/Menu/index.js +32 -0
- package/src/Menu/index.js.map +1 -0
- package/src/Misc/ButtonGroup.d.js +2 -0
- package/src/Misc/ButtonGroup.d.js.map +1 -0
- package/src/Misc/ButtonGroup.d.ts +14 -0
- package/src/Misc/ButtonGroup.js +113 -0
- package/src/Misc/ButtonGroup.js.map +1 -0
- package/src/Misc/IconButton.d.js +2 -0
- package/src/Misc/IconButton.d.js.map +1 -0
- package/src/Misc/IconButton.d.ts +14 -0
- package/src/Misc/IconButton.js +123 -0
- package/src/Misc/IconButton.js.map +1 -0
- package/src/Misc/IsInViewport.d.js +2 -0
- package/src/Misc/IsInViewport.d.js.map +1 -0
- package/src/Misc/IsInViewport.d.ts +9 -0
- package/src/Misc/IsInViewport.js +69 -0
- package/src/Misc/IsInViewport.js.map +1 -0
- package/src/Misc/Loading.d.js +2 -0
- package/src/Misc/Loading.d.js.map +1 -0
- package/src/Misc/Loading.d.ts +15 -0
- package/src/Misc/Loading.js +72 -0
- package/src/Misc/Loading.js.map +1 -0
- package/src/Misc/Pagination.d.js +6 -0
- package/src/Misc/Pagination.d.js.map +1 -0
- package/src/Misc/Pagination.d.ts +10 -0
- package/src/Misc/Pagination.js +155 -0
- package/src/Misc/Pagination.js.map +1 -0
- package/src/Misc/Pill.d.js +2 -0
- package/src/Misc/Pill.d.js.map +1 -0
- package/src/Misc/Pill.d.ts +16 -0
- package/src/Misc/Pill.js +89 -0
- package/src/Misc/Pill.js.map +1 -0
- package/src/Misc/childrenWithDefaultProps.d.js +2 -0
- package/src/Misc/childrenWithDefaultProps.d.js.map +1 -0
- package/src/Misc/childrenWithDefaultProps.d.ts +6 -0
- package/src/Misc/childrenWithDefaultProps.js +35 -0
- package/src/Misc/childrenWithDefaultProps.js.map +1 -0
- package/src/Misc/index.d.js +123 -0
- package/src/Misc/index.d.js.map +1 -0
- package/src/Misc/index.d.ts +9 -0
- package/src/Misc/index.js +123 -0
- package/src/Misc/index.js.map +1 -0
- package/src/Misc/useLongTouch.d.js +2 -0
- package/src/Misc/useLongTouch.d.js.map +1 -0
- package/src/Misc/useLongTouch.d.ts +2 -0
- package/src/Misc/useLongTouch.js +60 -0
- package/src/Misc/useLongTouch.js.map +1 -0
- package/src/Misc/useTimeout.d.js +2 -0
- package/src/Misc/useTimeout.d.js.map +1 -0
- package/src/Misc/useTimeout.d.ts +5 -0
- package/src/Misc/useTimeout.js +67 -0
- package/src/Misc/useTimeout.js.map +1 -0
- package/src/Modal/Modal.d.js +6 -0
- package/src/Modal/Modal.d.js.map +1 -0
- package/src/Modal/Modal.d.ts +19 -0
- package/src/Modal/Modal.js +213 -0
- package/src/Modal/Modal.js.map +1 -0
- package/src/Modal/Overlay.d.js +2 -0
- package/src/Modal/Overlay.d.js.map +1 -0
- package/src/Modal/Overlay.d.ts +14 -0
- package/src/Modal/Overlay.js +116 -0
- package/src/Modal/Overlay.js.map +1 -0
- package/src/Modal/index.d.js +31 -0
- package/src/Modal/index.d.js.map +1 -0
- package/src/Modal/index.d.ts +2 -0
- package/src/Modal/index.js +31 -0
- package/src/Modal/index.js.map +1 -0
- package/src/Text/Heading.d.js +6 -0
- package/src/Text/Heading.d.js.map +1 -0
- package/src/Text/Heading.d.ts +17 -0
- package/src/Text/Heading.js +205 -0
- package/src/Text/Heading.js.map +1 -0
- package/src/Text/Label.d.js +2 -0
- package/src/Text/Label.d.js.map +1 -0
- package/src/Text/Label.d.ts +10 -0
- package/src/Text/Label.js +81 -0
- package/src/Text/Label.js.map +1 -0
- package/src/Text/Line.d.js +2 -0
- package/src/Text/Line.d.js.map +1 -0
- package/src/Text/Line.d.ts +8 -0
- package/src/Text/Line.js +60 -0
- package/src/Text/Line.js.map +1 -0
- package/src/Text/Link.d.js +2 -0
- package/src/Text/Link.d.js.map +1 -0
- package/src/Text/Link.d.ts +15 -0
- package/src/Text/Link.js +98 -0
- package/src/Text/Link.js.map +1 -0
- package/src/Text/Paragraph.d.js +2 -0
- package/src/Text/Paragraph.d.js.map +1 -0
- package/src/Text/Paragraph.d.ts +10 -0
- package/src/Text/Paragraph.js +84 -0
- package/src/Text/Paragraph.js.map +1 -0
- package/src/Text/Text.d.js +2 -0
- package/src/Text/Text.d.js.map +1 -0
- package/src/Text/Text.d.ts +25 -0
- package/src/Text/Text.js +138 -0
- package/src/Text/Text.js.map +1 -0
- package/src/Text/TextLink.d.js +2 -0
- package/src/Text/TextLink.d.js.map +1 -0
- package/src/Text/TextLink.d.ts +7 -0
- package/src/Text/TextLink.js +58 -0
- package/src/Text/TextLink.js.map +1 -0
- package/src/Text/Title.d.js +2 -0
- package/src/Text/Title.d.js.map +1 -0
- package/src/Text/Title.d.ts +5 -0
- package/src/Text/Title.js +60 -0
- package/src/Text/Title.js.map +1 -0
- package/src/Text/index.d.js +110 -0
- package/src/Text/index.d.js.map +1 -0
- package/src/Text/index.d.ts +8 -0
- package/src/Text/index.js +110 -0
- package/src/Text/index.js.map +1 -0
- package/src/index.d.js +123 -0
- package/src/index.d.js.map +1 -0
- package/src/index.d.ts +9 -0
- package/src/index.js +123 -0
- package/src/index.js.map +1 -0
- package/src/mediaQueries.d.js +2 -0
- package/src/mediaQueries.d.js.map +1 -0
- package/src/mediaQueries.d.ts +13 -0
- package/src/mediaQueries.js +46 -0
- package/src/mediaQueries.js.map +1 -0
- package/src/util.d.js +2 -0
- package/src/util.d.js.map +1 -0
- package/src/util.d.ts +5 -0
- package/src/util.js +66 -0
- package/src/util.js.map +1 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.RecordIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2019 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var RecordIcon = function RecordIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 16,
|
|
39
|
+
realHeight: 16
|
|
40
|
+
}, props), (0, _react.jsx)("g", {
|
|
41
|
+
fill: "#FB0807",
|
|
42
|
+
fillRule: "evenodd"
|
|
43
|
+
}, (0, _react.jsx)("circle", {
|
|
44
|
+
fillOpacity: ".24",
|
|
45
|
+
cx: "8",
|
|
46
|
+
cy: "8",
|
|
47
|
+
r: "8"
|
|
48
|
+
}), (0, _react.jsx)("circle", {
|
|
49
|
+
cx: "8",
|
|
50
|
+
cy: "8",
|
|
51
|
+
r: "4"
|
|
52
|
+
})));
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
exports.RecordIcon = RecordIcon;
|
|
56
|
+
//# sourceMappingURL=RecordIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["RecordIcon.tsx"],"names":["RecordIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,UAAU,GAAG,SAAbA,UAAa,CAACC,KAAD;AAAA,SACxB,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AAAG,IAAA,IAAI,EAAC,SAAR;AAAkB,IAAA,QAAQ,EAAC;AAA3B,KACE;AAAQ,IAAA,WAAW,EAAC,KAApB;AAA0B,IAAA,EAAE,EAAC,GAA7B;AAAiC,IAAA,EAAE,EAAC,GAApC;AAAwC,IAAA,CAAC,EAAC;AAA1C,IADF,EAEE;AAAQ,IAAA,EAAE,EAAC,GAAX;AAAe,IAAA,EAAE,EAAC,GAAlB;AAAsB,IAAA,CAAC,EAAC;AAAxB,IAFF,CADF,CADwB;AAAA,CAAnB","sourcesContent":["/*\n * Wire\n * Copyright (C) 2019 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const RecordIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={16} realHeight={16} {...props}>\n <g fill=\"#FB0807\" fillRule=\"evenodd\">\n <circle fillOpacity=\".24\" cx=\"8\" cy=\"8\" r=\"8\" />\n <circle cx=\"8\" cy=\"8\" r=\"4\" />\n </g>\n </SVGIcon>\n);\n"],"file":"RecordIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"RecordPendingIcon.d.js"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.RecordPendingIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2019 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var RecordPendingIcon = function RecordPendingIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 16,
|
|
39
|
+
realHeight: 16
|
|
40
|
+
}, props), (0, _react.jsx)("g", {
|
|
41
|
+
fill: "#FB0807"
|
|
42
|
+
}, (0, _react.jsx)("circle", {
|
|
43
|
+
fillOpacity: ".24",
|
|
44
|
+
cx: "8",
|
|
45
|
+
cy: "8",
|
|
46
|
+
r: "8"
|
|
47
|
+
}), (0, _react.jsx)("path", {
|
|
48
|
+
d: "M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm-.5-4.5H10v1H7.5v-1zm0-2h1v3h-1v-3z"
|
|
49
|
+
})));
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports.RecordPendingIcon = RecordPendingIcon;
|
|
53
|
+
//# sourceMappingURL=RecordPendingIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["RecordPendingIcon.tsx"],"names":["RecordPendingIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,iBAAiB,GAAG,SAApBA,iBAAoB,CAACC,KAAD;AAAA,SAC/B,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AAAG,IAAA,IAAI,EAAC;AAAR,KACE;AAAQ,IAAA,WAAW,EAAC,KAApB;AAA0B,IAAA,EAAE,EAAC,GAA7B;AAAiC,IAAA,EAAE,EAAC,GAApC;AAAwC,IAAA,CAAC,EAAC;AAA1C,IADF,EAEE;AAAM,IAAA,CAAC,EAAC;AAAR,IAFF,CADF,CAD+B;AAAA,CAA1B","sourcesContent":["/*\n * Wire\n * Copyright (C) 2019 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const RecordPendingIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={16} realHeight={16} {...props}>\n <g fill=\"#FB0807\">\n <circle fillOpacity=\".24\" cx=\"8\" cy=\"8\" r=\"8\" />\n <path d=\"M8 11a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm-.5-4.5H10v1H7.5v-1zm0-2h1v3h-1v-3z\" />\n </g>\n </SVGIcon>\n);\n"],"file":"RecordPendingIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"ReloadIcon.d.js"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.ReloadIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2020 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var ReloadIcon = function ReloadIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 16,
|
|
39
|
+
realHeight: 16
|
|
40
|
+
}, props), (0, _react.jsx)("path", {
|
|
41
|
+
d: "M13.7 2.3a8.3 8.3 0 00-11.4 0A8 8 0 1015.7 10h-2a6.1 6.1 0 01-2.2 2.9 6 6 0 11.8-9.1L9 7h7V0l-2.3 2.3z"
|
|
42
|
+
}));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
exports.ReloadIcon = ReloadIcon;
|
|
46
|
+
//# sourceMappingURL=ReloadIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["ReloadIcon.tsx"],"names":["ReloadIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,UAAU,GAAG,SAAbA,UAAa,CAACC,KAAD;AAAA,SACxB,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AAAM,IAAA,CAAC,EAAC;AAAR,IADF,CADwB;AAAA,CAAnB","sourcesContent":["/*\n * Wire\n * Copyright (C) 2020 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const ReloadIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={16} realHeight={16} {...props}>\n <path d=\"M13.7 2.3a8.3 8.3 0 00-11.4 0A8 8 0 1015.7 10h-2a6.1 6.1 0 01-2.2 2.9 6 6 0 11.8-9.1L9 7h7V0l-2.3 2.3z\" />\n </SVGIcon>\n);\n"],"file":"ReloadIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"SVGIcon.d.js"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
|
+
import React from 'react';
|
|
4
|
+
export interface InternalSVGIconProps<T = SVGSVGElement> extends SVGIconProps<T> {
|
|
5
|
+
realHeight: number;
|
|
6
|
+
realWidth: number;
|
|
7
|
+
}
|
|
8
|
+
export interface SVGIconProps<T = SVGSVGElement> extends React.SVGProps<T> {
|
|
9
|
+
color?: string;
|
|
10
|
+
height?: number;
|
|
11
|
+
scale?: number;
|
|
12
|
+
shadow?: boolean;
|
|
13
|
+
width?: number;
|
|
14
|
+
}
|
|
15
|
+
export declare const SVGIcon: ({ realWidth, realHeight, scale, width, height, shadow, children, ...props }: InternalSVGIconProps) => jsx.JSX.Element;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.SVGIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
+
|
|
14
|
+
var _react = require("@emotion/react");
|
|
15
|
+
|
|
16
|
+
var _react2 = _interopRequireDefault(require("react"));
|
|
17
|
+
|
|
18
|
+
var _excluded = ["realWidth", "realHeight", "scale", "width", "height", "shadow", "children"];
|
|
19
|
+
|
|
20
|
+
var svgIconStyle = function svgIconStyle(theme, _ref) {
|
|
21
|
+
var _ref$color = _ref.color,
|
|
22
|
+
color = _ref$color === void 0 ? theme.general.color : _ref$color;
|
|
23
|
+
return {
|
|
24
|
+
fill: color,
|
|
25
|
+
overflow: 'visible'
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
var SVGIcon = function SVGIcon(_ref2) {
|
|
30
|
+
var realWidth = _ref2.realWidth,
|
|
31
|
+
realHeight = _ref2.realHeight,
|
|
32
|
+
_ref2$scale = _ref2.scale,
|
|
33
|
+
scale = _ref2$scale === void 0 ? 1 : _ref2$scale,
|
|
34
|
+
_ref2$width = _ref2.width,
|
|
35
|
+
width = _ref2$width === void 0 ? null : _ref2$width,
|
|
36
|
+
_ref2$height = _ref2.height,
|
|
37
|
+
height = _ref2$height === void 0 ? null : _ref2$height,
|
|
38
|
+
shadow = _ref2.shadow,
|
|
39
|
+
children = _ref2.children,
|
|
40
|
+
props = (0, _objectWithoutProperties2["default"])(_ref2, _excluded);
|
|
41
|
+
var newScale = scale;
|
|
42
|
+
|
|
43
|
+
if (width || height) {
|
|
44
|
+
var widthScale = width ? width / realWidth : Infinity;
|
|
45
|
+
var heightScale = height ? height / realHeight : Infinity;
|
|
46
|
+
newScale = Math.min(widthScale, heightScale);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
var newWidth = Math.ceil(realWidth * newScale);
|
|
50
|
+
var newHeight = Math.ceil(realHeight * newScale);
|
|
51
|
+
var shadowId = shadow && Math.random().toString();
|
|
52
|
+
return (0, _react.jsx)("svg", (0, _extends2["default"])({
|
|
53
|
+
css: function css(theme) {
|
|
54
|
+
return svgIconStyle(theme, props);
|
|
55
|
+
},
|
|
56
|
+
viewBox: "0 0 ".concat(realWidth, " ").concat(realHeight),
|
|
57
|
+
width: newWidth,
|
|
58
|
+
height: newHeight
|
|
59
|
+
}, props), shadow && (0, _react.jsx)("defs", null, (0, _react.jsx)("filter", {
|
|
60
|
+
id: shadowId,
|
|
61
|
+
x: "-50%",
|
|
62
|
+
y: "-50%",
|
|
63
|
+
width: "200%",
|
|
64
|
+
height: "200%"
|
|
65
|
+
}, (0, _react.jsx)("feOffset", {
|
|
66
|
+
result: "offOut",
|
|
67
|
+
"in": "SourceAlpha",
|
|
68
|
+
dx: "0",
|
|
69
|
+
dy: "0"
|
|
70
|
+
}), (0, _react.jsx)("feGaussianBlur", {
|
|
71
|
+
result: "blurOut",
|
|
72
|
+
"in": "offOut",
|
|
73
|
+
stdDeviation: "2.5"
|
|
74
|
+
}), (0, _react.jsx)("feBlend", {
|
|
75
|
+
"in": "SourceGraphic",
|
|
76
|
+
in2: "blurOut",
|
|
77
|
+
mode: "normal"
|
|
78
|
+
}))), (0, _react.jsx)("g", {
|
|
79
|
+
filter: shadow && "url(#".concat(shadowId, ")")
|
|
80
|
+
}, children));
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
exports.SVGIcon = SVGIcon;
|
|
84
|
+
//# sourceMappingURL=SVGIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["SVGIcon.tsx"],"names":["svgIconStyle","theme","color","general","fill","overflow","SVGIcon","realWidth","realHeight","scale","width","height","shadow","children","props","newScale","widthScale","Infinity","heightScale","Math","min","newWidth","ceil","newHeight","shadowId","random","toString"],"mappings":";;;;;;;;;;;;;AAoBA;;AACA;;;;AAiBA,IAAMA,YAAoE,GAAG,SAAvEA,YAAuE,CAC3EC,KAD2E;AAAA,wBAE1EC,KAF0E;AAAA,MAE1EA,KAF0E,2BAElED,KAAK,CAACE,OAAN,CAAcD,KAFoD;AAAA,SAGvE;AACJE,IAAAA,IAAI,EAAEF,KADF;AAEJG,IAAAA,QAAQ,EAAE;AAFN,GAHuE;AAAA,CAA7E;;AAQO,IAAMC,OAAO,GAAG,SAAVA,OAAU,QASK;AAAA,MAR1BC,SAQ0B,SAR1BA,SAQ0B;AAAA,MAP1BC,UAO0B,SAP1BA,UAO0B;AAAA,0BAN1BC,KAM0B;AAAA,MAN1BA,KAM0B,4BANlB,CAMkB;AAAA,0BAL1BC,KAK0B;AAAA,MAL1BA,KAK0B,4BALlB,IAKkB;AAAA,2BAJ1BC,MAI0B;AAAA,MAJ1BA,MAI0B,6BAJjB,IAIiB;AAAA,MAH1BC,MAG0B,SAH1BA,MAG0B;AAAA,MAF1BC,QAE0B,SAF1BA,QAE0B;AAAA,MADvBC,KACuB;AAC1B,MAAIC,QAAQ,GAAGN,KAAf;;AACA,MAAIC,KAAK,IAAIC,MAAb,EAAqB;AACnB,QAAMK,UAAU,GAAGN,KAAK,GAAGA,KAAK,GAAGH,SAAX,GAAuBU,QAA/C;AACA,QAAMC,WAAW,GAAGP,MAAM,GAAGA,MAAM,GAAGH,UAAZ,GAAyBS,QAAnD;AACAF,IAAAA,QAAQ,GAAGI,IAAI,CAACC,GAAL,CAASJ,UAAT,EAAqBE,WAArB,CAAX;AACD;;AACD,MAAMG,QAAQ,GAAGF,IAAI,CAACG,IAAL,CAAUf,SAAS,GAAGQ,QAAtB,CAAjB;AACA,MAAMQ,SAAS,GAAGJ,IAAI,CAACG,IAAL,CAAUd,UAAU,GAAGO,QAAvB,CAAlB;AACA,MAAMS,QAAQ,GAAGZ,MAAM,IAAIO,IAAI,CAACM,MAAL,GAAcC,QAAd,EAA3B;AACA,SACE;AACE,IAAA,GAAG,EAAE,aAACzB,KAAD;AAAA,aAAkBD,YAAY,CAACC,KAAD,EAAQa,KAAR,CAA9B;AAAA,KADP;AAEE,IAAA,OAAO,gBAASP,SAAT,cAAsBC,UAAtB,CAFT;AAGE,IAAA,KAAK,EAAEa,QAHT;AAIE,IAAA,MAAM,EAAEE;AAJV,KAKMT,KALN,GAOGF,MAAM,IACL,8BACE;AAAQ,IAAA,EAAE,EAAEY,QAAZ;AAAsB,IAAA,CAAC,EAAC,MAAxB;AAA+B,IAAA,CAAC,EAAC,MAAjC;AAAwC,IAAA,KAAK,EAAC,MAA9C;AAAqD,IAAA,MAAM,EAAC;AAA5D,KACE;AAAU,IAAA,MAAM,EAAC,QAAjB;AAA0B,UAAG,aAA7B;AAA2C,IAAA,EAAE,EAAC,GAA9C;AAAkD,IAAA,EAAE,EAAC;AAArD,IADF,EAEE;AAAgB,IAAA,MAAM,EAAC,SAAvB;AAAiC,UAAG,QAApC;AAA6C,IAAA,YAAY,EAAC;AAA1D,IAFF,EAGE;AAAS,UAAG,eAAZ;AAA4B,IAAA,GAAG,EAAC,SAAhC;AAA0C,IAAA,IAAI,EAAC;AAA/C,IAHF,CADF,CARJ,EAgBE;AAAG,IAAA,MAAM,EAAEZ,MAAM,mBAAYY,QAAZ;AAAjB,KAA2CX,QAA3C,CAhBF,CADF;AAoBD,CAvCM","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {CSSObject, jsx} from '@emotion/react';\nimport React from 'react';\n\nimport {Theme} from '../Layout';\n\nexport interface InternalSVGIconProps<T = SVGSVGElement> extends SVGIconProps<T> {\n realHeight: number;\n realWidth: number;\n}\n\nexport interface SVGIconProps<T = SVGSVGElement> extends React.SVGProps<T> {\n color?: string;\n height?: number;\n scale?: number;\n shadow?: boolean;\n width?: number;\n}\n\nconst svgIconStyle: <T>(theme: Theme, props: SVGIconProps<T>) => CSSObject = (\n theme,\n {color = theme.general.color},\n) => ({\n fill: color,\n overflow: 'visible',\n});\n\nexport const SVGIcon = ({\n realWidth,\n realHeight,\n scale = 1,\n width = null,\n height = null,\n shadow,\n children,\n ...props\n}: InternalSVGIconProps) => {\n let newScale = scale;\n if (width || height) {\n const widthScale = width ? width / realWidth : Infinity;\n const heightScale = height ? height / realHeight : Infinity;\n newScale = Math.min(widthScale, heightScale);\n }\n const newWidth = Math.ceil(realWidth * newScale);\n const newHeight = Math.ceil(realHeight * newScale);\n const shadowId = shadow && Math.random().toString();\n return (\n <svg\n css={(theme: Theme) => svgIconStyle(theme, props)}\n viewBox={`0 0 ${realWidth} ${realHeight}`}\n width={newWidth}\n height={newHeight}\n {...props}\n >\n {shadow && (\n <defs>\n <filter id={shadowId} x=\"-50%\" y=\"-50%\" width=\"200%\" height=\"200%\">\n <feOffset result=\"offOut\" in=\"SourceAlpha\" dx=\"0\" dy=\"0\" />\n <feGaussianBlur result=\"blurOut\" in=\"offOut\" stdDeviation=\"2.5\" />\n <feBlend in=\"SourceGraphic\" in2=\"blurOut\" mode=\"normal\" />\n </filter>\n </defs>\n )}\n <g filter={shadow && `url(#${shadowId})`}>{children}</g>\n </svg>\n );\n};\n"],"file":"SVGIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"ScreenshareIcon.d.js"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.ScreenshareIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2018 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var ScreenshareIcon = function ScreenshareIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 16,
|
|
39
|
+
realHeight: 16
|
|
40
|
+
}, props), (0, _react.jsx)("path", {
|
|
41
|
+
d: "M5 14h6v2H5v-2zM0 1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v11c0 .6-.4 1-1 1H1a1 1 0 0 1-1-1V1zm7 10h2V7h4L8 3 3 7h4v4z"
|
|
42
|
+
}));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
exports.ScreenshareIcon = ScreenshareIcon;
|
|
46
|
+
//# sourceMappingURL=ScreenshareIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["ScreenshareIcon.tsx"],"names":["ScreenshareIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,eAAe,GAAG,SAAlBA,eAAkB,CAACC,KAAD;AAAA,SAC7B,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AAAM,IAAA,CAAC,EAAC;AAAR,IADF,CAD6B;AAAA,CAAxB","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const ScreenshareIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={16} realHeight={16} {...props}>\n <path d=\"M5 14h6v2H5v-2zM0 1c0-.6.4-1 1-1h14c.6 0 1 .4 1 1v11c0 .6-.4 1-1 1H1a1 1 0 0 1-1-1V1zm7 10h2V7h4L8 3 3 7h4v4z\" />\n </SVGIcon>\n);\n"],"file":"ScreenshareIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"SearchIcon.d.js"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.SearchIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2019 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var SearchIcon = function SearchIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 16,
|
|
39
|
+
realHeight: 16
|
|
40
|
+
}, props), (0, _react.jsx)("path", {
|
|
41
|
+
fillRule: "evenodd",
|
|
42
|
+
d: "M6.987 0a6.99 6.99 0 016.987 6.993c0 1.571-.517 3.02-1.39 4.188L16 14.587 14.588 16l-3.416-3.406a6.952 6.952 0 01-4.185 1.392A6.99 6.99 0 010 6.993 6.99 6.99 0 016.987 0zM12 7A5 5 0 112 7a5 5 0 0110 0z"
|
|
43
|
+
}));
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
exports.SearchIcon = SearchIcon;
|
|
47
|
+
//# sourceMappingURL=SearchIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["SearchIcon.tsx"],"names":["SearchIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,UAAU,GAAG,SAAbA,UAAa,CAACC,KAAD;AAAA,SACxB,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AACE,IAAA,QAAQ,EAAC,SADX;AAEE,IAAA,CAAC,EAAC;AAFJ,IADF,CADwB;AAAA,CAAnB","sourcesContent":["/*\n * Wire\n * Copyright (C) 2019 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const SearchIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={16} realHeight={16} {...props}>\n <path\n fillRule=\"evenodd\"\n d=\"M6.987 0a6.99 6.99 0 016.987 6.993c0 1.571-.517 3.02-1.39 4.188L16 14.587 14.588 16l-3.416-3.406a6.952 6.952 0 01-4.185 1.392A6.99 6.99 0 010 6.993 6.99 6.99 0 016.987 0zM12 7A5 5 0 112 7a5 5 0 0110 0z\"\n />\n </SVGIcon>\n);\n"],"file":"SearchIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"ServicesIcon.d.js"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.ServicesIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2018 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var ServicesIcon = function ServicesIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 32,
|
|
39
|
+
realHeight: 32
|
|
40
|
+
}, props), (0, _react.jsx)("path", {
|
|
41
|
+
d: "M10.5 12A6.5 6.5 0 0 0 4 18.5V24a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1v-5.5a6.5 6.5 0 0 0-6.5-6.5h-11zm-7.12-1.22L.24 4.95a2 2 0 1 1 3.52-1.9L6.8 8.68C7.94 8.24 9.19 8 10.5 8h11C27.3 8 32 12.7 32 18.5V24a5 5 0 0 1-5 5H5a5 5 0 0 1-5-5v-5.5c0-3.05 1.3-5.8 3.38-7.72zM11 19a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m5 2a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm5.26-9.55a2 2 0 0 1-3.52-1.9l3.5-6.5a2 2 0 0 1 3.52 1.9l-3.5 6.5z"
|
|
42
|
+
}));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
exports.ServicesIcon = ServicesIcon;
|
|
46
|
+
//# sourceMappingURL=ServicesIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["ServicesIcon.tsx"],"names":["ServicesIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,YAAY,GAAG,SAAfA,YAAe,CAACC,KAAD;AAAA,SAC1B,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AAAM,IAAA,CAAC,EAAC;AAAR,IADF,CAD0B;AAAA,CAArB","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const ServicesIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={32} realHeight={32} {...props}>\n <path d=\"M10.5 12A6.5 6.5 0 0 0 4 18.5V24a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1v-5.5a6.5 6.5 0 0 0-6.5-6.5h-11zm-7.12-1.22L.24 4.95a2 2 0 1 1 3.52-1.9L6.8 8.68C7.94 8.24 9.19 8 10.5 8h11C27.3 8 32 12.7 32 18.5V24a5 5 0 0 1-5 5H5a5 5 0 0 1-5-5v-5.5c0-3.05 1.3-5.8 3.38-7.72zM11 19a2 2 0 1 1-4 0 2 2 0 0 1 4 0m7 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0m5 2a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm5.26-9.55a2 2 0 0 1-3.52-1.9l3.5-6.5a2 2 0 0 1 3.52 1.9l-3.5 6.5z\" />\n </SVGIcon>\n);\n"],"file":"ServicesIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"SettingsIcon.d.js"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.SettingsIcon = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _react = require("@emotion/react");
|
|
13
|
+
|
|
14
|
+
var _SVGIcon = require("./SVGIcon");
|
|
15
|
+
|
|
16
|
+
/*
|
|
17
|
+
* Wire
|
|
18
|
+
* Copyright (C) 2018 Wire Swiss GmbH
|
|
19
|
+
*
|
|
20
|
+
* This program is free software: you can redistribute it and/or modify
|
|
21
|
+
* it under the terms of the GNU General Public License as published by
|
|
22
|
+
* the Free Software Foundation, either version 3 of the License, or
|
|
23
|
+
* (at your option) any later version.
|
|
24
|
+
*
|
|
25
|
+
* This program is distributed in the hope that it will be useful,
|
|
26
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
27
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
28
|
+
* GNU General Public License for more details.
|
|
29
|
+
*
|
|
30
|
+
* You should have received a copy of the GNU General Public License
|
|
31
|
+
* along with this program. If not, see http://www.gnu.org/licenses/.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
/** @jsx jsx */
|
|
36
|
+
var SettingsIcon = function SettingsIcon(props) {
|
|
37
|
+
return (0, _react.jsx)(_SVGIcon.SVGIcon, (0, _extends2["default"])({
|
|
38
|
+
realWidth: 16,
|
|
39
|
+
realHeight: 16
|
|
40
|
+
}, props), (0, _react.jsx)("path", {
|
|
41
|
+
d: "M2.8 11a6 6 0 0 1-.6-1.5H0v-3h2.2c.1-.6.3-1 .6-1.5L1.3 3.4l2.1-2.1L5 2.8a6 6 0 0 1 1.5-.6V0h3v2.2c.6.1 1 .3 1.5.6l1.6-1.5 2.1 2.1L13.2 5c.3.4.5 1 .6 1.5H16v3h-2.2a6 6 0 0 1-.6 1.5l1.5 1.6-2.1 2.1-1.6-1.5a6 6 0 0 1-1.5.6V16h-3v-2.2a6 6 0 0 1-1.5-.6l-1.6 1.5-2.1-2.1L2.8 11zM8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"
|
|
42
|
+
}));
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
exports.SettingsIcon = SettingsIcon;
|
|
46
|
+
//# sourceMappingURL=SettingsIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["SettingsIcon.tsx"],"names":["SettingsIcon","props"],"mappings":";;;;;;;;;;;AAoBA;;AAEA;;AAtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AAKO,IAAMA,YAAY,GAAG,SAAfA,YAAe,CAACC,KAAD;AAAA,SAC1B,gBAAC,gBAAD;AAAS,IAAA,SAAS,EAAE,EAApB;AAAwB,IAAA,UAAU,EAAE;AAApC,KAA4CA,KAA5C,GACE;AAAM,IAAA,CAAC,EAAC;AAAR,IADF,CAD0B;AAAA,CAArB","sourcesContent":["/*\n * Wire\n * Copyright (C) 2018 Wire Swiss GmbH\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see http://www.gnu.org/licenses/.\n *\n */\n\n/** @jsx jsx */\nimport {jsx} from '@emotion/react';\n\nimport {SVGIcon, SVGIconProps} from './SVGIcon';\n\nexport const SettingsIcon = (props: SVGIconProps) => (\n <SVGIcon realWidth={16} realHeight={16} {...props}>\n <path d=\"M2.8 11a6 6 0 0 1-.6-1.5H0v-3h2.2c.1-.6.3-1 .6-1.5L1.3 3.4l2.1-2.1L5 2.8a6 6 0 0 1 1.5-.6V0h3v2.2c.6.1 1 .3 1.5.6l1.6-1.5 2.1 2.1L13.2 5c.3.4.5 1 .6 1.5H16v3h-2.2a6 6 0 0 1-.6 1.5l1.5 1.6-2.1 2.1-1.6-1.5a6 6 0 0 1-1.5.6V16h-3v-2.2a6 6 0 0 1-1.5-.6l-1.6 1.5-2.1-2.1L2.8 11zM8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8z\" />\n </SVGIcon>\n);\n"],"file":"SettingsIcon.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[],"file":"ShowIcon.d.js"}
|