calcom/components/ui/Text/Caption/Caption.tsx
Femi Odugbesan 45689059c7
Feat/cal 95/date range on event types (#353)
* add edit links to events on dashboard

* fit elements on screen for mobile

* initialize components for consistent text styles

* add more fine grained width/height settings

* add higher level setting for when an event is available

- db: add supporting values to period allow setting an amount of days,
 a range, or unlimited number days an event is available

* fix issue where periodDates are null

* return minimal required data, handle date parsing

* [ui] limit booking days based on user period settings

* api: validate user period settings

* [db] migration for event type period settings
2021-07-15 09:10:26 -05:00

12 lines
389 B
TypeScript

import React from "react";
import classnames from "classnames";
import { TextProps } from "../Text";
import Styles from "../Text.module.css";
const Caption: React.FunctionComponent<TextProps> = (props: TextProps) => {
const classes = classnames(Styles["text--caption"], props?.className, props?.color);
return <p className={classes}>{props.children}</p>;
};
export default Caption;