Files
twenty/front/src/modules/auth/components/InputLabel.tsx
T
2023-06-18 23:51:59 +02:00

13 lines
264 B
TypeScript

import styled from '@emotion/styled';
type OwnProps = {
label: string;
subLabel?: string;
};
const StyledContainer = styled.div``;
export function SubTitle({ label, subLabel }: OwnProps): JSX.Element {
return <StyledContainer>{label}</StyledContainer>;
}