@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
11 lines (10 loc) • 500 B
TypeScript
import { StyledProps } from '@smart-react-components/core/styled-props';
import { Nullable } from '@smart-react-components/core/types';
import { Breakpoint } from '@smart-react-components/core/types/grid';
export interface Props extends StyledProps {
breakpoint?: Nullable<Breakpoint>;
hasBackground?: boolean;
isDisplayedWhenBreakpointNull?: boolean;
}
declare const _default: import("styled-components").StyledComponent<"div", any, StyledProps & Props, never>;
export default _default;