UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

46 lines (40 loc) 1.28 kB
export interface UploadCourseCoverProps { /** * If the image is in uploadingstate * @default false */ isUploading: boolean; /** * On change function. * @default null */ onChange?: (cover: any) => void; /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * Any other properties */ [p: string]: any; } /** * > API documentation for the Community-JS Change Group Cover component. Learn about the available props and the CSS API. * * * This component renders a button that allows admins to edit the group cover and a popover that specifies format and sizes allowed. * Take a look at our <strong>demo</strong> component [here](/docs/sdk/community-js/react-ui/Components/UploadCourseCover) #### Import ```jsx import {UploadCourseCover} from '@selfcommunity/react-ui'; ``` #### Component Name The name `SCUploadCourseCover` can be used when providing style overrides in the theme. #### CSS |Rule Name|Global class|Description| |---|---|---| |root|.SCUploadCourseCover-root|Styles applied to the root element.| * @param inProps */ export default function UploadCourseCover(inProps: UploadCourseCoverProps): JSX.Element;