@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
35 lines (29 loc) • 1.39 kB
TypeScript
import { BoxProps } from '@mui/material';
export interface AccountDataPortabilityProps extends BoxProps {
/**
* Any other properties
*/
[p: string]: any;
}
/**
* > API documentation for the Community-JS AccountDataPortability component. Learn about the available props and the CSS API.
*
*
* This component allows users to display the logic behind data portability of user data.
* Take a look at our <strong>demo</strong> component [here](/docs/sdk/community-js/react-ui/Components/AccountDataPortability)
#### Import
```jsx
import {AccountDataPortability} from '@selfcommunity/react-ui';
```
#### Component Name
The name `SCAccountDataPortability` can be used when providing style overrides in the theme.
#### CSS
|Rule Name|Global class|Description|
|---|---|---|
|root|.SCAccountDataPortability-root|Styles applied to the root element.|
|createButton|.SCAccountDataPortability-create-button|Styles applied to the create data portability button in the rejection section.|
|downloadButton|.SCAccountDataPortability-download-button|Styles applied to the download data portability button in the rejection section.|
|generationInfo|.SCAccountDataPortability-generation-info|Styles applied to the section with generation information.|
* @param inProps
*/
export default function AccountDataPortability(inProps: AccountDataPortabilityProps): JSX.Element;