Find all our Brand Resources under the logo
folder.
For development use in React applications, you can install @alpsfinance/brand
:
# NPM
npm i @alpsfinance/brand
# Yarn
yarn @alpsfinance/brand
and check out all the documentation in our Storybook.
Built with 💙 by Alps Finance.
Render variety of Alps Logo as a React Component.
Props:
variant
: variants of Alps Logo, comprised of 4 enums (BASE
,CIRCLE
,ROUNDED
,SQUARE
)type
: type of the variants style for the Alps Logo, forBASE
only 1 to 4 is available, others 1 to 12. If larger number is inputted, then it will render Logo with the largest numbertype
.
Note: To see the different type
s of Alps Logo accordingly to its variant
, check out our Storybook
import { Logo, AlpsLogoVariant } from "@alpsfinance/brand";
const Component = () => {
return (
<Logo variant={AlpsLogoVariant.BASE} type={1}>
);
};
import { Logo, AlpsLogoVariant } from "@alpsfinance/brand";
const Component = () => {
return (
<Logo variant={AlpsLogoVariant.CIRCLE} type={1}>
);
};
import { Logo, AlpsLogoVariant } from "@alpsfinance/brand";
const Component = () => {
return (
<Logo variant={AlpsLogoVariant.ROUNDED} type={1}>
);
};
import { Logo, AlpsLogoVariant } from "@alpsfinance/brand";
const Component = () => {
return (
<Logo variant={AlpsLogoVariant.SQUARE} type={1}>
);
};
Coming soon.