import { Text } from '@roleypoly/design-system/atoms/typography'; import * as React from 'react'; import ReactTooltip from 'react-tooltip'; import styled from 'styled-components'; import { palette } from '../colors'; import { Logomark, Logotype } from './Branding'; import { AllVariants, DynamicLogomark, DynamicLogotype } from './DynamicBranding'; export default { title: 'Atoms/Branding/Dynamic', component: DynamicLogotype, }; const WrapperDiv = styled.div` background-color: ${palette.taupe100}; padding: 2em; `; const Wrapper = (props: { children: React.ReactNode }) => ( <> {props.children} ); export const dynamicLogotype = (args) => { return ( ); }; export const dynamicLogomark = (args) => { return ( ); }; export const AllCustomizedLogotypes = () => { return (
Base Logo
{AllVariants.map((variant, idx) => (
{variant.name}
))}
); }; export const AllCustomizedLogomarks = () => { return (
Base Logo
{AllVariants.map((variant, idx) => (
{variant.name}
))}
); };