feature: align checkbox and cellLink
This commit is contained in:
16
front/src/layout/containers/HorizontalyAlignedContainer.tsx
Normal file
16
front/src/layout/containers/HorizontalyAlignedContainer.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
import styled from '@emotion/styled';
|
||||
|
||||
type OwnProps = {
|
||||
children: JSX.Element[];
|
||||
};
|
||||
|
||||
const StyledContainer = styled.div`
|
||||
display: flex;
|
||||
align-items: center;
|
||||
`;
|
||||
|
||||
function HorizontalyAlignedContainer({ children: children }: OwnProps) {
|
||||
return <StyledContainer>{children}</StyledContainer>;
|
||||
}
|
||||
|
||||
export default HorizontalyAlignedContainer;
|
||||
Reference in New Issue
Block a user