diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/ArrowLeftSvg.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/ArrowLeftSvg.tsx new file mode 100644 index 0000000000..9c4d68be75 --- /dev/null +++ b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/ArrowLeftSvg.tsx @@ -0,0 +1,7 @@ +export const ArrowLeftSvg = () => { + return ( + + ); +}; diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/ArrowRightSvg.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/ArrowRightSvg.tsx new file mode 100644 index 0000000000..8b9501c508 --- /dev/null +++ b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/ArrowRightSvg.tsx @@ -0,0 +1,7 @@ +export const ArrowRightSvg = () => { + return ( + + ); +}; diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/SkipLeftSvg.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/SkipLeftSvg.tsx new file mode 100644 index 0000000000..4e84c77e06 --- /dev/null +++ b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/SkipLeftSvg.tsx @@ -0,0 +1,9 @@ +export const SkipLeftSvg = () => { + return ( + + ); +}; diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/SkipRightSvg.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/SkipRightSvg.tsx new file mode 100644 index 0000000000..6bcf2ebe7e --- /dev/null +++ b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/svg/SkipRightSvg.tsx @@ -0,0 +1,9 @@ +export const SkipRightSvg = () => { + return ( + + ); +}; diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardOptionsCell.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardOptionsCell.tsx index 6c9b3d046d..adaa3a1c6e 100644 --- a/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardOptionsCell.tsx +++ b/frontend/appflowy_tauri/src/appflowy_app/components/board/BoardOptionsCell.tsx @@ -3,6 +3,7 @@ import { useCell } from '../_shared/database-hooks/useCell'; import { CellIdentifier } from '../../stores/effects/database/cell/cell_bd_svc'; import { CellCache } from '../../stores/effects/database/cell/cell_cache'; import { FieldController } from '../../stores/effects/database/field/field_controller'; +import { getBgColor } from '$app/components/_shared/getColor'; export const BoardOptionsCell = ({ cellIdentifier, @@ -16,10 +17,13 @@ export const BoardOptionsCell = ({ const { data } = useCell(cellIdentifier, cellCache, fieldController); return ( - <> +