AllIcons.tsx 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. import AddSvg from '$app/components/_shared/svg/AddSvg';
  2. import { ArrowLeftSvg } from '$app/components/_shared/svg/ArrowLeftSvg';
  3. import { ArrowRightSvg } from '$app/components/_shared/svg/ArrowRightSvg';
  4. import { BoardSvg } from '$app/components/_shared/svg/BoardSvg';
  5. import { CheckboxSvg } from '$app/components/_shared/svg/CheckboxSvg';
  6. import { ChecklistTypeSvg } from '$app/components/_shared/svg/ChecklistTypeSvg';
  7. import { CheckmarkSvg } from '$app/components/_shared/svg/CheckmarkSvg';
  8. import { ClockSvg } from '$app/components/_shared/svg/ClockSvg';
  9. import { CloseSvg } from '$app/components/_shared/svg/CloseSvg';
  10. import { CopySvg } from '$app/components/_shared/svg/CopySvg';
  11. import { DateTypeSvg } from '$app/components/_shared/svg/DateTypeSvg';
  12. import { Details2Svg } from '$app/components/_shared/svg/Details2Svg';
  13. import { DocumentSvg } from '$app/components/_shared/svg/DocumentSvg';
  14. import { DropDownShowSvg } from '$app/components/_shared/svg/DropDownShowSvg';
  15. import { EarthSvg } from '$app/components/_shared/svg/EarthSvg';
  16. import { EditorCheckSvg } from '$app/components/_shared/svg/EditorCheckSvg';
  17. import { EditorUncheckSvg } from '$app/components/_shared/svg/EditorUncheckSvg';
  18. import { EditSvg } from '$app/components/_shared/svg/EditSvg';
  19. import { EyeClosedSvg } from '$app/components/_shared/svg/EyeClosedSvg';
  20. import { EyeOpenSvg } from '$app/components/_shared/svg/EyeOpenSvg';
  21. import { FilterSvg } from '$app/components/_shared/svg/FilterSvg';
  22. import { GridSvg } from '$app/components/_shared/svg/GridSvg';
  23. import { GroupByFieldSvg } from '$app/components/_shared/svg/GroupByFieldSvg';
  24. import { HideMenuSvg } from '$app/components/_shared/svg/HideMenuSvg';
  25. import { InformationSvg } from '$app/components/_shared/svg/InformationSvg';
  26. import { LogoutSvg } from '$app/components/_shared/svg/LogoutSvg';
  27. import { MoreSvg } from '$app/components/_shared/svg/MoreSvg';
  28. import { MultiSelectTypeSvg } from '$app/components/_shared/svg/MultiSelectTypeSvg';
  29. import { NumberTypeSvg } from '$app/components/_shared/svg/NumberTypeSvg';
  30. import { PropertiesSvg } from '$app/components/_shared/svg/PropertiesSvg';
  31. import { SearchSvg } from '$app/components/_shared/svg/SearchSvg';
  32. import { ShowMenuSvg } from '$app/components/_shared/svg/ShowMenuSvg';
  33. import { SingleSelectTypeSvg } from '$app/components/_shared/svg/SingleSelectTypeSvg';
  34. import { SkipLeftSvg } from '$app/components/_shared/svg/SkipLeftSvg';
  35. import { SkipRightSvg } from '$app/components/_shared/svg/SkipRightSvg';
  36. import { SortSvg } from '$app/components/_shared/svg/SortSvg';
  37. import { TextTypeSvg } from '$app/components/_shared/svg/TextTypeSvg';
  38. import { TrashSvg } from '$app/components/_shared/svg/TrashSvg';
  39. import { UrlTypeSvg } from '$app/components/_shared/svg/UrlTypeSvg';
  40. import { DragElementSvg } from '$app/components/_shared/svg/DragElementSvg';
  41. import { ImageSvg } from '$app/components/_shared/svg/ImageSvg';
  42. export const AllIcons = () => {
  43. return (
  44. <div className={'p-8'}>
  45. <h1 className={'mb-12 text-2xl'}>Icons</h1>
  46. <div className={'mb-8'}>
  47. <div className={'flex flex-wrap items-center gap-8'}>
  48. <i className={'h-5 w-5'} title={'AddSvg'}>
  49. <AddSvg></AddSvg>
  50. </i>
  51. <i className={'h-5 w-5'} title={'ArrowLeftSvg'}>
  52. <ArrowLeftSvg></ArrowLeftSvg>
  53. </i>
  54. <i className={'h-5 w-5'} title={'ArrowRightSvg'}>
  55. <ArrowRightSvg></ArrowRightSvg>
  56. </i>
  57. <i className={'h-5 w-5'} title={'BoardSvg'}>
  58. <BoardSvg></BoardSvg>
  59. </i>
  60. <i className={'h-5 w-5'} title={'CheckboxSvg'}>
  61. <CheckboxSvg></CheckboxSvg>
  62. </i>
  63. <i className={'h-5 w-5'} title={'ChecklistTypeSvg'}>
  64. <ChecklistTypeSvg></ChecklistTypeSvg>
  65. </i>
  66. <i className={'h-5 w-5'} title={'CheckmarkSvg'}>
  67. <CheckmarkSvg></CheckmarkSvg>
  68. </i>
  69. <i className={'h-5 w-5'} title={'ClockSvg'}>
  70. <ClockSvg></ClockSvg>
  71. </i>
  72. <i className={'h-5 w-5'} title={'CloseSvg'}>
  73. <CloseSvg></CloseSvg>
  74. </i>
  75. <i className={'h-5 w-5'} title={'CopySvg'}>
  76. <CopySvg></CopySvg>
  77. </i>
  78. <i className={'h-5 w-5'} title={'DateTypeSvg'}>
  79. <DateTypeSvg></DateTypeSvg>
  80. </i>
  81. <i className={'h-5 w-5'} title={'Details2Svg'}>
  82. <Details2Svg></Details2Svg>
  83. </i>
  84. <i className={'h-5 w-5'} title={'DocumentSvg'}>
  85. <DocumentSvg></DocumentSvg>
  86. </i>
  87. <i className={'h-5 w-5'} title={'DragElementSvg'}>
  88. <DragElementSvg></DragElementSvg>
  89. </i>
  90. <i className={'h-5 w-5'} title={'DropDownShowSvg'}>
  91. <DropDownShowSvg></DropDownShowSvg>
  92. </i>
  93. <i className={'h-5 w-5'} title={'EarthSvg'}>
  94. <EarthSvg></EarthSvg>
  95. </i>
  96. <i className={'h-5 w-5'} title={'EditorCheckSvg'}>
  97. <EditorCheckSvg></EditorCheckSvg>
  98. </i>
  99. <i className={'h-5 w-5'} title={'EditorUncheckSvg'}>
  100. <EditorUncheckSvg></EditorUncheckSvg>
  101. </i>
  102. <i className={'h-5 w-5'} title={'EditSvg'}>
  103. <EditSvg></EditSvg>
  104. </i>
  105. <i className={'h-5 w-5'} title={'EyeClosedSvg'}>
  106. <EyeClosedSvg></EyeClosedSvg>
  107. </i>
  108. <i className={'h-5 w-5'} title={'EyeOpenSvg'}>
  109. <EyeOpenSvg></EyeOpenSvg>
  110. </i>
  111. <i className={'h-5 w-5'} title={'FilterSvg'}>
  112. <FilterSvg></FilterSvg>
  113. </i>
  114. <i className={'h-5 w-5'} title={'GridSvg'}>
  115. <GridSvg></GridSvg>
  116. </i>
  117. <i className={'h-5 w-5'} title={'GroupByFieldSvg'}>
  118. <GroupByFieldSvg></GroupByFieldSvg>
  119. </i>
  120. <i className={'h-5 w-5'} title={'HideMenuSvg'}>
  121. <HideMenuSvg></HideMenuSvg>
  122. </i>
  123. <i className={'h-5 w-5'} title={'ImageSvg'}>
  124. <ImageSvg></ImageSvg>
  125. </i>
  126. <i className={'h-5 w-5'} title={'InformationSvg'}>
  127. <InformationSvg></InformationSvg>
  128. </i>
  129. <i className={'h-5 w-5'} title={'LogoutSvg'}>
  130. <LogoutSvg></LogoutSvg>
  131. </i>
  132. <i className={'h-5 w-5'} title={'MoreSvg'}>
  133. <MoreSvg></MoreSvg>
  134. </i>
  135. <i className={'h-5 w-5'} title={'MultiSelectTypeSvg'}>
  136. <MultiSelectTypeSvg></MultiSelectTypeSvg>
  137. </i>
  138. <i className={'h-5 w-5'} title={'NumberTypeSvg'}>
  139. <NumberTypeSvg></NumberTypeSvg>
  140. </i>
  141. <i className={'h-5 w-5'} title={'PropertiesSvg'}>
  142. <PropertiesSvg></PropertiesSvg>
  143. </i>
  144. <i className={'h-5 w-5'} title={'SearchSvg'}>
  145. <SearchSvg></SearchSvg>
  146. </i>
  147. <i className={'h-5 w-5'} title={'ShowMenuSvg'}>
  148. <ShowMenuSvg></ShowMenuSvg>
  149. </i>
  150. <i className={'h-5 w-5'} title={'SingleSelectTypeSvg'}>
  151. <SingleSelectTypeSvg></SingleSelectTypeSvg>
  152. </i>
  153. <i className={'h-5 w-5'} title={'SkipLeftSvg'}>
  154. <SkipLeftSvg></SkipLeftSvg>
  155. </i>
  156. <i className={'h-5 w-5'} title={'SkipRightSvg'}>
  157. <SkipRightSvg></SkipRightSvg>
  158. </i>
  159. <i className={'h-5 w-5'} title={'SortSvg'}>
  160. <SortSvg></SortSvg>
  161. </i>
  162. <i className={'h-5 w-5'} title={'TextTypeSvg'}>
  163. <TextTypeSvg></TextTypeSvg>
  164. </i>
  165. <i className={'h-5 w-5'} title={'TrashSvg'}>
  166. <TrashSvg></TrashSvg>
  167. </i>
  168. <i className={'h-5 w-5'} title={'UrlTypeSvg'}>
  169. <UrlTypeSvg></UrlTypeSvg>
  170. </i>
  171. </div>
  172. </div>
  173. </div>
  174. );
  175. };