diff --git a/src/features/core/components/table.tsx b/src/features/core/components/table.tsx index 0437fbf..ecffd23 100644 --- a/src/features/core/components/table.tsx +++ b/src/features/core/components/table.tsx @@ -3,6 +3,7 @@ import type { PropsWithChildren } from "react"; import { chevron } from "../lib/icons"; type Props = PropsWithChildren & { + mobile?: boolean; onSort?: (method: SortMethod) => void; rigthAlign?: boolean; sort?: SortMethod; @@ -11,6 +12,7 @@ type Props = PropsWithChildren & { export const HeaderTitleBase = ({ children, + mobile, onSort, rigthAlign, sort, @@ -22,8 +24,9 @@ export const HeaderTitleBase = ({ return (