@material-ui/icons#Title TypeScript Examples

The following examples show how to use @material-ui/icons#Title. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: useFeatureEnabler.tsx    From flect-chime-sdk-demo with Apache License 2.0 6 votes vote down vote up
FeatureEnablerSettings: { [key in FeatureType]: FeatureEnablerSetting } = {
    ScreenShare: {
        onIcon: <ScreenShare style={{ color: "#ee7777" }} />,
        offIcon: <ScreenShare />,
        onTooltip: "Stop ScreenShare",
        offTooltip: "Start ScreenShare",
    },
    SideBar: {
        onIcon: <Receipt style={{ color: "#ee7777" }} />,
        offIcon: <Receipt />,
        onTooltip: "close sidebar",
        offTooltip: "open sidebar",
    },
    AttendeesView: {
        onIcon: <PeopleIcon style={{ color: "#ee7777" }} />,
        offIcon: <PeopleIcon />,
        onTooltip: "close attendees view",
        offTooltip: "show attendees view",
    },
    Transcribe: {
        onIcon: <Title style={{ color: "#ee7777" }} />,
        offIcon: <Title />,
        onTooltip: "stop transcribe",
        offTooltip: "start transcribe",
    },
}