Skip to content

Commit e4d0661

Browse files
committedOct 3, 2023
Exported TimeField component
1 parent 225ac68 commit e4d0661

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎react/components/TimeField/TimeField.js ‎react/components/TimeField/TimeField.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import InputLabel from "../InputLabel";
66
import { kebabCase } from "lodash";
77
import PropTypes from "prop-types";
88

9-
export const timeFieldStyle = {
9+
const timeFieldStyle = {
1010
width: "134px",
1111
borderRadius: "3px",
1212
height: 40,

‎react/components/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import TabPanel from "./Tabs/TabPanel";
2727
import Tabs from "./Tabs/index";
2828
import Tab from "./Tabs/Tab";
2929
import TextField from "./TextField";
30+
import TimeField from "./TimeField/TimeField";
3031
import TextArea from "./TextArea";
3132
import Tooltip from "./Tooltip";
3233
import Toast from "./Toast";
@@ -151,6 +152,7 @@ export {
151152
Tab,
152153
TextButton,
153154
TextInput,
155+
TimeField,
154156
TextField,
155157
TextArea,
156158
Toast,

0 commit comments

Comments
 (0)
Please sign in to comment.