您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

get-icon.ts 301B

12345678910
  1. import { DataType } from '../types'
  2. import { RiHashtag, RiTextSnippet, RiTimeLine } from '@remixicon/react'
  3. export const getIcon = (type: DataType) => {
  4. return ({
  5. [DataType.string]: RiTextSnippet,
  6. [DataType.number]: RiHashtag,
  7. [DataType.time]: RiTimeLine,
  8. }[type] || RiTextSnippet)
  9. }