UNPKG

material-you-react

Version:

Material You: Material You (M3) Design system and its components for simple integration with Next.Js or other react-based frameworks

9 lines (8 loc) 231 B
import React from "react"; type RadioButtonProps = { selected: boolean; disabled?: boolean; onClick: () => void; }; declare const RadioButton: (props: RadioButtonProps) => React.JSX.Element; export default RadioButton;