mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
Add ReactIcons (#149)
This commit is contained in:
committed by
GitHub
parent
4c73b398e8
commit
6198d814d8
28
app/javascript/components/common/Icons.tsx
Normal file
28
app/javascript/components/common/Icons.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import * as React from 'react';
|
||||
|
||||
import { BsReply } from 'react-icons/bs';
|
||||
import { FiEdit, FiDelete } from 'react-icons/fi';
|
||||
import { ImCancelCircle } from 'react-icons/im';
|
||||
import { TbLock, TbLockOpen } from 'react-icons/tb';
|
||||
import { MdContentCopy, MdDone, MdOutlineArrowBack } from 'react-icons/md';
|
||||
import { GrTest } from 'react-icons/gr';
|
||||
|
||||
export const EditIcon = () => <FiEdit />;
|
||||
|
||||
export const DeleteIcon = () => <FiDelete />;
|
||||
|
||||
export const CancelIcon = () => <ImCancelCircle />;
|
||||
|
||||
export const BlockIcon = () => <TbLock />;
|
||||
|
||||
export const UnblockIcon = () => <TbLockOpen />;
|
||||
|
||||
export const CopyIcon = () => <MdContentCopy />;
|
||||
|
||||
export const TestIcon = () => <GrTest />;
|
||||
|
||||
export const DoneIcon = () => <MdDone />;
|
||||
|
||||
export const BackIcon = () => <MdOutlineArrowBack />;
|
||||
|
||||
export const ReplyIcon = () => <BsReply />;
|
||||
Reference in New Issue
Block a user