UNPKG

@o3r/schematics

Version:

Schematics module of the Otter framework

46 lines 1.85 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getLogo = void 0; const logoMedium = ` @ @ ******/****************@*****@ @****************************% *****************************@ @********************************@ ********@@*****@@@@@@****@@********@ @@****@*******************************@@ ***************@@****@*********@*****@ @**************************%*********@ ..|''|| . . @**********************************@ .|' || .||. .||. .... ... .. @***************************(@ || || || || .|...|| ||' '' ****@ @******************************@ '|. || || || || || @******& ***** ********************@*****@ ''|...|' '|.' '|.' '|...' .||. @******@*********@**************@*********@ *****%************** ******@************* @***@*****@(*******@******@*******@(***** @**@************************************ @*****************@*@****************@ @@*******************************************(@ @************************************************ @**********************(((/********************@ `; const logoSmall = ` ..|''|| . . .|' || .||. .||. .... ... .. || || || || .|...|| ||' '' '|. || || || || || ''|...|' '|.' '|.' '|...' .||. `; /** * Generate Logo for Otter Project * @param size Size of the logo to generate */ const getLogo = (size = 'medium') => { const logos = { medium: logoMedium, small: logoSmall }; return logos[size]; }; exports.getLogo = getLogo; //# sourceMappingURL=logo.js.map