Illustrations

💡

If you want to use @exponentialeducation/betomic you must have a latest version from react.

Installation

yarn add @exponentialeducation/illustrations

Quick start

import { BlendedIcon } from "@exponentialeducation/illustrations"
const SinglePage = () => {
return (
<div>
<BlendedIcon className="w-24 h-24 text-primary-300 fill-light" />
</div>
);
};

Categories

Illustrations come in two different categories; General ones as Generic and Learning paths, those last ones are also divided by learning path.

Generic

BlendedIconMetodología Blended
ExpertsIconExpertos
EmploymentIconEmpleabilidad
FlexTimeIconFlex time
ShoppingCartIconCarrito de compras
GratitudeIconAgradecimiento
CongratulationsIconFelicitaciones
SampleClassIconClase muestra
TemaryIconTemario
ExperienceIconExperience
HappyCardIconÉxito en tarjeta
MasterClassIconMaster class
IndividualMentoringIconMentoría individual
GroupMentoringIconMentoría grupal
TargetIconObjetivos
CommunityIconComunidad
LearningIconAprendizaje
GrowthIconCrecimiento
TrainingIconCapacitación
EmpathyIconEmpatía
NetworkingIconNetworking
TruthIconVerdad
PersonalBrandFlagIconMarca personal
ResponsabilityIconResponsabilidad
CalendarIconCalendario
SadCardIconFallo de tarjeta
TrainingUserIconEntrenamiento
TalentIconTalento
TalentTrainingIconCapacitacion de talento
AdvisoryIconAsesoría
PlatformIconPlataforma
QualifiedIconCalificado
CertificateIconCertificado
ResourcesIconRecursos
LivesIconEn vivos
CareerPathIconRutas de carrera
LocationComputerIconUbicación
ExpertIconExperto
AccordionIconAcordeón
AudioIconAudio
CodeIconCódigo
ColumnsIconColumnas
DownloadIconDescargar
ImageIconImagen
ImageTextIconImagen y texto
LinkIconEnlace
QuizIconQuiz
QuoteIconFrase
SoundcloudIconSoundcloud
TextIconTexto
TimelineIconTimeline
TipIconTip
TitleIconTítulo
VimeoIconVimeo
YoutubeIconYoutube
InteractiveContentIconInteractive content
CardsIconTarjetas
InputTextIconInput
TrueFalseIconVerdadero falso
OpenQuestionIconOpen question
DragAndDropIconDrag and drop
SliderIconSlider
DiagnosisIconDiagnosis
ProfileBasedIconProfile Based
AssessmentIconAssessment
ReinforcementIconReinforcement

Learning Paths

Web development

JsFrontendDevIconJavaScript Front-end Developer
JsFullstackDevIconJavaScript FullStack Developer
PythonBackendDevIconPython Back-end Developer
PythonDjangoFullstackDevIconPython / Django FullStack Developer
UiWebDevIconUI Web Developer
JavaFullstackDevIconJAVA FullStack Developer

Digital Product

UxDesignerIconUX Designer
UiDesignerIconUI Designer
ProductUiWebDevIconUI Web Developer
UxUiDesignerIconUX/UI Designer
DesignConsultantIconDesign Consultant

Data & AI

DataAdministratorIconData administrador
DataScienceIconData Science
DataEngineerIconData Engineer
BusinessIntelligenceAnalystIconBusiness Intelligence Analyst
MarketingAnalystIconMarketing Analyst
DataStorytellerIconData Storyteller
DataScientistManagerIconData Scientist Manager
DataAnalystIconData Analyst

Customization

Illustrations can be customized since they have a main color associated with each one. This color can be changed according to a given color palette or cobranding.

import { BlendedIcon } from "@exponentialeducation/illustrations"
const SinglePage = () => {
return (
<div>
<BlendedIcon
className="text-success-300 fill-light dark:fill-dark"
/>
<BlendedIcon
className="text-info-300 fill-light dark:fill-dark"
/>
<BlendedIcon
className="text-warning-300 fill-light dark:fill-dark"
/>
<BlendedIcon
className="text-error-300 fill-light dark:fill-dark"
/>
</div>
);
};