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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

### Features
- Export `lock` SVG icon @VyshnaviDasari ([#906](https://github.com/stardust-ui/react/pull/906))

### Fixes
- Display correctly images in portrait mode inside `Avatar` @layershifter ([#899](https://github.com/stardust-ui/react/pull/899))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ export default {
</svg>
),
styles: {},
exportedAs: 'lock',
} as TeamsProcessedSvgIconSpec
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import italic from './italic'
import leave from './leave'
import like from './like'
import link from './link'
import lock from './lock'
import markAsUnread from './markAsUnread'
import meetingNew from './meetingNew'
import mention from './mention'
Expand Down Expand Up @@ -102,6 +103,7 @@ export default {
leave,
like,
link,
lock,
'mark-as-unread': markAsUnread,
'meeting-new': meetingNew,
mention,
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="M20.5 14H20v-2c0-2.206-1.794-4-4-4s-4 1.794-4 4v2h-.5c-.827 0-1.5.673-1.5 1.5v6.576c0 .665.439 1.256 1.067 1.438.775.221 2.26.486 4.933.486 2.675 0 4.16-.265 4.934-.486A1.496 1.496 0 0 0 22 22.076V15.5c0-.827-.673-1.5-1.5-1.5zM13 12c0-1.654 1.346-3 3-3s3 1.346 3 3v2h-6v-2zm8 10.076a.492.492 0 0 1-.343.477C19.945 22.757 18.56 23 16 23c-2.558 0-3.945-.243-4.657-.447a.49.49 0 0 1-.343-.477V15.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5v6.576z" />
</svg>
),
styles: {},
} as TeamsProcessedSvgIconSpec