mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-17 01:59:08 +00:00
feat: add access control
This commit is contained in:
parent
9c07ff0e54
commit
3f45153b66
47 changed files with 1084 additions and 164 deletions
7
packages/design-system/atoms/icon-helper/IconHelper.tsx
Normal file
7
packages/design-system/atoms/icon-helper/IconHelper.tsx
Normal file
|
@ -0,0 +1,7 @@
|
|||
import React from 'react';
|
||||
import { IconHelperLevel, IconHelperStyled } from './IconHelper.styled';
|
||||
|
||||
export const IconHelper = (props: {
|
||||
children: React.ReactNode;
|
||||
level?: IconHelperLevel;
|
||||
}) => <IconHelperStyled level={props.level || 'none'}>{props.children}</IconHelperStyled>;
|
Loading…
Add table
Add a link
Reference in a new issue