Brand
Kindsβ
RD Stationβ
RD Station AppStoreβ
RD Station CRMβ
RD Station Marketingβ
Tangramβ
Customβ
It is possible to use other logos as well.
Using as linkβ
It is possible to add a link to the component through the as
and href
properties.
Use the target="_blank"
attribute to open the link in a new browser tab. When using this attribute, it is recommended to always set rel="noopener"
or rel="noreferrer"
when connecting to third-party content.
rel="noopener"
prevents the new page from accessing the window.opener
property and ensures that it runs in a separate process.
Without this, the landing page could potentially redirect your page to a malicious URL.
rel="noreferrer"
has the same effect, but also prevents the Referer
header from being sent to the new page.
as
property with componentβ
Create a custom wrapper for the Brand
component via the as property. For example:
const ReplacedComponent = ({ children, ...rest }) => {
return <button {...rest}>{children}</button>;
};
<Brand as={ReplacedComponent} />;
You will see this result: