import { IconButton } from '@/ui/button/components/IconButton'; import { IconPlus } from '@/ui/icon'; type OwnProps = { onClick: () => void; }; export function PageAddButton({ onClick }: OwnProps) { return ( ); }