import React from 'react'; import styled from 'styled-components'; const DomainContainerWrapper = styled.div` display: flex; justify-content: space-between; align-items: center; padding: 12px; `; const DomainContentWrapper = styled.div` display: flex; justify-content: center; align-items: center; `; type Props = { name: string; }; export const DomainLabel = ({ name }: Props) => { return (
{name}
); };