Skip to content

Commit

Permalink
feat: 补充图标
Browse files Browse the repository at this point in the history
  • Loading branch information
D-xuanmo committed Oct 12, 2024
1 parent 5d3535d commit ce6a012
Show file tree
Hide file tree
Showing 9 changed files with 85 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/dl-icons/src/icons/drag-outlined.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { FunctionalComponent } from 'vue'
import DragOutlinedSvg from '../svg/outlined/drag.svg'
import Icon, { IconProps } from '../components'

export type DragOutlinedProps = FunctionalComponent<IconProps>

export const DragOutlined: DragOutlinedProps = (props) => {
return (
<Icon {...props}>
<DragOutlinedSvg />
</Icon>
)
}
4 changes: 4 additions & 0 deletions packages/dl-icons/src/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export { default as PersonOutlined } from './person-outlined'
export { default as PersonSettingOutlined } from './person-setting-outlined'
export { default as PersonShareOutlined } from './person-share-outlined'
export { default as SettingOutlined } from './setting-outlined'
export * from './setting-complete-outlined'
export { default as VideoOutlined } from './video-outlined'
export { default as CloudOutlined } from './cloud-outlined'
export { default as DeleteOutlined } from './delete-outlined'
Expand Down Expand Up @@ -105,6 +106,9 @@ export * from './button'
export * from './number-input'
export * from './text-input'
export * from './textarea'
export * from './drag-outlined'
export * from './option-outlined'
export * from './option-filled'

// ==================== 面性图标 ====================
export { default as CameraFilled } from './camera-filled'
Expand Down
13 changes: 13 additions & 0 deletions packages/dl-icons/src/icons/option-filled.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { FunctionalComponent } from 'vue'
import OptionFilledSvg from '../svg/outlined/option.svg'
import Icon, { IconProps } from '../components'

export type OptionFilledProps = FunctionalComponent<IconProps>

export const OptionFilled: OptionFilledProps = (props) => {
return (
<Icon {...props}>
<OptionFilledSvg />
</Icon>
)
}
13 changes: 13 additions & 0 deletions packages/dl-icons/src/icons/option-outlined.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { FunctionalComponent } from 'vue'
import OptionOutlinedSvg from '../svg/outlined/option-outlined.svg'
import Icon, { IconProps } from '../components'

export type OptionOutlinedProps = FunctionalComponent<IconProps>

export const OptionOutlined: OptionOutlinedProps = (props) => {
return (
<Icon {...props}>
<OptionOutlinedSvg />
</Icon>
)
}
13 changes: 13 additions & 0 deletions packages/dl-icons/src/icons/setting-complete-outlined.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { FunctionalComponent } from 'vue'
import SettingCompleteOutlinedSvg from '../svg/outlined/setting-complete.svg'
import Icon, { IconProps } from '../components'

export type SettingCompleteOutlinedProps = FunctionalComponent<IconProps>

export const SettingCompleteOutlined: SettingCompleteOutlinedProps = (props) => {
return (
<Icon {...props}>
<SettingCompleteOutlinedSvg />
</Icon>
)
}
8 changes: 8 additions & 0 deletions packages/dl-icons/src/svg/outlined/drag.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions packages/dl-icons/src/svg/outlined/option-outlined.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions packages/dl-icons/src/svg/outlined/option.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions packages/dl-icons/src/svg/outlined/setting-complete.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ce6a012

Please sign in to comment.