diff --git a/packages/client/src/pages/PortalSettings/categories/developer-tools/Webhooks/sub-components/LabledInput.js b/packages/client/src/pages/PortalSettings/categories/developer-tools/Webhooks/sub-components/LabledInput.js index bbd29bbab3..4b25601e25 100644 --- a/packages/client/src/pages/PortalSettings/categories/developer-tools/Webhooks/sub-components/LabledInput.js +++ b/packages/client/src/pages/PortalSettings/categories/developer-tools/Webhooks/sub-components/LabledInput.js @@ -3,16 +3,13 @@ import styled from "styled-components"; import TextInput from "@docspace/components/text-input"; -const Label = styled.label` +import Label from "@docspace/components/label"; + +const StyledLabel = styled(Label)` display: block; margin-top: 20px; - font-family: "Open Sans"; - font-weight: 600; - font-size: 13px; line-height: 20px; - color: #333333; - input { margin-top: 4px; width: 100%; @@ -30,8 +27,7 @@ export const LabledInput = ({ required = false, }) => { return ( - + ); };