import React from 'react';
import styles from '../css/list.module.css';
export const ICONTYPE = {
START:
,
LOGIN:
,
PRIVATELABELING:
,
TEXTS:
,
POLICY:
,
SERVICE:
,
SYSTEM:
,
APIS:
,
HELP:
,
HELP_REGISTER:
,
HELP_LOGIN:
,
HELP_PASSWORDLESS:
,
HELP_PASSWORD: ,
HELP_FACTORS:
,
HELP_PHONE:
,
HELP_EMAIL:
,
HELP_SOCIAL:
,
};
export function ListElement({ link, iconClasses, type, title, description}) {
return (
{type ? type :
iconClasses &&
}
)
}
export function ListWrapper({children, title, columns}) {
return (
{title}
{children}
)
}