Deskripsi - position - project - announcement - calneder - division - document - home No Issue
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { WARNA } from '@/module/_global';
|
|
import { Box, Flex, SimpleGrid, Stack, Text } from '@mantine/core';
|
|
import { useRouter } from 'next/navigation';
|
|
import React, { useState } from 'react';
|
|
import { IoAddCircle } from "react-icons/io5";
|
|
import { RiFilter2Line } from "react-icons/ri";
|
|
|
|
export default function DrawerAnnouncement() {
|
|
const router = useRouter()
|
|
|
|
return (
|
|
<Box>
|
|
<Stack pt={10}>
|
|
<SimpleGrid
|
|
cols={{ base: 3, sm: 3, lg: 3 }}
|
|
>
|
|
<Flex justify={'center'} align={'center'} direction={'column'}
|
|
style={{
|
|
cursor: 'pointer'
|
|
}}
|
|
onClick={() => {
|
|
router.push('/announcement/create')
|
|
}}
|
|
>
|
|
<Box>
|
|
<IoAddCircle size={30} color={WARNA.biruTua} />
|
|
</Box>
|
|
<Box>
|
|
<Text c={WARNA.biruTua} ta='center'>Tambah Pengumuman</Text>
|
|
</Box>
|
|
</Flex>
|
|
</SimpleGrid>
|
|
</Stack>
|
|
</Box>
|
|
);
|
|
}
|