Pessoa, alguém poderia dar um forcinha caso precisasse tipar esse componente?
import styled from "@emotion/styled"
const components = {
h1: "h1",
h2: "h2",
h3: "h3",
body: "p",
}
const styles = {
h1: `
font-weight: 600;
font-size: 40px;
line-height: 49px;
`,
h2: `
font-weight: 600;
font-size: 32px;
line-height: 39px;
`,
h3: `
font-weight: 500;
font-size: 24px;
line-height: 29px;
`,
body: `
font-weight: 500;
font-size: 24px;
line-height: 29px;
`,
}
export const Typography = ({ variant, component, children }) => {
const tag = components[component]
const UtilizedComponent = styled[tag]`${styles[variant]}`
return <UtilizedComponent>{children}</UtilizedComponent>
}