-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from AElf-devops/release/v1.0.0
feat: add chat icon and interactive icon
- Loading branch information
Showing
108 changed files
with
745 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
nav: icons | ||
nav: Icons | ||
group: | ||
title: Display | ||
order: 3 | ||
--- | ||
|
||
## 图标列表 | ||
## Icon List | ||
|
||
<IconSearch></IconSearch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/AlbumOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/album.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'AlbumOutlined'; | ||
export const AlbumOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
AlbumOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/AttachOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/attach.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'AttachOutlined'; | ||
export const AttachOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
AttachOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/CameraOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/camera.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'CameraOutlined'; | ||
export const CameraOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
CameraOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/ChatNewOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/chat-new.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'ChatNewOutlined'; | ||
export const ChatNewOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
ChatNewOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/ChatOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/chat.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'ChatOutlined'; | ||
export const ChatOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
ChatOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/GroupOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/group.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'GroupOutlined'; | ||
export const GroupOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
GroupOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/KeyboardOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/keyboard.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'KeyboardOutlined'; | ||
export const KeyboardOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
KeyboardOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/MuteOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/mute.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'MuteOutlined'; | ||
export const MuteOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
MuteOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/PinOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/pin.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'PinOutlined'; | ||
export const PinOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
PinOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/QrCodeOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/qr-code.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'QrCodeOutlined'; | ||
export const QrCodeOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
QrCodeOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/RedPacketOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/red-packet.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'RedPacketOutlined'; | ||
export const RedPacketOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
RedPacketOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/SmileOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/smile.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'SmileOutlined'; | ||
export const SmileOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
SmileOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/TransferOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/transfer.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'TransferOutlined'; | ||
export const TransferOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
TransferOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/UnmuteOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/unmute.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'UnmuteOutlined'; | ||
export const UnmuteOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
UnmuteOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/UnpinOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/unpin.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'UnpinOutlined'; | ||
export const UnpinOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
UnpinOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/UserAddOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/user-add.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'UserAddOutlined'; | ||
export const UserAddOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
UserAddOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/UserAddedOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/user-added.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'UserAddedOutlined'; | ||
export const UserAddedOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
UserAddedOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/UserFindOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/user-find.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'UserFindOutlined'; | ||
export const UserFindOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
UserFindOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/chat/UserProfileOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/chat/user-profile.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'UserProfileOutlined'; | ||
export const UserProfileOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
UserProfileOutlined.displayName = componentName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export * from './AlbumOutlined'; | ||
export * from './AttachOutlined'; | ||
export * from './CameraOutlined'; | ||
export * from './ChatNewOutlined'; | ||
export * from './ChatOutlined'; | ||
export * from './GroupOutlined'; | ||
export * from './KeyboardOutlined'; | ||
export * from './MuteOutlined'; | ||
export * from './PinOutlined'; | ||
export * from './QrCodeOutlined'; | ||
export * from './RedPacketOutlined'; | ||
export * from './SmileOutlined'; | ||
export * from './TransferOutlined'; | ||
export * from './UnmuteOutlined'; | ||
export * from './UnpinOutlined'; | ||
export * from './UserAddOutlined'; | ||
export * from './UserAddedOutlined'; | ||
export * from './UserFindOutlined'; | ||
export * from './UserProfileOutlined'; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/interactive/ArtboardOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/interactive/artboard.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'ArtboardOutlined'; | ||
export const ArtboardOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
ArtboardOutlined.displayName = componentName; |
11 changes: 11 additions & 0 deletions
11
packages/internal-icons/src/components/interactive/CalendarOutlined.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from 'react'; | ||
|
||
import { AelfIcon } from '../../icon/AelfIcon'; | ||
import AelfSVGComponent from '../../svgs/interactive/calendar.svg'; | ||
import { IconProps } from '../../type'; | ||
|
||
const componentName = 'CalendarOutlined'; | ||
export const CalendarOutlined = React.forwardRef<HTMLSpanElement, IconProps>((props, ref) => { | ||
return <AelfIcon component={AelfSVGComponent} ref={ref} {...props} />; | ||
}); | ||
CalendarOutlined.displayName = componentName; |
Oops, something went wrong.