123456789101112131415161718192021222324252627282930313233 |
- import styled from 'styled-components';
- import React, { PropsWithChildren } from 'react';
- import Heading from 'components/common/heading/Heading.styled';
- interface Props {
- text: string;
- className?: string;
- }
- const PageHeading: React.FC<PropsWithChildren<Props>> = ({
- text,
- className,
- children,
- }) => {
- return (
- <div className={className}>
- <Heading>{text}</Heading>
- <div>{children}</div>
- </div>
- );
- };
- export default styled(PageHeading)`
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 16px;
- & > div {
- display: flex;
- gap: 16px;
- }
- `;
|