|
@@ -1,6 +1,166 @@
|
|
|
+import AddSvg from '$app/components/_shared/svg/AddSvg';
|
|
|
+import { ChecklistTypeSvg } from '$app/components/_shared/svg/ChecklistTypeSvg';
|
|
|
+import { CheckmarkSvg } from '$app/components/_shared/svg/CheckmarkSvg';
|
|
|
+import { ArrowLeftSvg } from '$app/components/_shared/svg/ArrowLeftSvg';
|
|
|
+import { ArrowRightSvg } from '$app/components/_shared/svg/ArrowRightSvg';
|
|
|
+import { BoardSvg } from '$app/components/_shared/svg/BoardSvg';
|
|
|
+import { CheckboxSvg } from '$app/components/_shared/svg/CheckboxSvg';
|
|
|
+import { ClockSvg } from '$app/components/_shared/svg/ClockSvg';
|
|
|
+import { CloseSvg } from '$app/components/_shared/svg/CloseSvg';
|
|
|
+import { CopySvg } from '$app/components/_shared/svg/CopySvg';
|
|
|
+import { DateTypeSvg } from '$app/components/_shared/svg/DateTypeSvg';
|
|
|
+import { Details2Svg } from '$app/components/_shared/svg/Details2Svg';
|
|
|
+import { DocumentSvg } from '$app/components/_shared/svg/DocumentSvg';
|
|
|
+import { DropDownShowSvg } from '$app/components/_shared/svg/DropDownShowSvg';
|
|
|
+import { EarthSvg } from '$app/components/_shared/svg/EarthSvg';
|
|
|
+import { EditorCheckSvg } from '$app/components/_shared/svg/EditorCheckSvg';
|
|
|
+import { EditorUncheckSvg } from '$app/components/_shared/svg/EditorUncheckSvg';
|
|
|
+import { EditSvg } from '$app/components/_shared/svg/EditSvg';
|
|
|
+import { EyeClosedSvg } from '$app/components/_shared/svg/EyeClosedSvg';
|
|
|
+import { EyeOpenSvg } from '$app/components/_shared/svg/EyeOpenSvg';
|
|
|
+import { FilterSvg } from '$app/components/_shared/svg/FilterSvg';
|
|
|
+import { GridSvg } from '$app/components/_shared/svg/GridSvg';
|
|
|
+import { HideMenuSvg } from '$app/components/_shared/svg/HideMenuSvg';
|
|
|
+import { InformationSvg } from '$app/components/_shared/svg/InformationSvg';
|
|
|
+import { LogoutSvg } from '$app/components/_shared/svg/LogoutSvg';
|
|
|
+import { MoreSvg } from '$app/components/_shared/svg/MoreSvg';
|
|
|
+import { MultiSelectTypeSvg } from '$app/components/_shared/svg/MultiSelectTypeSvg';
|
|
|
+import { NumberTypeSvg } from '$app/components/_shared/svg/NumberTypeSvg';
|
|
|
+import { PropertiesSvg } from '$app/components/_shared/svg/PropertiesSvg';
|
|
|
+import { SearchSvg } from '$app/components/_shared/svg/SearchSvg';
|
|
|
+import { ShowMenuSvg } from '$app/components/_shared/svg/ShowMenuSvg';
|
|
|
+import { SingleSelectTypeSvg } from '$app/components/_shared/svg/SingleSelectTypeSvg';
|
|
|
+import { SkipLeftSvg } from '$app/components/_shared/svg/SkipLeftSvg';
|
|
|
+import { SkipRightSvg } from '$app/components/_shared/svg/SkipRightSvg';
|
|
|
+import { SortSharp } from '@mui/icons-material';
|
|
|
+import { SortSvg } from '$app/components/_shared/svg/SortSvg';
|
|
|
+import { TextTypeSvg } from '$app/components/_shared/svg/TextTypeSvg';
|
|
|
+import { TrashSvg } from '$app/components/_shared/svg/TrashSvg';
|
|
|
+import { UrlTypeSvg } from '$app/components/_shared/svg/UrlTypeSvg';
|
|
|
+
|
|
|
export const TestColors = () => {
|
|
|
return (
|
|
|
- <div>
|
|
|
+ <div className={'p-8'}>
|
|
|
+ <h1 className={'mb-4 text-2xl'}>Icons</h1>
|
|
|
+ <div className={'mb-8'}>
|
|
|
+ <div className={'flex flex-wrap items-center gap-4'}>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <AddSvg></AddSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <ArrowLeftSvg></ArrowLeftSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <ArrowRightSvg></ArrowRightSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <BoardSvg></BoardSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <CheckboxSvg></CheckboxSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <ChecklistTypeSvg></ChecklistTypeSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <CheckmarkSvg></CheckmarkSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <ClockSvg></ClockSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <CloseSvg></CloseSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <CopySvg></CopySvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <DateTypeSvg></DateTypeSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <Details2Svg></Details2Svg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <DocumentSvg></DocumentSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <DropDownShowSvg></DropDownShowSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <EarthSvg></EarthSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <EditorCheckSvg></EditorCheckSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <EditorUncheckSvg></EditorUncheckSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <EditSvg></EditSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <EyeClosedSvg></EyeClosedSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <EyeOpenSvg></EyeOpenSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <FilterSvg></FilterSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <GridSvg></GridSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <HideMenuSvg></HideMenuSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <InformationSvg></InformationSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <LogoutSvg></LogoutSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <MoreSvg></MoreSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <MultiSelectTypeSvg></MultiSelectTypeSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <NumberTypeSvg></NumberTypeSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <PropertiesSvg></PropertiesSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <SearchSvg></SearchSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <ShowMenuSvg></ShowMenuSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <SingleSelectTypeSvg></SingleSelectTypeSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <SkipLeftSvg></SkipLeftSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <SkipRightSvg></SkipRightSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <SortSvg></SortSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <TextTypeSvg></TextTypeSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <TrashSvg></TrashSvg>
|
|
|
+ </i>
|
|
|
+ <i className={'h-5 w-5'}>
|
|
|
+ <UrlTypeSvg></UrlTypeSvg>
|
|
|
+ </i>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <h1 className={'mb-4 text-2xl'}>Colors</h1>
|
|
|
<h2 className={'mb-4'}>Main</h2>
|
|
|
<div className={'mb-8 flex flex-wrap items-center'}>
|
|
|
<div className={'m-2 h-[100px] w-[100px] bg-main-accent'}></div>
|