mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
7 lines
284 B
TypeScript
7 lines
284 B
TypeScript
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>;
|