Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Add `tooltipAsLabelBehavior` accessibility behavior for `Tooltip` @sophieH29 ([#1635](https://github.com/stardust-ui/react/pull/1635))
- Add outline version of `menu` icon and `files-visio` icon to Teams theme @notandrew ([#1623](https://github.com/stardust-ui/react/pull/1623))
- Add `amethyst` color to the Teams theme color palette @mnajdova ([#1650](https://github.com/stardust-ui/react/pull/1650))
- Export `onedrive` icon to `Teams` theme @chughkartikey ([#1680](https://github.com/stardust-ui/react/pull/1680))
- Add `image-unavailable` icon to Teams Theme @joheredi ([#1633](https://github.com/stardust-ui/react/pull/1633))
- Add bidirectional navigation following DOM in `FocusZone` @sophieH29 ([#1637](https://github.com/stardust-ui/react/pull/1647))
- Open `Popup` on `contextmenu` @jurokapsiar ([#1524](https://github.com/stardust-ui/react/pull/1524))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ export default {
</svg>
),
styles: {},
exportedAs: 'onedrive',
} as TeamsProcessedSvgIconSpec
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ import messageSeen from './messageSeen'
import mic from './mic'
import micOff from './micOff'
import more from './more'
import oneDrive from './oneDrive'
import microsoftStream from './microsoftStream'
import userPhone from './userPhone'
import speakerMute from './speakerMute'
Expand Down Expand Up @@ -233,6 +234,7 @@ export default {
'microsoft-stream': microsoftStream,
'user-phone': userPhone,
'number-list': numberList,
onedrive: oneDrive,
'open-outside': openOutside,
outdent,
paperclip,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import * as React from 'react'
import { TeamsProcessedSvgIconSpec } from '../types'

export default {
icon: ({ classes }) => (
<svg role="presentation" focusable="false" viewBox="8 8 16 16" className={classes.svg}>
<path d="M13.305 16.031a3.39 3.39 0 0 0-.926.34 2.556 2.556 0 0 0-1.188 1.363 2.742 2.742 0 0 0-.168.977c0 .219.018.437.055.656.036.219.094.43.172.633h-1.023c-.282 0-.551-.06-.809-.18a2.3 2.3 0 0 1-1.145-1.16 1.968 1.968 0 0 1-.171-.809c0-.473.104-.887.312-1.242.208-.353.534-.622.977-.804a2.266 2.266 0 0 1 .64-.164 2.842 2.842 0 0 1-.015-.297 2.783 2.783 0 0 1 .762-1.914c.236-.25.516-.448.84-.594a2.519 2.519 0 0 1 1.046-.219 2.618 2.618 0 0 1 .988.188c.107.042.204.09.293.148a3.522 3.522 0 0 1 1.219-1.29c.25-.155.518-.276.805-.362a3.08 3.08 0 0 1 .89-.13c.438 0 .857.079 1.258.235a3.573 3.573 0 0 1 1.855 1.633c.206.375.332.781.38 1.219a3.434 3.434 0 0 0-.575.035 1.477 1.477 0 0 0-.55.191 2.402 2.402 0 0 0-.47-.535 2.925 2.925 0 0 0-1.265-.621 3.25 3.25 0 0 0-.703-.078 3.476 3.476 0 0 0-2.223.777 3.74 3.74 0 0 0-.785.879c-.219.339-.378.71-.477 1.117v.008zm9.218 1.524a1.498 1.498 0 0 1 1.082.554c.127.157.225.336.293.54.068.203.102.413.102.632 0 .214-.04.424-.117.63-.078.205-.188.389-.328.55-.14.162-.307.292-.496.39-.19.1-.398.149-.622.149h-8.421c-.36 0-.678-.053-.954-.16a1.932 1.932 0 0 1-.703-.457 1.923 1.923 0 0 1-.437-.719 2.855 2.855 0 0 1-.148-.953c0-.307.058-.583.175-.828.118-.244.275-.453.473-.625a2.14 2.14 0 0 1 .688-.399 2.72 2.72 0 0 1 .828-.156 3.007 3.007 0 0 1 .625-1.621c.176-.226.386-.422.629-.586s.511-.282.808-.355a3.27 3.27 0 0 1 .781-.094c.49 0 .93.112 1.324.336.393.224.723.539.989.945.166-.094.361-.165.586-.215.223-.05.43-.074.617-.074.344 0 .652.06.926.18.273.12.507.284.703.492.195.208.344.456.449.742.103.287.156.597.156.93l-.008.172z" />
</svg>
),
styles: {},
} as TeamsProcessedSvgIconSpec